body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #92bda3 !important;
}
.bg-success {
  background-color: #92bda3 !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #e26c5a !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #86a45f !important;
  border-color: #86a45f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #5f7442 !important;
  border-color: #5f7442 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5f7442 !important;
  border-color: #5f7442 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #516439 !important;
  color: #516439 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #86a45f !important;
  border-color: #86a45f !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #86a45f !important;
  border-color: #86a45f !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #b63420 !important;
  color: #b63420 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #92bda3 !important;
}
.text-secondary {
  color: #86a45f !important;
}
.text-success {
  color: #92bda3 !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #e26c5a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #58916f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #516439 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b63420 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #709faf;
}
.alert-warning {
  background-color: #b7b6b6;
}
.alert-danger {
  background-color: #e26c5a;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #92bda3;
  border-color: #92bda3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #92bda3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.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: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #92bda3;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #92bda3;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #92bda3;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #92bda3;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #92bda3;
  border-bottom-color: #92bda3;
}
.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: #92bda3 !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: #86a45f !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%;
}
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='%2392bda3' %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;
}
.cid-rzMgHGam4n .nav-item:focus,
.cid-rzMgHGam4n .nav-link:focus {
  outline: none;
}
.cid-rzMgHGam4n a.nav-link:focus {
  color: #3f855b !important;
}
.cid-rzMgHGam4n .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rzMgHGam4n .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rzMgHGam4n .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-rzMgHGam4n .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-rzMgHGam4n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-rzMgHGam4n .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rzMgHGam4n .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzMgHGam4n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-rzMgHGam4n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzMgHGam4n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMgHGam4n .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzMgHGam4n .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMgHGam4n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-rzMgHGam4n .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-rzMgHGam4n .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzMgHGam4n .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMgHGam4n .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-rzMgHGam4n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMgHGam4n .dropdown-item.active,
.cid-rzMgHGam4n .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMgHGam4n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-rzMgHGam4n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMgHGam4n ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzMgHGam4n .navbar-buttons {
  text-align: center;
}
.cid-rzMgHGam4n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzMgHGam4n a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-rzMgHGam4n .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMgHGam4n .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rzMgHGam4n .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-rzMgHGam4n .nav-link:hover,
.cid-rzMgHGam4n .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-rzMgHGam4n .dropdown-item:hover {
  color: #878787 !important;
}
.cid-rzMgHGam4n .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-rzMgHGam4n .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-rzMgHGam4n .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-rzMgHGam4n .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-rzMgHGam4n .dropdown-menu {
    top: 100%;
  }
  .cid-rzMgHGam4n .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-rzMgHGam4n .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-rzMgHGam4n .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-rzMgHGam4n .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uKx0UBRiGD {
  padding-top: 135px;
  padding-bottom: 135px;
}
.cid-uKx0UBRiGD .content-section {
  margin-bottom: 2rem;
}
.cid-uKx0UBRiGD .wrapper {
  overflow: hidden;
}
.cid-uKx0UBRiGD .wrapper img {
  transition: all 0.5s;
}
.cid-uKx0UBRiGD .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKx0UBRiGD .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKx0UBRiGD .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uKx0UBRiGD .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uKx0UBRiGD .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKx0UBRiGD .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKwNUMRLzh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKwNUMRLzh .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKwNUMRLzh .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKwNUMRLzh .title {
    width: 100% !important;
  }
}
.cid-uKwNWoulGj {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uKwObzkRfZ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/4-11-2000x1262.jpg");
}
.cid-uKwObzkRfZ .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKwObzkRfZ .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKwObzkRfZ .btn-wrap {
  width: 100%;
}
.cid-uKwObzkRfZ .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKwObzkRfZ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKwObzkRfZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKwObzkRfZ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKwObzkRfZ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKwObzkRfZ a.close:hover {
  color: #ffffff;
}
.cid-uKwObzkRfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwObzkRfZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKxbLLOTEQ {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #fcfcfc;
}
.cid-uKxbLLOTEQ .team-card .image-wrap {
  overflow: hidden;
}
.cid-uKxbLLOTEQ .team-card .image-wrap img {
  transition: all 0.5s;
}
.cid-uKxbLLOTEQ .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKxbLLOTEQ .underline .line {
  width: 2rem;
  height: 1px;
  background: #000000;
  display: inline-block;
}
.cid-uKxbLLOTEQ .team-card {
  margin-bottom: 2rem;
}
.cid-uKxbLLOTEQ .card-wrap {
  background: #efefef;
}
.cid-uKxbLLOTEQ .card-wrap .image-wrap img {
  width: 100%;
}
.cid-uKxbLLOTEQ .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-uKxbLLOTEQ .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uKxbLLOTEQ .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKxbLLOTEQ .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKxbLLOTEQ .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uKxbLLOTEQ .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-uKxbLLOTEQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKxbLLOTEQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKxbLLOTEQ .main-title {
  color: #000000;
}
.cid-uKxbLLOTEQ .main-subtitle,
.cid-uKxbLLOTEQ .underline {
  color: #000000;
}
.cid-uKxe34ASqg {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #fcfcfc;
}
.cid-uKxe34ASqg .team-card .image-wrap {
  overflow: hidden;
}
.cid-uKxe34ASqg .team-card .image-wrap img {
  transition: all 0.5s;
}
.cid-uKxe34ASqg .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKxe34ASqg .underline .line {
  width: 2rem;
  height: 1px;
  background: #000000;
  display: inline-block;
}
.cid-uKxe34ASqg .team-card {
  margin-bottom: 2rem;
}
.cid-uKxe34ASqg .card-wrap {
  background: #efefef;
}
.cid-uKxe34ASqg .card-wrap .image-wrap img {
  width: 100%;
}
.cid-uKxe34ASqg .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-uKxe34ASqg .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uKxe34ASqg .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKxe34ASqg .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKxe34ASqg .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uKxe34ASqg .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-uKxe34ASqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKxe34ASqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKxe34ASqg .main-title {
  color: #000000;
}
.cid-uKxe34ASqg .main-subtitle,
.cid-uKxe34ASqg .underline {
  color: #000000;
}
.cid-uKxff1htdN {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #fcfcfc;
}
.cid-uKxff1htdN .team-card .image-wrap {
  overflow: hidden;
}
.cid-uKxff1htdN .team-card .image-wrap img {
  transition: all 0.5s;
}
.cid-uKxff1htdN .team-card .image-wrap:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKxff1htdN .underline .line {
  width: 2rem;
  height: 1px;
  background: #000000;
  display: inline-block;
}
.cid-uKxff1htdN .team-card {
  margin-bottom: 2rem;
}
.cid-uKxff1htdN .card-wrap {
  background: #efefef;
}
.cid-uKxff1htdN .card-wrap .image-wrap img {
  width: 100%;
}
.cid-uKxff1htdN .card-wrap .content-wrap {
  padding: 1.5rem;
}
.cid-uKxff1htdN .card-wrap .content-wrap .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uKxff1htdN .card-wrap .content-wrap .mbr-section-btn .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKxff1htdN .team-card.last-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKxff1htdN .team-card.last-row-card {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-uKxff1htdN .team-card:not(.first-row-card) {
    margin-bottom: 0;
  }
}
.cid-uKxff1htdN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKxff1htdN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKxff1htdN .main-title {
  color: #000000;
}
.cid-uKxff1htdN .main-subtitle,
.cid-uKxff1htdN .underline {
  color: #000000;
}
.cid-uKwYS4wkiD {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/hotel2-2000x1435.jpg");
}
.cid-uKwYS4wkiD .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKwYS4wkiD .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKwYS4wkiD .btn-wrap {
  width: 100%;
}
.cid-uKwYS4wkiD .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKwYS4wkiD .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKwYS4wkiD .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKwYS4wkiD .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKwYS4wkiD a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKwYS4wkiD a.close:hover {
  color: #ffffff;
}
.cid-uKwYS4wkiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwYS4wkiD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rzMh4wFu1L {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rzMh4wFu1L .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rzMh4wFu1L .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rzMh4wFu1L .title {
    width: 100% !important;
  }
}
.cid-rzMgZGPH0E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzMgZGPH0E .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-rzMgZGPH0E .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uMppze3SDG {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uMppze3SDG .content-section {
  margin-bottom: 2rem;
}
.cid-uMppze3SDG .wrapper {
  overflow: hidden;
}
.cid-uMppze3SDG .wrapper img {
  transition: all 0.5s;
}
.cid-uMppze3SDG .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uMppze3SDG .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uMppze3SDG .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 10rem;
}
.cid-uMppze3SDG .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uMppze3SDG .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uMppze3SDG .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKwOYeG8zU {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uKwOYeG8zU .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKwOYeG8zU .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKwOYeG8zU .btn-wrap {
  width: 100%;
}
.cid-uKwOYeG8zU .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKwOYeG8zU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKwOYeG8zU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKwOYeG8zU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKwOYeG8zU a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKwOYeG8zU a.close:hover {
  color: #ffffff;
}
.cid-uKwOYeG8zU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwOYeG8zU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKx78iwvcI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uKx78iwvcI .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uKx78iwvcI .first-column .mbr-text {
  margin: 0;
}
.cid-uKx78iwvcI .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uKx78iwvcI .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uKx78iwvcI .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uKx78iwvcI .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uKx78iwvcI .form-group {
  max-width: 55%;
}
.cid-uKx78iwvcI .form-group,
.cid-uKx78iwvcI .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uKx78iwvcI .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uKx78iwvcI .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uKx78iwvcI .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKx78iwvcI .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKx78iwvcI .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uKx78iwvcI .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKx78iwvcI .first-column,
  .cid-uKx78iwvcI .second-column {
    padding-bottom: 2rem;
  }
  .cid-uKx78iwvcI .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uKx78iwvcI .first-column,
  .cid-uKx78iwvcI .second-column,
  .cid-uKx78iwvcI .third-column {
    text-align: center;
  }
  .cid-uKx78iwvcI .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-rzMi9GHrgW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uKC98dFK9P .nav-item:focus,
.cid-uKC98dFK9P .nav-link:focus {
  outline: none;
}
.cid-uKC98dFK9P a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uKC98dFK9P .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uKC98dFK9P .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uKC98dFK9P .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uKC98dFK9P .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uKC98dFK9P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC98dFK9P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uKC98dFK9P .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uKC98dFK9P .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uKC98dFK9P .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKC98dFK9P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC98dFK9P .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uKC98dFK9P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC98dFK9P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKC98dFK9P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC98dFK9P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uKC98dFK9P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKC98dFK9P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC98dFK9P .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uKC98dFK9P .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKC98dFK9P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC98dFK9P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC98dFK9P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKC98dFK9P .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKC98dFK9P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC98dFK9P .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uKC98dFK9P .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uKC98dFK9P .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKC98dFK9P .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uKC98dFK9P .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKC98dFK9P .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKC98dFK9P .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC98dFK9P .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uKC98dFK9P .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uKC98dFK9P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC98dFK9P .dropdown-item.active,
.cid-uKC98dFK9P .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC98dFK9P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC98dFK9P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC98dFK9P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC98dFK9P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uKC98dFK9P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uKC98dFK9P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC98dFK9P ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKC98dFK9P .navbar-buttons {
  text-align: center;
}
.cid-uKC98dFK9P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKC98dFK9P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uKC98dFK9P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKC98dFK9P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKC98dFK9P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKC98dFK9P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKC98dFK9P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKC98dFK9P nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKC98dFK9P nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKC98dFK9P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKC98dFK9P .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKC98dFK9P a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uKC98dFK9P .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKC98dFK9P .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKC98dFK9P .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uKC98dFK9P .nav-link:hover,
.cid-uKC98dFK9P .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uKC98dFK9P .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uKC98dFK9P .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uKC98dFK9P .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uKC98dFK9P .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uKC98dFK9P .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uKC98dFK9P .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uKC98dFK9P .dropdown-menu {
    top: 100%;
  }
  .cid-uKC98dFK9P .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uKC98dFK9P .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uKC98dFK9P .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uKC98dFK9P .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uKC98ezj5F {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/2-7-2000x1424.jpg");
}
.cid-uKC98ezj5F .content-section {
  margin-bottom: 2rem;
}
.cid-uKC98ezj5F .wrapper {
  overflow: hidden;
}
.cid-uKC98ezj5F .wrapper img {
  transition: all 0.5s;
}
.cid-uKC98ezj5F .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKC98ezj5F .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC98ezj5F .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uKC98ezj5F .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uKC98ezj5F .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKC98ezj5F .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKC98f6MZF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKC98f6MZF .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC98f6MZF .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKC98f6MZF .title {
    width: 100% !important;
  }
}
.cid-uKC98fSeXj {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-3m {
  /* Type valid CSS here */
}
#custom-html-3m div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3m p {
  font-size: 60px;
  color: #777;
}
.cid-uKC98gcR2s {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uKC98gcR2s .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC98gcR2s .mbr-section-title,
.cid-uKC98gcR2s .mbr-section-subtitle,
.cid-uKC98gcR2s .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC98gcR2s .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uKC98gcR2s .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC98gcR2s .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC98gcR2s .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uKC98gcR2s .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uKC98gcR2s .icon-focus {
  display: none;
}
.cid-uKC98gcR2s .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uKC98gcR2s ul {
  font-size: 0;
}
.cid-uKC98gcR2s .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uKC98gcR2s .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uKC98gcR2s .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uKC98gcR2s .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uKC98gcR2s .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uKC98gcR2s .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uKC98gcR2s .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uKC98gcR2s .btn:hover {
  background: transparent !important;
}
.cid-uKC98gcR2s .btn:hover:before {
  background: transparent !important;
}
.cid-uKC98gcR2s .btn:before {
  background-color: transparent !important;
}
.cid-uKC98gcR2s .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uKC98hoWFV {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uKC98hoWFV .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKC98hoWFV .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKC98hoWFV .btn-wrap {
  width: 100%;
}
.cid-uKC98hoWFV .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKC98hoWFV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKC98hoWFV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKC98hoWFV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKC98hoWFV a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKC98hoWFV a.close:hover {
  color: #ffffff;
}
.cid-uKC98hoWFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC98hoWFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC98iehpN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uKC98iehpN .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uKC98iehpN .first-column .mbr-text {
  margin: 0;
}
.cid-uKC98iehpN .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uKC98iehpN .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uKC98iehpN .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uKC98iehpN .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uKC98iehpN .form-group {
  max-width: 55%;
}
.cid-uKC98iehpN .form-group,
.cid-uKC98iehpN .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uKC98iehpN .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uKC98iehpN .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uKC98iehpN .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKC98iehpN .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKC98iehpN .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uKC98iehpN .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKC98iehpN .first-column,
  .cid-uKC98iehpN .second-column {
    padding-bottom: 2rem;
  }
  .cid-uKC98iehpN .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uKC98iehpN .first-column,
  .cid-uKC98iehpN .second-column,
  .cid-uKC98iehpN .third-column {
    text-align: center;
  }
  .cid-uKC98iehpN .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uKC98j2Rvw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uKC46lHF2U .nav-item:focus,
.cid-uKC46lHF2U .nav-link:focus {
  outline: none;
}
.cid-uKC46lHF2U a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uKC46lHF2U .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uKC46lHF2U .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uKC46lHF2U .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uKC46lHF2U .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uKC46lHF2U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC46lHF2U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uKC46lHF2U .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uKC46lHF2U .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uKC46lHF2U .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKC46lHF2U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC46lHF2U .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uKC46lHF2U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC46lHF2U .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKC46lHF2U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC46lHF2U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uKC46lHF2U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKC46lHF2U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC46lHF2U .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uKC46lHF2U .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKC46lHF2U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC46lHF2U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC46lHF2U .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKC46lHF2U .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKC46lHF2U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC46lHF2U .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uKC46lHF2U .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uKC46lHF2U .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKC46lHF2U .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uKC46lHF2U .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKC46lHF2U .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKC46lHF2U .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC46lHF2U .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uKC46lHF2U .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uKC46lHF2U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC46lHF2U .dropdown-item.active,
.cid-uKC46lHF2U .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC46lHF2U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC46lHF2U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC46lHF2U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC46lHF2U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uKC46lHF2U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uKC46lHF2U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC46lHF2U ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKC46lHF2U .navbar-buttons {
  text-align: center;
}
.cid-uKC46lHF2U button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKC46lHF2U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uKC46lHF2U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKC46lHF2U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKC46lHF2U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKC46lHF2U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKC46lHF2U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKC46lHF2U nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKC46lHF2U nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKC46lHF2U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKC46lHF2U .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKC46lHF2U a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uKC46lHF2U .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKC46lHF2U .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKC46lHF2U .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uKC46lHF2U .nav-link:hover,
.cid-uKC46lHF2U .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uKC46lHF2U .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uKC46lHF2U .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uKC46lHF2U .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uKC46lHF2U .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uKC46lHF2U .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uKC46lHF2U .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uKC46lHF2U .dropdown-menu {
    top: 100%;
  }
  .cid-uKC46lHF2U .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uKC46lHF2U .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uKC46lHF2U .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uKC46lHF2U .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uKC46msrhV {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/1-2000x1533.jpg");
}
.cid-uKC46msrhV .content-section {
  margin-bottom: 2rem;
}
.cid-uKC46msrhV .wrapper {
  overflow: hidden;
}
.cid-uKC46msrhV .wrapper img {
  transition: all 0.5s;
}
.cid-uKC46msrhV .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKC46msrhV .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC46msrhV .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uKC46msrhV .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uKC46msrhV .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKC46msrhV .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKC46mYSbo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKC46mYSbo .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC46mYSbo .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKC46mYSbo .title {
    width: 100% !important;
  }
}
.cid-uKC5fviU5P {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKC5sEf3Mu {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uKC5sEf3Mu .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC5sEf3Mu .mbr-section-title,
.cid-uKC5sEf3Mu .mbr-section-subtitle,
.cid-uKC5sEf3Mu .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC5sEf3Mu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uKC5sEf3Mu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC5sEf3Mu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC5sEf3Mu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uKC5sEf3Mu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uKC5sEf3Mu .icon-focus {
  display: none;
}
.cid-uKC5sEf3Mu .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uKC5sEf3Mu ul {
  font-size: 0;
}
.cid-uKC5sEf3Mu .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uKC5sEf3Mu .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uKC5sEf3Mu .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uKC5sEf3Mu .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uKC5sEf3Mu .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uKC5sEf3Mu .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uKC5sEf3Mu .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uKC5sEf3Mu .btn:hover {
  background: transparent !important;
}
.cid-uKC5sEf3Mu .btn:hover:before {
  background: transparent !important;
}
.cid-uKC5sEf3Mu .btn:before {
  background-color: transparent !important;
}
.cid-uKC5sEf3Mu .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
#custom-html-3l {
  /* Type valid CSS here */
}
#custom-html-3l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3l p {
  font-size: 60px;
  color: #777;
}
.cid-uKC46nnu8i {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uKC46nnu8i .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKC46nnu8i .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKC46nnu8i .btn-wrap {
  width: 100%;
}
.cid-uKC46nnu8i .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKC46nnu8i .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKC46nnu8i .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKC46nnu8i .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKC46nnu8i a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKC46nnu8i a.close:hover {
  color: #ffffff;
}
.cid-uKC46nnu8i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC46nnu8i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC46nPwQP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uKC46nPwQP .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uKC46nPwQP .first-column .mbr-text {
  margin: 0;
}
.cid-uKC46nPwQP .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uKC46nPwQP .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uKC46nPwQP .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uKC46nPwQP .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uKC46nPwQP .form-group {
  max-width: 55%;
}
.cid-uKC46nPwQP .form-group,
.cid-uKC46nPwQP .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uKC46nPwQP .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uKC46nPwQP .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uKC46nPwQP .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKC46nPwQP .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKC46nPwQP .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uKC46nPwQP .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKC46nPwQP .first-column,
  .cid-uKC46nPwQP .second-column {
    padding-bottom: 2rem;
  }
  .cid-uKC46nPwQP .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uKC46nPwQP .first-column,
  .cid-uKC46nPwQP .second-column,
  .cid-uKC46nPwQP .third-column {
    text-align: center;
  }
  .cid-uKC46nPwQP .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uKC46olIBH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uKxqDPE8Al .nav-item:focus,
.cid-uKxqDPE8Al .nav-link:focus {
  outline: none;
}
.cid-uKxqDPE8Al a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uKxqDPE8Al .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uKxqDPE8Al .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uKxqDPE8Al .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uKxqDPE8Al .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uKxqDPE8Al .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKxqDPE8Al .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uKxqDPE8Al .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uKxqDPE8Al .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uKxqDPE8Al .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKxqDPE8Al .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKxqDPE8Al .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uKxqDPE8Al .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKxqDPE8Al .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKxqDPE8Al .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKxqDPE8Al .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uKxqDPE8Al .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKxqDPE8Al .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKxqDPE8Al .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uKxqDPE8Al .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKxqDPE8Al .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKxqDPE8Al .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKxqDPE8Al .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKxqDPE8Al .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKxqDPE8Al .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKxqDPE8Al .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uKxqDPE8Al .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uKxqDPE8Al .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKxqDPE8Al .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uKxqDPE8Al .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKxqDPE8Al .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKxqDPE8Al .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKxqDPE8Al .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uKxqDPE8Al .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uKxqDPE8Al .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKxqDPE8Al .dropdown-item.active,
.cid-uKxqDPE8Al .dropdown-item:active {
  background-color: transparent;
}
.cid-uKxqDPE8Al .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKxqDPE8Al .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKxqDPE8Al .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKxqDPE8Al .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uKxqDPE8Al .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uKxqDPE8Al .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKxqDPE8Al ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKxqDPE8Al .navbar-buttons {
  text-align: center;
}
.cid-uKxqDPE8Al button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxqDPE8Al button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uKxqDPE8Al button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKxqDPE8Al button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKxqDPE8Al button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKxqDPE8Al button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKxqDPE8Al nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKxqDPE8Al nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKxqDPE8Al nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKxqDPE8Al nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKxqDPE8Al .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKxqDPE8Al a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uKxqDPE8Al .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKxqDPE8Al .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKxqDPE8Al .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uKxqDPE8Al .nav-link:hover,
.cid-uKxqDPE8Al .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uKxqDPE8Al .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uKxqDPE8Al .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uKxqDPE8Al .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uKxqDPE8Al .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uKxqDPE8Al .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uKxqDPE8Al .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uKxqDPE8Al .dropdown-menu {
    top: 100%;
  }
  .cid-uKxqDPE8Al .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uKxqDPE8Al .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uKxqDPE8Al .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uKxqDPE8Al .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uKxqDQyCsD {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/r6-2000x1500.jpg");
}
.cid-uKxqDQyCsD .content-section {
  margin-bottom: 2rem;
}
.cid-uKxqDQyCsD .wrapper {
  overflow: hidden;
}
.cid-uKxqDQyCsD .wrapper img {
  transition: all 0.5s;
}
.cid-uKxqDQyCsD .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKxqDQyCsD .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKxqDQyCsD .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uKxqDQyCsD .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uKxqDQyCsD .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKxqDQyCsD .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKxqDR3zax {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKxqDR3zax .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKxqDR3zax .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKxqDR3zax .title {
    width: 100% !important;
  }
}
.cid-uKxqDTf5BY {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uKxqDTf5BY .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKxqDTf5BY .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKxqDTf5BY .btn-wrap {
  width: 100%;
}
.cid-uKxqDTf5BY .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKxqDTf5BY .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKxqDTf5BY .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKxqDTf5BY .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKxqDTf5BY a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKxqDTf5BY a.close:hover {
  color: #ffffff;
}
.cid-uKxqDTf5BY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKxqDTf5BY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-3k {
  /* Type valid CSS here */
}
#custom-html-3k div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3k p {
  font-size: 60px;
  color: #777;
}
.cid-uMppCytFdC {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uMppCytFdC .content-section {
  margin-bottom: 2rem;
}
.cid-uMppCytFdC .wrapper {
  overflow: hidden;
}
.cid-uMppCytFdC .wrapper img {
  transition: all 0.5s;
}
.cid-uMppCytFdC .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uMppCytFdC .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uMppCytFdC .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 10rem;
}
.cid-uMppCytFdC .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uMppCytFdC .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uMppCytFdC .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKxqDU6r57 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uKxqDU6r57 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uKxqDU6r57 .first-column .mbr-text {
  margin: 0;
}
.cid-uKxqDU6r57 .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uKxqDU6r57 .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uKxqDU6r57 .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uKxqDU6r57 .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uKxqDU6r57 .form-group {
  max-width: 55%;
}
.cid-uKxqDU6r57 .form-group,
.cid-uKxqDU6r57 .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uKxqDU6r57 .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uKxqDU6r57 .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uKxqDU6r57 .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKxqDU6r57 .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKxqDU6r57 .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uKxqDU6r57 .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKxqDU6r57 .first-column,
  .cid-uKxqDU6r57 .second-column {
    padding-bottom: 2rem;
  }
  .cid-uKxqDU6r57 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uKxqDU6r57 .first-column,
  .cid-uKxqDU6r57 .second-column,
  .cid-uKxqDU6r57 .third-column {
    text-align: center;
  }
  .cid-uKxqDU6r57 .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uKxqDUYALs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uKxjQ2NAM1 .nav-item:focus,
.cid-uKxjQ2NAM1 .nav-link:focus {
  outline: none;
}
.cid-uKxjQ2NAM1 a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uKxjQ2NAM1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uKxjQ2NAM1 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uKxjQ2NAM1 .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uKxjQ2NAM1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uKxjQ2NAM1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKxjQ2NAM1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uKxjQ2NAM1 .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKxjQ2NAM1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uKxjQ2NAM1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKxjQ2NAM1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKxjQ2NAM1 .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uKxjQ2NAM1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKxjQ2NAM1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKxjQ2NAM1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKxjQ2NAM1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKxjQ2NAM1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKxjQ2NAM1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKxjQ2NAM1 .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uKxjQ2NAM1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uKxjQ2NAM1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKxjQ2NAM1 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uKxjQ2NAM1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKxjQ2NAM1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKxjQ2NAM1 .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKxjQ2NAM1 .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uKxjQ2NAM1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uKxjQ2NAM1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKxjQ2NAM1 .dropdown-item.active,
.cid-uKxjQ2NAM1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKxjQ2NAM1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKxjQ2NAM1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKxjQ2NAM1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKxjQ2NAM1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uKxjQ2NAM1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uKxjQ2NAM1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKxjQ2NAM1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKxjQ2NAM1 .navbar-buttons {
  text-align: center;
}
.cid-uKxjQ2NAM1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKxjQ2NAM1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uKxjQ2NAM1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKxjQ2NAM1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKxjQ2NAM1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKxjQ2NAM1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKxjQ2NAM1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKxjQ2NAM1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKxjQ2NAM1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKxjQ2NAM1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKxjQ2NAM1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKxjQ2NAM1 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uKxjQ2NAM1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKxjQ2NAM1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKxjQ2NAM1 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uKxjQ2NAM1 .nav-link:hover,
.cid-uKxjQ2NAM1 .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uKxjQ2NAM1 .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uKxjQ2NAM1 .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uKxjQ2NAM1 .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uKxjQ2NAM1 .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uKxjQ2NAM1 .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uKxjQ2NAM1 .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uKxjQ2NAM1 .dropdown-menu {
    top: 100%;
  }
  .cid-uKxjQ2NAM1 .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uKxjQ2NAM1 .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uKxjQ2NAM1 .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uKxjQ2NAM1 .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uKxjQ3ucb0 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/hotel13-2000x1452.jpg");
}
.cid-uKxjQ3ucb0 .content-section {
  margin-bottom: 2rem;
}
.cid-uKxjQ3ucb0 .wrapper {
  overflow: hidden;
}
.cid-uKxjQ3ucb0 .wrapper img {
  transition: all 0.5s;
}
.cid-uKxjQ3ucb0 .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKxjQ3ucb0 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKxjQ3ucb0 .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uKxjQ3ucb0 .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uKxjQ3ucb0 .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKxjQ3ucb0 .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKxjQ42wg6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKxjQ42wg6 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKxjQ42wg6 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKxjQ42wg6 .title {
    width: 100% !important;
  }
}
.cid-uKxnYFIokG {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uKxnYFIokG .line {
  background-color: #6c8776;
  color: #6c8776;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uKxnYFIokG .mbr-text {
  margin: 0;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .cid-uKxnYFIokG .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
#custom-html-3j {
  /* Type valid CSS here */
}
#custom-html-3j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3j p {
  font-size: 60px;
  color: #777;
}
.cid-uKxoRaY2WU {
  padding-top: 0px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uKxoRaY2WU .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKxoRaY2WU .mbr-section-title,
.cid-uKxoRaY2WU .mbr-section-subtitle,
.cid-uKxoRaY2WU .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKxoRaY2WU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uKxoRaY2WU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKxoRaY2WU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKxoRaY2WU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uKxoRaY2WU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #6c8776);
}
.cid-uKxoRaY2WU .icon-focus {
  display: none;
}
.cid-uKxoRaY2WU .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uKxoRaY2WU ul {
  font-size: 0;
}
.cid-uKxoRaY2WU .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uKxoRaY2WU .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uKxoRaY2WU .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uKxoRaY2WU .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uKxoRaY2WU .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uKxoRaY2WU .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-uKxoRaY2WU .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uKxoRaY2WU .btn:hover {
  background: transparent !important;
}
.cid-uKxoRaY2WU .btn:hover:before {
  background: transparent !important;
}
.cid-uKxoRaY2WU .btn:before {
  background-color: transparent !important;
}
.cid-uKxoRaY2WU .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uKxmtZ7HUm {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uKxmtZ7HUm .google-map {
  width: 100%;
  height: 25rem;
}
.cid-uKxmtZ7HUm .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uKxmtZ7HUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKxmtZ7HUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKxneZQtZB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKxneZQtZB .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-uKxneZQtZB .modal-body .close {
  background: #1b1b1b;
}
.cid-uKxneZQtZB .modal-body .close span {
  font-style: normal;
}
.cid-uKxneZQtZB .carousel-inner > .active,
.cid-uKxneZQtZB .carousel-inner > .next,
.cid-uKxneZQtZB .carousel-inner > .prev {
  display: flex;
}
.cid-uKxneZQtZB .carousel-control .icon-next,
.cid-uKxneZQtZB .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uKxneZQtZB .carousel-control:hover {
  background: #92bda3;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKxneZQtZB .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uKxneZQtZB .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uKxneZQtZB .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uKxneZQtZB .boxed-slider > div {
  position: relative;
}
.cid-uKxneZQtZB .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-uKxneZQtZB .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uKxneZQtZB .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uKxneZQtZB .mbr-table-cell {
  padding: 0;
}
.cid-uKxneZQtZB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uKxneZQtZB .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uKxneZQtZB .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-uKxneZQtZB .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-uKxneZQtZB .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uKxneZQtZB .carousel-item.active.right,
.cid-uKxneZQtZB .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uKxneZQtZB .carousel-item.active.left,
.cid-uKxneZQtZB .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uKxneZQtZB .carousel-item.active,
.cid-uKxneZQtZB .carousel-item.next.left,
.cid-uKxneZQtZB .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uKxneZQtZB .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-uKxneZQtZB .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-uKxneZQtZB .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-uKxneZQtZB .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKxneZQtZB .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uKxneZQtZB .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #92bda3;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uKxneZQtZB .mbr-slider .carousel-indicators li.active,
.cid-uKxneZQtZB .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKxneZQtZB .mbr-slider .carousel-indicators li::after,
.cid-uKxneZQtZB .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uKxneZQtZB .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uKxneZQtZB .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uKxneZQtZB .mbr-slider > .container img {
  width: 100%;
}
.cid-uKxneZQtZB .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uKxneZQtZB .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uKxneZQtZB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKxneZQtZB .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uKxneZQtZB .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uKxneZQtZB .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uKxneZQtZB .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uKxneZQtZB .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-uKxneZQtZB .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uKxneZQtZB .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uKxneZQtZB .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uKxneZQtZB .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uKxneZQtZB .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uKxneZQtZB .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uKxneZQtZB .carousel-inner {
  height: 100%;
}
.cid-uKxneZQtZB .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uKxneZQtZB .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-uKxneZQtZB .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-uKxneZQtZB .content-slider-wrap {
  width: 100%;
}
.cid-uMppwnwZ2Y {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uMppwnwZ2Y .content-section {
  margin-bottom: 2rem;
}
.cid-uMppwnwZ2Y .wrapper {
  overflow: hidden;
}
.cid-uMppwnwZ2Y .wrapper img {
  transition: all 0.5s;
}
.cid-uMppwnwZ2Y .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uMppwnwZ2Y .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uMppwnwZ2Y .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 10rem;
}
.cid-uMppwnwZ2Y .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uMppwnwZ2Y .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uMppwnwZ2Y .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKxjQ8h3ME {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uKxjQ8h3ME .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKxjQ8h3ME .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKxjQ8h3ME .btn-wrap {
  width: 100%;
}
.cid-uKxjQ8h3ME .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKxjQ8h3ME .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKxjQ8h3ME .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKxjQ8h3ME .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKxjQ8h3ME a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKxjQ8h3ME a.close:hover {
  color: #ffffff;
}
.cid-uKxjQ8h3ME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKxjQ8h3ME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKxjQ8KRge {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uKxjQ8KRge .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uKxjQ8KRge .first-column .mbr-text {
  margin: 0;
}
.cid-uKxjQ8KRge .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uKxjQ8KRge .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uKxjQ8KRge .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uKxjQ8KRge .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uKxjQ8KRge .form-group {
  max-width: 55%;
}
.cid-uKxjQ8KRge .form-group,
.cid-uKxjQ8KRge .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uKxjQ8KRge .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uKxjQ8KRge .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uKxjQ8KRge .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKxjQ8KRge .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKxjQ8KRge .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uKxjQ8KRge .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKxjQ8KRge .first-column,
  .cid-uKxjQ8KRge .second-column {
    padding-bottom: 2rem;
  }
  .cid-uKxjQ8KRge .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uKxjQ8KRge .first-column,
  .cid-uKxjQ8KRge .second-column,
  .cid-uKxjQ8KRge .third-column {
    text-align: center;
  }
  .cid-uKxjQ8KRge .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uKxjQ9fZji {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uKC9MGBtK4 .nav-item:focus,
.cid-uKC9MGBtK4 .nav-link:focus {
  outline: none;
}
.cid-uKC9MGBtK4 a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uKC9MGBtK4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uKC9MGBtK4 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uKC9MGBtK4 .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uKC9MGBtK4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uKC9MGBtK4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKC9MGBtK4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uKC9MGBtK4 .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uKC9MGBtK4 .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uKC9MGBtK4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uKC9MGBtK4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKC9MGBtK4 .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uKC9MGBtK4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKC9MGBtK4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uKC9MGBtK4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKC9MGBtK4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uKC9MGBtK4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uKC9MGBtK4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKC9MGBtK4 .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uKC9MGBtK4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uKC9MGBtK4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKC9MGBtK4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKC9MGBtK4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uKC9MGBtK4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uKC9MGBtK4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKC9MGBtK4 .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uKC9MGBtK4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uKC9MGBtK4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uKC9MGBtK4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uKC9MGBtK4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uKC9MGBtK4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uKC9MGBtK4 .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKC9MGBtK4 .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uKC9MGBtK4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uKC9MGBtK4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKC9MGBtK4 .dropdown-item.active,
.cid-uKC9MGBtK4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKC9MGBtK4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKC9MGBtK4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKC9MGBtK4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKC9MGBtK4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uKC9MGBtK4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uKC9MGBtK4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKC9MGBtK4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uKC9MGBtK4 .navbar-buttons {
  text-align: center;
}
.cid-uKC9MGBtK4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uKC9MGBtK4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uKC9MGBtK4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uKC9MGBtK4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uKC9MGBtK4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uKC9MGBtK4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uKC9MGBtK4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKC9MGBtK4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uKC9MGBtK4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uKC9MGBtK4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uKC9MGBtK4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uKC9MGBtK4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uKC9MGBtK4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uKC9MGBtK4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uKC9MGBtK4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uKC9MGBtK4 .nav-link:hover,
.cid-uKC9MGBtK4 .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uKC9MGBtK4 .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uKC9MGBtK4 .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uKC9MGBtK4 .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uKC9MGBtK4 .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uKC9MGBtK4 .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uKC9MGBtK4 .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uKC9MGBtK4 .dropdown-menu {
    top: 100%;
  }
  .cid-uKC9MGBtK4 .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uKC9MGBtK4 .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uKC9MGBtK4 .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uKC9MGBtK4 .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uKC9MHjAAI {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/3-2-2000x1500.jpg");
}
.cid-uKC9MHjAAI .content-section {
  margin-bottom: 2rem;
}
.cid-uKC9MHjAAI .wrapper {
  overflow: hidden;
}
.cid-uKC9MHjAAI .wrapper img {
  transition: all 0.5s;
}
.cid-uKC9MHjAAI .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uKC9MHjAAI .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC9MHjAAI .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uKC9MHjAAI .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uKC9MHjAAI .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uKC9MHjAAI .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uKC9MHMlVT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKC9MHMlVT .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC9MHMlVT .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uKC9MHMlVT .title {
    width: 100% !important;
  }
}
.cid-uKC9MIq3h6 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-3n {
  /* Type valid CSS here */
}
#custom-html-3n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3n p {
  font-size: 60px;
  color: #777;
}
.cid-uKC9MIJU2b {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uKC9MIJU2b .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uKC9MIJU2b .mbr-section-title,
.cid-uKC9MIJU2b .mbr-section-subtitle,
.cid-uKC9MIJU2b .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKC9MIJU2b .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uKC9MIJU2b .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKC9MIJU2b .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKC9MIJU2b .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uKC9MIJU2b .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uKC9MIJU2b .icon-focus {
  display: none;
}
.cid-uKC9MIJU2b .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uKC9MIJU2b ul {
  font-size: 0;
}
.cid-uKC9MIJU2b .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uKC9MIJU2b .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uKC9MIJU2b .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uKC9MIJU2b .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uKC9MIJU2b .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uKC9MIJU2b .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uKC9MIJU2b .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uKC9MIJU2b .btn:hover {
  background: transparent !important;
}
.cid-uKC9MIJU2b .btn:hover:before {
  background: transparent !important;
}
.cid-uKC9MIJU2b .btn:before {
  background-color: transparent !important;
}
.cid-uKC9MIJU2b .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uKC9MJd959 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uKC9MJd959 .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uKC9MJd959 .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uKC9MJd959 .btn-wrap {
  width: 100%;
}
.cid-uKC9MJd959 .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uKC9MJd959 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uKC9MJd959 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uKC9MJd959 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uKC9MJd959 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uKC9MJd959 a.close:hover {
  color: #ffffff;
}
.cid-uKC9MJd959 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKC9MJd959 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKC9MJKHtO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uKC9MJKHtO .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uKC9MJKHtO .first-column .mbr-text {
  margin: 0;
}
.cid-uKC9MJKHtO .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uKC9MJKHtO .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uKC9MJKHtO .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uKC9MJKHtO .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uKC9MJKHtO .form-group {
  max-width: 55%;
}
.cid-uKC9MJKHtO .form-group,
.cid-uKC9MJKHtO .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uKC9MJKHtO .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uKC9MJKHtO .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uKC9MJKHtO .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKC9MJKHtO .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uKC9MJKHtO .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uKC9MJKHtO .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uKC9MJKHtO .first-column,
  .cid-uKC9MJKHtO .second-column {
    padding-bottom: 2rem;
  }
  .cid-uKC9MJKHtO .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uKC9MJKHtO .first-column,
  .cid-uKC9MJKHtO .second-column,
  .cid-uKC9MJKHtO .third-column {
    text-align: center;
  }
  .cid-uKC9MJKHtO .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uKC9MKirMo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uLEFwO5RgX .nav-item:focus,
.cid-uLEFwO5RgX .nav-link:focus {
  outline: none;
}
.cid-uLEFwO5RgX a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uLEFwO5RgX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uLEFwO5RgX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uLEFwO5RgX .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uLEFwO5RgX .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uLEFwO5RgX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLEFwO5RgX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uLEFwO5RgX .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uLEFwO5RgX .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uLEFwO5RgX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uLEFwO5RgX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLEFwO5RgX .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uLEFwO5RgX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLEFwO5RgX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLEFwO5RgX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLEFwO5RgX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uLEFwO5RgX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uLEFwO5RgX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLEFwO5RgX .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uLEFwO5RgX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uLEFwO5RgX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLEFwO5RgX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLEFwO5RgX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLEFwO5RgX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLEFwO5RgX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLEFwO5RgX .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uLEFwO5RgX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uLEFwO5RgX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uLEFwO5RgX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uLEFwO5RgX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLEFwO5RgX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLEFwO5RgX .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLEFwO5RgX .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uLEFwO5RgX .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uLEFwO5RgX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLEFwO5RgX .dropdown-item.active,
.cid-uLEFwO5RgX .dropdown-item:active {
  background-color: transparent;
}
.cid-uLEFwO5RgX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLEFwO5RgX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLEFwO5RgX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLEFwO5RgX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uLEFwO5RgX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uLEFwO5RgX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLEFwO5RgX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uLEFwO5RgX .navbar-buttons {
  text-align: center;
}
.cid-uLEFwO5RgX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLEFwO5RgX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uLEFwO5RgX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLEFwO5RgX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEFwO5RgX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEFwO5RgX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLEFwO5RgX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEFwO5RgX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLEFwO5RgX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLEFwO5RgX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEFwO5RgX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLEFwO5RgX a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uLEFwO5RgX .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLEFwO5RgX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uLEFwO5RgX .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uLEFwO5RgX .nav-link:hover,
.cid-uLEFwO5RgX .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uLEFwO5RgX .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uLEFwO5RgX .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uLEFwO5RgX .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uLEFwO5RgX .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uLEFwO5RgX .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uLEFwO5RgX .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uLEFwO5RgX .dropdown-menu {
    top: 100%;
  }
  .cid-uLEFwO5RgX .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uLEFwO5RgX .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uLEFwO5RgX .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uLEFwO5RgX .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uLEFwOGxwp {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/4-11-2000x1262.jpg");
}
.cid-uLEFwOGxwp .content-section {
  margin-bottom: 2rem;
}
.cid-uLEFwOGxwp .wrapper {
  overflow: hidden;
}
.cid-uLEFwOGxwp .wrapper img {
  transition: all 0.5s;
}
.cid-uLEFwOGxwp .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uLEFwOGxwp .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEFwOGxwp .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uLEFwOGxwp .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uLEFwOGxwp .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uLEFwOGxwp .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uLEFwP9Gk2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEFwP9Gk2 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEFwP9Gk2 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uLEFwP9Gk2 .title {
    width: 100% !important;
  }
}
#custom-html-3o {
  /* Type valid CSS here */
}
#custom-html-3o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3o p {
  font-size: 60px;
  color: #777;
}
.cid-uLEFwPNbKt {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEFwQ5jxR {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uLEFwQ5jxR .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEFwQ5jxR .mbr-section-title,
.cid-uLEFwQ5jxR .mbr-section-subtitle,
.cid-uLEFwQ5jxR .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLEFwQ5jxR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uLEFwQ5jxR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLEFwQ5jxR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLEFwQ5jxR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uLEFwQ5jxR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uLEFwQ5jxR .icon-focus {
  display: none;
}
.cid-uLEFwQ5jxR .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uLEFwQ5jxR ul {
  font-size: 0;
}
.cid-uLEFwQ5jxR .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uLEFwQ5jxR .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uLEFwQ5jxR .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uLEFwQ5jxR .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uLEFwQ5jxR .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uLEFwQ5jxR .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uLEFwQ5jxR .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uLEFwQ5jxR .btn:hover {
  background: transparent !important;
}
.cid-uLEFwQ5jxR .btn:hover:before {
  background: transparent !important;
}
.cid-uLEFwQ5jxR .btn:before {
  background-color: transparent !important;
}
.cid-uLEFwQ5jxR .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uLEFwQxTRK {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uLEFwQxTRK .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uLEFwQxTRK .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uLEFwQxTRK .btn-wrap {
  width: 100%;
}
.cid-uLEFwQxTRK .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uLEFwQxTRK .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uLEFwQxTRK .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uLEFwQxTRK .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uLEFwQxTRK a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uLEFwQxTRK a.close:hover {
  color: #ffffff;
}
.cid-uLEFwQxTRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLEFwQxTRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLEFwQY9ZE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uLEFwQY9ZE .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uLEFwQY9ZE .first-column .mbr-text {
  margin: 0;
}
.cid-uLEFwQY9ZE .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uLEFwQY9ZE .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uLEFwQY9ZE .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uLEFwQY9ZE .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uLEFwQY9ZE .form-group {
  max-width: 55%;
}
.cid-uLEFwQY9ZE .form-group,
.cid-uLEFwQY9ZE .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uLEFwQY9ZE .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uLEFwQY9ZE .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEFwQY9ZE .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEFwQY9ZE .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEFwQY9ZE .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEFwQY9ZE .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uLEFwQY9ZE .first-column,
  .cid-uLEFwQY9ZE .second-column {
    padding-bottom: 2rem;
  }
  .cid-uLEFwQY9ZE .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uLEFwQY9ZE .first-column,
  .cid-uLEFwQY9ZE .second-column,
  .cid-uLEFwQY9ZE .third-column {
    text-align: center;
  }
  .cid-uLEFwQY9ZE .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uLEFwRv5ms {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uLEHiaKE2g .nav-item:focus,
.cid-uLEHiaKE2g .nav-link:focus {
  outline: none;
}
.cid-uLEHiaKE2g a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uLEHiaKE2g .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uLEHiaKE2g .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uLEHiaKE2g .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uLEHiaKE2g .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uLEHiaKE2g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLEHiaKE2g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uLEHiaKE2g .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uLEHiaKE2g .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uLEHiaKE2g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uLEHiaKE2g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLEHiaKE2g .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uLEHiaKE2g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLEHiaKE2g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLEHiaKE2g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLEHiaKE2g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uLEHiaKE2g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uLEHiaKE2g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLEHiaKE2g .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uLEHiaKE2g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uLEHiaKE2g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLEHiaKE2g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLEHiaKE2g .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLEHiaKE2g .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLEHiaKE2g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLEHiaKE2g .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uLEHiaKE2g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uLEHiaKE2g .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uLEHiaKE2g .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uLEHiaKE2g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLEHiaKE2g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLEHiaKE2g .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLEHiaKE2g .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uLEHiaKE2g .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uLEHiaKE2g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLEHiaKE2g .dropdown-item.active,
.cid-uLEHiaKE2g .dropdown-item:active {
  background-color: transparent;
}
.cid-uLEHiaKE2g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLEHiaKE2g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLEHiaKE2g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLEHiaKE2g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uLEHiaKE2g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uLEHiaKE2g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLEHiaKE2g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uLEHiaKE2g .navbar-buttons {
  text-align: center;
}
.cid-uLEHiaKE2g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLEHiaKE2g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uLEHiaKE2g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLEHiaKE2g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEHiaKE2g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEHiaKE2g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLEHiaKE2g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEHiaKE2g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLEHiaKE2g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLEHiaKE2g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEHiaKE2g .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLEHiaKE2g a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uLEHiaKE2g .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLEHiaKE2g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uLEHiaKE2g .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uLEHiaKE2g .nav-link:hover,
.cid-uLEHiaKE2g .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uLEHiaKE2g .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uLEHiaKE2g .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uLEHiaKE2g .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uLEHiaKE2g .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uLEHiaKE2g .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uLEHiaKE2g .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uLEHiaKE2g .dropdown-menu {
    top: 100%;
  }
  .cid-uLEHiaKE2g .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uLEHiaKE2g .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uLEHiaKE2g .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uLEHiaKE2g .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uLEHibr1S3 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/5-1-2000x1414.jpg");
}
.cid-uLEHibr1S3 .content-section {
  margin-bottom: 2rem;
}
.cid-uLEHibr1S3 .wrapper {
  overflow: hidden;
}
.cid-uLEHibr1S3 .wrapper img {
  transition: all 0.5s;
}
.cid-uLEHibr1S3 .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uLEHibr1S3 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEHibr1S3 .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uLEHibr1S3 .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uLEHibr1S3 .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uLEHibr1S3 .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uLEHibZwNS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEHibZwNS .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEHibZwNS .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uLEHibZwNS .title {
    width: 100% !important;
  }
}
#custom-html-3p {
  /* Type valid CSS here */
}
#custom-html-3p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3p p {
  font-size: 60px;
  color: #777;
}
.cid-uLEHicHNgg {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEHicYmbb {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uLEHicYmbb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEHicYmbb .mbr-section-title,
.cid-uLEHicYmbb .mbr-section-subtitle,
.cid-uLEHicYmbb .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLEHicYmbb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uLEHicYmbb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLEHicYmbb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLEHicYmbb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uLEHicYmbb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uLEHicYmbb .icon-focus {
  display: none;
}
.cid-uLEHicYmbb .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uLEHicYmbb ul {
  font-size: 0;
}
.cid-uLEHicYmbb .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uLEHicYmbb .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uLEHicYmbb .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uLEHicYmbb .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uLEHicYmbb .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uLEHicYmbb .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uLEHicYmbb .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uLEHicYmbb .btn:hover {
  background: transparent !important;
}
.cid-uLEHicYmbb .btn:hover:before {
  background: transparent !important;
}
.cid-uLEHicYmbb .btn:before {
  background-color: transparent !important;
}
.cid-uLEHicYmbb .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uLEHidBKEB {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uLEHidBKEB .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uLEHidBKEB .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uLEHidBKEB .btn-wrap {
  width: 100%;
}
.cid-uLEHidBKEB .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uLEHidBKEB .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uLEHidBKEB .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uLEHidBKEB .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uLEHidBKEB a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uLEHidBKEB a.close:hover {
  color: #ffffff;
}
.cid-uLEHidBKEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLEHidBKEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLEHie4HN8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uLEHie4HN8 .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uLEHie4HN8 .first-column .mbr-text {
  margin: 0;
}
.cid-uLEHie4HN8 .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uLEHie4HN8 .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uLEHie4HN8 .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uLEHie4HN8 .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uLEHie4HN8 .form-group {
  max-width: 55%;
}
.cid-uLEHie4HN8 .form-group,
.cid-uLEHie4HN8 .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uLEHie4HN8 .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uLEHie4HN8 .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEHie4HN8 .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEHie4HN8 .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEHie4HN8 .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEHie4HN8 .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uLEHie4HN8 .first-column,
  .cid-uLEHie4HN8 .second-column {
    padding-bottom: 2rem;
  }
  .cid-uLEHie4HN8 .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uLEHie4HN8 .first-column,
  .cid-uLEHie4HN8 .second-column,
  .cid-uLEHie4HN8 .third-column {
    text-align: center;
  }
  .cid-uLEHie4HN8 .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uLEHieGWry {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uLEJAlNVL4 .nav-item:focus,
.cid-uLEJAlNVL4 .nav-link:focus {
  outline: none;
}
.cid-uLEJAlNVL4 a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uLEJAlNVL4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uLEJAlNVL4 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uLEJAlNVL4 .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uLEJAlNVL4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uLEJAlNVL4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLEJAlNVL4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uLEJAlNVL4 .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uLEJAlNVL4 .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uLEJAlNVL4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uLEJAlNVL4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLEJAlNVL4 .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uLEJAlNVL4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLEJAlNVL4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLEJAlNVL4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLEJAlNVL4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uLEJAlNVL4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uLEJAlNVL4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLEJAlNVL4 .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uLEJAlNVL4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uLEJAlNVL4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLEJAlNVL4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLEJAlNVL4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLEJAlNVL4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLEJAlNVL4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLEJAlNVL4 .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uLEJAlNVL4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uLEJAlNVL4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uLEJAlNVL4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uLEJAlNVL4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLEJAlNVL4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLEJAlNVL4 .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLEJAlNVL4 .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uLEJAlNVL4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uLEJAlNVL4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLEJAlNVL4 .dropdown-item.active,
.cid-uLEJAlNVL4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLEJAlNVL4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLEJAlNVL4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLEJAlNVL4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLEJAlNVL4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uLEJAlNVL4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uLEJAlNVL4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLEJAlNVL4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uLEJAlNVL4 .navbar-buttons {
  text-align: center;
}
.cid-uLEJAlNVL4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLEJAlNVL4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uLEJAlNVL4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLEJAlNVL4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEJAlNVL4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEJAlNVL4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLEJAlNVL4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEJAlNVL4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLEJAlNVL4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLEJAlNVL4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEJAlNVL4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLEJAlNVL4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uLEJAlNVL4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLEJAlNVL4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uLEJAlNVL4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uLEJAlNVL4 .nav-link:hover,
.cid-uLEJAlNVL4 .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uLEJAlNVL4 .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uLEJAlNVL4 .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uLEJAlNVL4 .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uLEJAlNVL4 .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uLEJAlNVL4 .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uLEJAlNVL4 .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uLEJAlNVL4 .dropdown-menu {
    top: 100%;
  }
  .cid-uLEJAlNVL4 .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uLEJAlNVL4 .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uLEJAlNVL4 .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uLEJAlNVL4 .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uLEJAmr2vn {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/6-2-2000x1406.jpg");
}
.cid-uLEJAmr2vn .content-section {
  margin-bottom: 2rem;
}
.cid-uLEJAmr2vn .wrapper {
  overflow: hidden;
}
.cid-uLEJAmr2vn .wrapper img {
  transition: all 0.5s;
}
.cid-uLEJAmr2vn .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uLEJAmr2vn .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEJAmr2vn .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uLEJAmr2vn .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uLEJAmr2vn .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uLEJAmr2vn .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uLEJAmUHK5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEJAmUHK5 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEJAmUHK5 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uLEJAmUHK5 .title {
    width: 100% !important;
  }
}
.cid-uLEJAnza7t {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEJAnQymd {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uLEJAnQymd .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEJAnQymd .mbr-section-title,
.cid-uLEJAnQymd .mbr-section-subtitle,
.cid-uLEJAnQymd .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLEJAnQymd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uLEJAnQymd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLEJAnQymd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLEJAnQymd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uLEJAnQymd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uLEJAnQymd .icon-focus {
  display: none;
}
.cid-uLEJAnQymd .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uLEJAnQymd ul {
  font-size: 0;
}
.cid-uLEJAnQymd .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uLEJAnQymd .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uLEJAnQymd .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uLEJAnQymd .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uLEJAnQymd .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uLEJAnQymd .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uLEJAnQymd .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uLEJAnQymd .btn:hover {
  background: transparent !important;
}
.cid-uLEJAnQymd .btn:hover:before {
  background: transparent !important;
}
.cid-uLEJAnQymd .btn:before {
  background-color: transparent !important;
}
.cid-uLEJAnQymd .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
#custom-html-3q {
  /* Type valid CSS here */
}
#custom-html-3q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3q p {
  font-size: 60px;
  color: #777;
}
.cid-uLEJAoj5rA {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uLEJAoj5rA .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uLEJAoj5rA .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uLEJAoj5rA .btn-wrap {
  width: 100%;
}
.cid-uLEJAoj5rA .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uLEJAoj5rA .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uLEJAoj5rA .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uLEJAoj5rA .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uLEJAoj5rA a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uLEJAoj5rA a.close:hover {
  color: #ffffff;
}
.cid-uLEJAoj5rA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLEJAoj5rA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLEJAoNhvD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uLEJAoNhvD .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uLEJAoNhvD .first-column .mbr-text {
  margin: 0;
}
.cid-uLEJAoNhvD .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uLEJAoNhvD .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uLEJAoNhvD .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uLEJAoNhvD .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uLEJAoNhvD .form-group {
  max-width: 55%;
}
.cid-uLEJAoNhvD .form-group,
.cid-uLEJAoNhvD .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uLEJAoNhvD .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uLEJAoNhvD .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEJAoNhvD .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEJAoNhvD .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEJAoNhvD .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEJAoNhvD .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uLEJAoNhvD .first-column,
  .cid-uLEJAoNhvD .second-column {
    padding-bottom: 2rem;
  }
  .cid-uLEJAoNhvD .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uLEJAoNhvD .first-column,
  .cid-uLEJAoNhvD .second-column,
  .cid-uLEJAoNhvD .third-column {
    text-align: center;
  }
  .cid-uLEJAoNhvD .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uLEJAplnUx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uLELCAKM2b .nav-item:focus,
.cid-uLELCAKM2b .nav-link:focus {
  outline: none;
}
.cid-uLELCAKM2b a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uLELCAKM2b .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uLELCAKM2b .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uLELCAKM2b .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uLELCAKM2b .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uLELCAKM2b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLELCAKM2b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uLELCAKM2b .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uLELCAKM2b .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uLELCAKM2b .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uLELCAKM2b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLELCAKM2b .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uLELCAKM2b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLELCAKM2b .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLELCAKM2b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLELCAKM2b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uLELCAKM2b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uLELCAKM2b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLELCAKM2b .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uLELCAKM2b .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uLELCAKM2b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLELCAKM2b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLELCAKM2b .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLELCAKM2b .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLELCAKM2b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLELCAKM2b .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uLELCAKM2b .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uLELCAKM2b .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uLELCAKM2b .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uLELCAKM2b .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLELCAKM2b .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLELCAKM2b .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLELCAKM2b .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uLELCAKM2b .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uLELCAKM2b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLELCAKM2b .dropdown-item.active,
.cid-uLELCAKM2b .dropdown-item:active {
  background-color: transparent;
}
.cid-uLELCAKM2b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLELCAKM2b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLELCAKM2b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLELCAKM2b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uLELCAKM2b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uLELCAKM2b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLELCAKM2b ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uLELCAKM2b .navbar-buttons {
  text-align: center;
}
.cid-uLELCAKM2b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLELCAKM2b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uLELCAKM2b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLELCAKM2b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLELCAKM2b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLELCAKM2b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLELCAKM2b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLELCAKM2b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLELCAKM2b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLELCAKM2b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLELCAKM2b .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLELCAKM2b a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uLELCAKM2b .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLELCAKM2b .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uLELCAKM2b .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uLELCAKM2b .nav-link:hover,
.cid-uLELCAKM2b .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uLELCAKM2b .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uLELCAKM2b .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uLELCAKM2b .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uLELCAKM2b .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uLELCAKM2b .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uLELCAKM2b .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uLELCAKM2b .dropdown-menu {
    top: 100%;
  }
  .cid-uLELCAKM2b .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uLELCAKM2b .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uLELCAKM2b .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uLELCAKM2b .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uLELCBioMu {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/7-16-2000x1500.jpg");
}
.cid-uLELCBioMu .content-section {
  margin-bottom: 2rem;
}
.cid-uLELCBioMu .wrapper {
  overflow: hidden;
}
.cid-uLELCBioMu .wrapper img {
  transition: all 0.5s;
}
.cid-uLELCBioMu .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uLELCBioMu .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLELCBioMu .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uLELCBioMu .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uLELCBioMu .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uLELCBioMu .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uLELCBILyL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLELCBILyL .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLELCBILyL .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uLELCBILyL .title {
    width: 100% !important;
  }
}
.cid-uLELCCjunt {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
#custom-html-3r {
  /* Type valid CSS here */
}
#custom-html-3r div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3r p {
  font-size: 60px;
  color: #777;
}
.cid-uLELCCz80c {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uLELCCz80c .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLELCCz80c .mbr-section-title,
.cid-uLELCCz80c .mbr-section-subtitle,
.cid-uLELCCz80c .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLELCCz80c .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uLELCCz80c .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLELCCz80c .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLELCCz80c .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uLELCCz80c .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uLELCCz80c .icon-focus {
  display: none;
}
.cid-uLELCCz80c .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uLELCCz80c ul {
  font-size: 0;
}
.cid-uLELCCz80c .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uLELCCz80c .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uLELCCz80c .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uLELCCz80c .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uLELCCz80c .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uLELCCz80c .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uLELCCz80c .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uLELCCz80c .btn:hover {
  background: transparent !important;
}
.cid-uLELCCz80c .btn:hover:before {
  background: transparent !important;
}
.cid-uLELCCz80c .btn:before {
  background-color: transparent !important;
}
.cid-uLELCCz80c .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uLELCD6vQ2 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uLELCD6vQ2 .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uLELCD6vQ2 .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uLELCD6vQ2 .btn-wrap {
  width: 100%;
}
.cid-uLELCD6vQ2 .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uLELCD6vQ2 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uLELCD6vQ2 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uLELCD6vQ2 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uLELCD6vQ2 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uLELCD6vQ2 a.close:hover {
  color: #ffffff;
}
.cid-uLELCD6vQ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLELCD6vQ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLELCDAjPN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uLELCDAjPN .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uLELCDAjPN .first-column .mbr-text {
  margin: 0;
}
.cid-uLELCDAjPN .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uLELCDAjPN .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uLELCDAjPN .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uLELCDAjPN .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uLELCDAjPN .form-group {
  max-width: 55%;
}
.cid-uLELCDAjPN .form-group,
.cid-uLELCDAjPN .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uLELCDAjPN .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uLELCDAjPN .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uLELCDAjPN .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLELCDAjPN .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLELCDAjPN .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uLELCDAjPN .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uLELCDAjPN .first-column,
  .cid-uLELCDAjPN .second-column {
    padding-bottom: 2rem;
  }
  .cid-uLELCDAjPN .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uLELCDAjPN .first-column,
  .cid-uLELCDAjPN .second-column,
  .cid-uLELCDAjPN .third-column {
    text-align: center;
  }
  .cid-uLELCDAjPN .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uLELCE44Yu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uLENIMYrcn .nav-item:focus,
.cid-uLENIMYrcn .nav-link:focus {
  outline: none;
}
.cid-uLENIMYrcn a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uLENIMYrcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uLENIMYrcn .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uLENIMYrcn .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uLENIMYrcn .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uLENIMYrcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLENIMYrcn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uLENIMYrcn .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uLENIMYrcn .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uLENIMYrcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uLENIMYrcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLENIMYrcn .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uLENIMYrcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLENIMYrcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLENIMYrcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLENIMYrcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uLENIMYrcn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uLENIMYrcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLENIMYrcn .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uLENIMYrcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uLENIMYrcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLENIMYrcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLENIMYrcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLENIMYrcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLENIMYrcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLENIMYrcn .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uLENIMYrcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uLENIMYrcn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uLENIMYrcn .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uLENIMYrcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLENIMYrcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLENIMYrcn .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLENIMYrcn .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uLENIMYrcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uLENIMYrcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLENIMYrcn .dropdown-item.active,
.cid-uLENIMYrcn .dropdown-item:active {
  background-color: transparent;
}
.cid-uLENIMYrcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLENIMYrcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLENIMYrcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLENIMYrcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uLENIMYrcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uLENIMYrcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLENIMYrcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uLENIMYrcn .navbar-buttons {
  text-align: center;
}
.cid-uLENIMYrcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLENIMYrcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uLENIMYrcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLENIMYrcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLENIMYrcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLENIMYrcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLENIMYrcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLENIMYrcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLENIMYrcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLENIMYrcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLENIMYrcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLENIMYrcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uLENIMYrcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLENIMYrcn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uLENIMYrcn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uLENIMYrcn .nav-link:hover,
.cid-uLENIMYrcn .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uLENIMYrcn .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uLENIMYrcn .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uLENIMYrcn .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uLENIMYrcn .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uLENIMYrcn .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uLENIMYrcn .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uLENIMYrcn .dropdown-menu {
    top: 100%;
  }
  .cid-uLENIMYrcn .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uLENIMYrcn .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uLENIMYrcn .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uLENIMYrcn .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uLENINzNz4 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/8-1-2000x1500.jpg");
}
.cid-uLENINzNz4 .content-section {
  margin-bottom: 2rem;
}
.cid-uLENINzNz4 .wrapper {
  overflow: hidden;
}
.cid-uLENINzNz4 .wrapper img {
  transition: all 0.5s;
}
.cid-uLENINzNz4 .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uLENINzNz4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLENINzNz4 .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uLENINzNz4 .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uLENINzNz4 .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uLENINzNz4 .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uLENIO6dRP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLENIO6dRP .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLENIO6dRP .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uLENIO6dRP .title {
    width: 100% !important;
  }
}
#custom-html-3s {
  /* Type valid CSS here */
}
#custom-html-3s div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3s p {
  font-size: 60px;
  color: #777;
}
.cid-uLENIOJs2H {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLENIOYl7F {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uLENIOYl7F .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLENIOYl7F .mbr-section-title,
.cid-uLENIOYl7F .mbr-section-subtitle,
.cid-uLENIOYl7F .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLENIOYl7F .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uLENIOYl7F .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLENIOYl7F .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLENIOYl7F .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uLENIOYl7F .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uLENIOYl7F .icon-focus {
  display: none;
}
.cid-uLENIOYl7F .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uLENIOYl7F ul {
  font-size: 0;
}
.cid-uLENIOYl7F .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uLENIOYl7F .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uLENIOYl7F .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uLENIOYl7F .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uLENIOYl7F .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uLENIOYl7F .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uLENIOYl7F .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uLENIOYl7F .btn:hover {
  background: transparent !important;
}
.cid-uLENIOYl7F .btn:hover:before {
  background: transparent !important;
}
.cid-uLENIOYl7F .btn:before {
  background-color: transparent !important;
}
.cid-uLENIOYl7F .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uLENIPwljN {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uLENIPwljN .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uLENIPwljN .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uLENIPwljN .btn-wrap {
  width: 100%;
}
.cid-uLENIPwljN .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uLENIPwljN .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uLENIPwljN .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uLENIPwljN .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uLENIPwljN a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uLENIPwljN a.close:hover {
  color: #ffffff;
}
.cid-uLENIPwljN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLENIPwljN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLENIQ2WUa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uLENIQ2WUa .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uLENIQ2WUa .first-column .mbr-text {
  margin: 0;
}
.cid-uLENIQ2WUa .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uLENIQ2WUa .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uLENIQ2WUa .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uLENIQ2WUa .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uLENIQ2WUa .form-group {
  max-width: 55%;
}
.cid-uLENIQ2WUa .form-group,
.cid-uLENIQ2WUa .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uLENIQ2WUa .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uLENIQ2WUa .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uLENIQ2WUa .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLENIQ2WUa .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLENIQ2WUa .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uLENIQ2WUa .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uLENIQ2WUa .first-column,
  .cid-uLENIQ2WUa .second-column {
    padding-bottom: 2rem;
  }
  .cid-uLENIQ2WUa .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uLENIQ2WUa .first-column,
  .cid-uLENIQ2WUa .second-column,
  .cid-uLENIQ2WUa .third-column {
    text-align: center;
  }
  .cid-uLENIQ2WUa .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uLENIQAZ76 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
.cid-uLEPaTX4sc .nav-item:focus,
.cid-uLEPaTX4sc .nav-link:focus {
  outline: none;
}
.cid-uLEPaTX4sc a.nav-link:focus {
  color: #3f855b !important;
}
.cid-uLEPaTX4sc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uLEPaTX4sc .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uLEPaTX4sc .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uLEPaTX4sc .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uLEPaTX4sc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLEPaTX4sc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-uLEPaTX4sc .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uLEPaTX4sc .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uLEPaTX4sc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uLEPaTX4sc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLEPaTX4sc .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uLEPaTX4sc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLEPaTX4sc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uLEPaTX4sc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLEPaTX4sc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uLEPaTX4sc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uLEPaTX4sc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLEPaTX4sc .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uLEPaTX4sc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uLEPaTX4sc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLEPaTX4sc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLEPaTX4sc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uLEPaTX4sc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uLEPaTX4sc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLEPaTX4sc .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uLEPaTX4sc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uLEPaTX4sc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uLEPaTX4sc .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uLEPaTX4sc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uLEPaTX4sc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uLEPaTX4sc .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLEPaTX4sc .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uLEPaTX4sc .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uLEPaTX4sc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLEPaTX4sc .dropdown-item.active,
.cid-uLEPaTX4sc .dropdown-item:active {
  background-color: transparent;
}
.cid-uLEPaTX4sc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLEPaTX4sc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLEPaTX4sc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLEPaTX4sc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uLEPaTX4sc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uLEPaTX4sc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLEPaTX4sc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uLEPaTX4sc .navbar-buttons {
  text-align: center;
}
.cid-uLEPaTX4sc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLEPaTX4sc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-uLEPaTX4sc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uLEPaTX4sc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEPaTX4sc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uLEPaTX4sc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uLEPaTX4sc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEPaTX4sc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uLEPaTX4sc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uLEPaTX4sc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uLEPaTX4sc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uLEPaTX4sc a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uLEPaTX4sc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uLEPaTX4sc .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uLEPaTX4sc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uLEPaTX4sc .nav-link:hover,
.cid-uLEPaTX4sc .icons-menu .mbr-iconfont:hover {
  color: #3f855b !important;
}
.cid-uLEPaTX4sc .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uLEPaTX4sc .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #3f855b;
  transition: width 0.3s ease-in;
}
.cid-uLEPaTX4sc .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uLEPaTX4sc .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uLEPaTX4sc .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uLEPaTX4sc .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uLEPaTX4sc .dropdown-menu {
    top: 100%;
  }
  .cid-uLEPaTX4sc .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uLEPaTX4sc .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uLEPaTX4sc .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uLEPaTX4sc .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uLEPaUxeNF {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/9-3-2000x1455.jpg");
}
.cid-uLEPaUxeNF .content-section {
  margin-bottom: 2rem;
}
.cid-uLEPaUxeNF .wrapper {
  overflow: hidden;
}
.cid-uLEPaUxeNF .wrapper img {
  transition: all 0.5s;
}
.cid-uLEPaUxeNF .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uLEPaUxeNF .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEPaUxeNF .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 17rem;
}
.cid-uLEPaUxeNF .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-uLEPaUxeNF .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uLEPaUxeNF .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uLEPaV1DOf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEPaV1DOf .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEPaV1DOf .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uLEPaV1DOf .title {
    width: 100% !important;
  }
}
#custom-html-3t {
  /* Type valid CSS here */
}
#custom-html-3t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3t p {
  font-size: 60px;
  color: #777;
}
.cid-uLEPaVFSjY {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLEPaVWjgh {
  padding-top: 45px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uLEPaVWjgh .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uLEPaVWjgh .mbr-section-title,
.cid-uLEPaVWjgh .mbr-section-subtitle,
.cid-uLEPaVWjgh .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLEPaVWjgh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uLEPaVWjgh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLEPaVWjgh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLEPaVWjgh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uLEPaVWjgh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #86a45f);
}
.cid-uLEPaVWjgh .icon-focus {
  display: none;
}
.cid-uLEPaVWjgh .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uLEPaVWjgh ul {
  font-size: 0;
}
.cid-uLEPaVWjgh .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-uLEPaVWjgh .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-uLEPaVWjgh .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-uLEPaVWjgh .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-uLEPaVWjgh .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uLEPaVWjgh .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-uLEPaVWjgh .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-uLEPaVWjgh .btn:hover {
  background: transparent !important;
}
.cid-uLEPaVWjgh .btn:hover:before {
  background: transparent !important;
}
.cid-uLEPaVWjgh .btn:before {
  background-color: transparent !important;
}
.cid-uLEPaVWjgh .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uLEPaWr7CO {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/agavifondo-1582x800.png");
}
.cid-uLEPaWr7CO .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uLEPaWr7CO .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uLEPaWr7CO .btn-wrap {
  width: 100%;
}
.cid-uLEPaWr7CO .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-uLEPaWr7CO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uLEPaWr7CO .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uLEPaWr7CO .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uLEPaWr7CO a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uLEPaWr7CO a.close:hover {
  color: #ffffff;
}
.cid-uLEPaWr7CO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLEPaWr7CO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLEPaX0xWB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #516358;
}
.cid-uLEPaX0xWB .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-uLEPaX0xWB .first-column .mbr-text {
  margin: 0;
}
.cid-uLEPaX0xWB .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-uLEPaX0xWB .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-uLEPaX0xWB .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uLEPaX0xWB .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-uLEPaX0xWB .form-group {
  max-width: 55%;
}
.cid-uLEPaX0xWB .form-group,
.cid-uLEPaX0xWB .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-uLEPaX0xWB .form-control {
  font-size: 0.9rem;
  border: none !important;
  border-radius: 0;
  width: 100%;
  padding: 0.3rem 0.5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-uLEPaX0xWB .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEPaX0xWB .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEPaX0xWB .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-uLEPaX0xWB .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-uLEPaX0xWB .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-uLEPaX0xWB .first-column,
  .cid-uLEPaX0xWB .second-column {
    padding-bottom: 2rem;
  }
  .cid-uLEPaX0xWB .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-uLEPaX0xWB .first-column,
  .cid-uLEPaX0xWB .second-column,
  .cid-uLEPaX0xWB .third-column {
    text-align: center;
  }
  .cid-uLEPaX0xWB .input-group-btn .btn {
    padding: 0.6rem 1rem !important;
  }
}
.cid-uLEPaXyaPE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6c8776;
}
