body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e43f3f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e43f3f;
  border-bottom-color: #e43f3f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e43f3f !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e43f3f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t73jqeIAsN {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t73jqeIAsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73jqeIAsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t73jqeIAsN .mbr-text,
.cid-t73jqeIAsN .mbr-section-btn {
  color: #232323;
}
.cid-t73jqeIAsN .card-title,
.cid-t73jqeIAsN .card-box {
  color: #ffffff;
}
.cid-t73jqeIAsN .mbr-text,
.cid-t73jqeIAsN .link-wrap {
  color: #ffffff;
}
.cid-t73jqf4wok {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t73jqf4wok .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73jqf4wok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t73jqf4wok .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t73jqf4wok .row {
  flex-direction: row-reverse;
}
.cid-t73jqf4wok img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t73jqf4wok .text-wrapper {
    padding: 2rem;
  }
}
.cid-t73jqf4wok .mbr-text {
  text-align: left;
}
.cid-usH1kvISA0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1kvISA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1kvISA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1kvISA0 .link {
  color: #e43f3f;
}
.cid-usH1kvISA0 .mbr-section-title {
  color: #ffffff;
}
.cid-usH1kvISA0 .card-title,
.cid-usH1kvISA0 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t73ksASGO4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t73ksASGO4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73ksASGO4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t73ksASGO4 .mbr-text,
.cid-t73ksASGO4 .mbr-section-btn {
  color: #232323;
}
.cid-t73ksASGO4 .card-title,
.cid-t73ksASGO4 .card-box {
  color: #ffffff;
}
.cid-t73ksASGO4 .mbr-text,
.cid-t73ksASGO4 .link-wrap {
  color: #ffffff;
}
.cid-t73ksBdnmR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t73ksBdnmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73ksBdnmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t73ksBdnmR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t73ksBdnmR .row {
  flex-direction: row-reverse;
}
.cid-t73ksBdnmR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t73ksBdnmR .text-wrapper {
    padding: 2rem;
  }
}
.cid-t73ksBdnmR .mbr-text {
  text-align: left;
}
.cid-usH1m96jIo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1m96jIo .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1m96jIo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1m96jIo .link {
  color: #e43f3f;
}
.cid-usH1m96jIo .mbr-section-title {
  color: #ffffff;
}
.cid-usH1m96jIo .card-title,
.cid-usH1m96jIo .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6X9kUYnz5 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t6X9kUYnz5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6X9kUYnz5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6X9kUYnz5 .mbr-text,
.cid-t6X9kUYnz5 .mbr-section-btn {
  color: #232323;
}
.cid-t6X9kUYnz5 .card-title,
.cid-t6X9kUYnz5 .card-box {
  color: #ffffff;
}
.cid-t6X9kUYnz5 .mbr-text,
.cid-t6X9kUYnz5 .link-wrap {
  color: #ffffff;
}
.cid-t6X9kVlbXW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t6X9kVlbXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6X9kVlbXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t6X9kVlbXW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6X9kVlbXW .row {
  flex-direction: row-reverse;
}
.cid-t6X9kVlbXW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6X9kVlbXW .text-wrapper {
    padding: 2rem;
  }
}
.cid-usGXBcEr6F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGXBcEr6F .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGXBcEr6F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGXBcEr6F .link {
  color: #e43f3f;
}
.cid-usGXBcEr6F .mbr-section-title {
  color: #ffffff;
}
.cid-usGXBcEr6F .card-title,
.cid-usGXBcEr6F .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t73hBA6rSQ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t73hBA6rSQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73hBA6rSQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t73hBA6rSQ .mbr-text,
.cid-t73hBA6rSQ .mbr-section-btn {
  color: #232323;
}
.cid-t73hBA6rSQ .card-title,
.cid-t73hBA6rSQ .card-box {
  color: #ffffff;
}
.cid-t73hBA6rSQ .mbr-text,
.cid-t73hBA6rSQ .link-wrap {
  color: #ffffff;
}
.cid-t73hBAqAzM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t73hBAqAzM .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73hBAqAzM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t73hBAqAzM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t73hBAqAzM .row {
  flex-direction: row-reverse;
}
.cid-t73hBAqAzM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t73hBAqAzM .text-wrapper {
    padding: 2rem;
  }
}
.cid-t73hBAqAzM .mbr-text {
  text-align: left;
}
.cid-usGXDitvS0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGXDitvS0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGXDitvS0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGXDitvS0 .link {
  color: #e43f3f;
}
.cid-usGXDitvS0 .mbr-section-title {
  color: #ffffff;
}
.cid-usGXDitvS0 .card-title,
.cid-usGXDitvS0 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6LICqGf93 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t6LICqGf93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6LICqGf93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6LICqGf93 .mbr-text,
.cid-t6LICqGf93 .mbr-section-btn {
  color: #232323;
}
.cid-t6LICqGf93 .card-title,
.cid-t6LICqGf93 .card-box {
  color: #ffffff;
}
.cid-t6LICqGf93 .mbr-text,
.cid-t6LICqGf93 .link-wrap {
  color: #ffffff;
}
.cid-t6LJtPD7da {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t6LJtPD7da .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6LJtPD7da .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t6LJtPD7da .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t6LJtPD7da .row {
  flex-direction: row-reverse;
}
.cid-t6LJtPD7da img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t6LJtPD7da .text-wrapper {
    padding: 2rem;
  }
}
.cid-usGWAWwMtS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGWAWwMtS .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGWAWwMtS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGWAWwMtS .link {
  color: #e43f3f;
}
.cid-usGWAWwMtS .mbr-section-title {
  color: #ffffff;
}
.cid-usGWAWwMtS .card-title,
.cid-usGWAWwMtS .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6X75bNmo1 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t6X75bNmo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6X75bNmo1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6X75bNmo1 .mbr-text,
.cid-t6X75bNmo1 .mbr-section-btn {
  color: #232323;
}
.cid-t6X75bNmo1 .card-title,
.cid-t6X75bNmo1 .card-box {
  color: #ffffff;
}
.cid-t6X75bNmo1 .mbr-text,
.cid-t6X75bNmo1 .link-wrap {
  color: #ffffff;
}
.cid-t6X7lTfNvS {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t6X7lTfNvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6X7lTfNvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-t6X7lTfNvS .row {
    flex-direction: column-reverse;
  }
  .cid-t6X7lTfNvS .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-t6X7lTfNvS .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-t6X7lTfNvS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t6X7lTfNvS .media-content,
.cid-t6X7lTfNvS .mbr-figure {
  align-self: center;
}
.cid-t6X7lTfNvS .mbr-figure iframe {
  width: 100%;
}
.cid-usGWyMNA0S {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGWyMNA0S .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGWyMNA0S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGWyMNA0S .link {
  color: #e43f3f;
}
.cid-usGWyMNA0S .mbr-section-title {
  color: #ffffff;
}
.cid-usGWyMNA0S .card-title,
.cid-usGWyMNA0S .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5xhTjsH2V {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/100-4344-2000x1500.jpg");
}
.cid-t5xhTjsH2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5xhTjsH2V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5xhTjsH2V .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-t5xhTjsH2V .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t5xhTjsH2V .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t5xhTjsH2V .card-wrapper {
    padding: 4rem;
  }
}
.cid-t5xhTjsH2V .mbr-text,
.cid-t5xhTjsH2V .mbr-section-btn {
  color: #fafafa;
}
.cid-t5xhTjsH2V .card-title {
  color: #ffffff;
}
.cid-t5ICvu4IM6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t5ICvu4IM6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5ICvu4IM6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5ICvu4IM6 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e43f3f;
  margin-left: 1rem;
}
.cid-t5ICvu4IM6 .panel-group {
  border: none;
}
.cid-t5ICvu4IM6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t5ICvu4IM6 .panel-body,
.cid-t5ICvu4IM6 .card-header {
  padding: 1rem 0;
}
.cid-t5ICvu4IM6 .panel-title-edit {
  color: #ffffff;
}
.cid-t5ICvu4IM6 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t5ICvu4IM6 .panel-text {
  color: #bbbbbb;
}
.cid-t6XaDYue8j {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagen-de-whatsapp-2025-03-21-a-las-19.41.12-bc677919.jpg-1600x1199.jpg");
}
.cid-t6XaDYue8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6XaDYue8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6XaDYue8j .card-title,
.cid-t6XaDYue8j .card-box {
  color: #ffffff;
}
.cid-t6Xd8hSygh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-t6Xd8hSygh .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6Xd8hSygh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6Xd8hSygh ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t6Xd8hSygh li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t6Xd8hSygh ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #e43f3f;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t6Xd8hSygh H3 {
  color: #ffffff;
}
.cid-t6Xd8hSygh .list {
  color: #fafafa;
  text-align: left;
}
.cid-t5xhZznNHw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t5xhZznNHw .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5xhZznNHw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5xhZznNHw .item {
  padding-bottom: 2rem;
}
.cid-t5xhZznNHw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t5xhZznNHw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t5xhZznNHw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t5xhZznNHw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t5xhZznNHw .carousel-control,
.cid-t5xhZznNHw .close {
  background: #1b1b1b;
}
.cid-t5xhZznNHw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t5xhZznNHw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t5xhZznNHw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t5xhZznNHw .carousel-control-next span {
  margin-left: 5px;
}
.cid-t5xhZznNHw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t5xhZznNHw .close::before {
  content: '\e91a';
}
.cid-t5xhZznNHw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t5xhZznNHw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t5xhZznNHw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5xhZznNHw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t5xhZznNHw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t5xhZznNHw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t5xhZznNHw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t5xhZznNHw .carousel-indicators li.active,
.cid-t5xhZznNHw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t5xhZznNHw .carousel-indicators li::after,
.cid-t5xhZznNHw .carousel-indicators li::before {
  content: none;
}
.cid-t5xhZznNHw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t5xhZznNHw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t5xhZznNHw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t5xhZznNHw .carousel-indicators {
    display: none;
  }
}
.cid-t5xhZznNHw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t5xhZznNHw .carousel-inner > .active {
  display: block;
}
.cid-t5xhZznNHw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5xhZznNHw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5xhZznNHw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t5xhZznNHw .carousel-control,
  .cid-t5xhZznNHw .carousel-indicators,
  .cid-t5xhZznNHw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t5xhZznNHw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t5xhZznNHw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t5xhZznNHw .carousel-indicators .active,
.cid-t5xhZznNHw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t5xhZznNHw .carousel-indicators .active {
  background: #fff;
}
.cid-t5xhZznNHw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t5xhZznNHw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t5xhZznNHw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t5xhZznNHw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t5xhZznNHw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t5xhZznNHw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t5xhZznNHw .carousel {
  width: 100%;
}
.cid-t5xhZznNHw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t5xhZznNHw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t5xhZznNHw .modal.fade .modal-dialog,
.cid-t5xhZznNHw .modal.in .modal-dialog {
  transform: none;
}
.cid-t5xhZznNHw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t5xhZznNHw H6 {
  text-align: center;
}
.cid-t5xhZznNHw H3 {
  color: #ffffff;
}
.cid-t5IBUQJbPQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t5IBUQJbPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5IBUQJbPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5IBUQJbPQ .item {
  padding-bottom: 2rem;
}
.cid-t5IBUQJbPQ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t5IBUQJbPQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t5IBUQJbPQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t5IBUQJbPQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t5IBUQJbPQ .carousel-control,
.cid-t5IBUQJbPQ .close {
  background: #1b1b1b;
}
.cid-t5IBUQJbPQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t5IBUQJbPQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t5IBUQJbPQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t5IBUQJbPQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-t5IBUQJbPQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t5IBUQJbPQ .close::before {
  content: '\e91a';
}
.cid-t5IBUQJbPQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t5IBUQJbPQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t5IBUQJbPQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5IBUQJbPQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t5IBUQJbPQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t5IBUQJbPQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t5IBUQJbPQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t5IBUQJbPQ .carousel-indicators li.active,
.cid-t5IBUQJbPQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t5IBUQJbPQ .carousel-indicators li::after,
.cid-t5IBUQJbPQ .carousel-indicators li::before {
  content: none;
}
.cid-t5IBUQJbPQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t5IBUQJbPQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t5IBUQJbPQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t5IBUQJbPQ .carousel-indicators {
    display: none;
  }
}
.cid-t5IBUQJbPQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t5IBUQJbPQ .carousel-inner > .active {
  display: block;
}
.cid-t5IBUQJbPQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5IBUQJbPQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5IBUQJbPQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t5IBUQJbPQ .carousel-control,
  .cid-t5IBUQJbPQ .carousel-indicators,
  .cid-t5IBUQJbPQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t5IBUQJbPQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t5IBUQJbPQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t5IBUQJbPQ .carousel-indicators .active,
.cid-t5IBUQJbPQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t5IBUQJbPQ .carousel-indicators .active {
  background: #fff;
}
.cid-t5IBUQJbPQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t5IBUQJbPQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t5IBUQJbPQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t5IBUQJbPQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t5IBUQJbPQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t5IBUQJbPQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t5IBUQJbPQ .carousel {
  width: 100%;
}
.cid-t5IBUQJbPQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t5IBUQJbPQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t5IBUQJbPQ .modal.fade .modal-dialog,
.cid-t5IBUQJbPQ .modal.in .modal-dialog {
  transform: none;
}
.cid-t5IBUQJbPQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t5IBUQJbPQ H6 {
  text-align: center;
}
.cid-usGWorjWiE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGWorjWiE .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGWorjWiE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGWorjWiE .link {
  color: #e43f3f;
}
.cid-usGWorjWiE .mbr-section-title {
  color: #ffffff;
}
.cid-usGWorjWiE .card-title,
.cid-usGWorjWiE .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6FdWX3zHj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-t6FdWX3zHj .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6FdWX3zHj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6FdWX3zHj ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t6FdWX3zHj li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t6FdWX3zHj ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #e43f3f;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t6FdWX3zHj .list {
  color: #ffffff;
  text-align: left;
}
.cid-t6FdWX3zHj H3 {
  color: #ffffff;
}
.cid-t6ENTIpT3w {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t6ENTIpT3w .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6ENTIpT3w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6ENTIpT3w .item {
  padding-bottom: 2rem;
}
.cid-t6ENTIpT3w .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t6ENTIpT3w .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t6ENTIpT3w .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t6ENTIpT3w .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t6ENTIpT3w .carousel-control,
.cid-t6ENTIpT3w .close {
  background: #1b1b1b;
}
.cid-t6ENTIpT3w .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t6ENTIpT3w .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t6ENTIpT3w .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t6ENTIpT3w .carousel-control-next span {
  margin-left: 5px;
}
.cid-t6ENTIpT3w .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6ENTIpT3w .close::before {
  content: '\e91a';
}
.cid-t6ENTIpT3w .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6ENTIpT3w .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t6ENTIpT3w .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENTIpT3w .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t6ENTIpT3w .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6ENTIpT3w .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t6ENTIpT3w .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6ENTIpT3w .carousel-indicators li.active,
.cid-t6ENTIpT3w .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6ENTIpT3w .carousel-indicators li::after,
.cid-t6ENTIpT3w .carousel-indicators li::before {
  content: none;
}
.cid-t6ENTIpT3w .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t6ENTIpT3w .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t6ENTIpT3w .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t6ENTIpT3w .carousel-indicators {
    display: none;
  }
}
.cid-t6ENTIpT3w .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t6ENTIpT3w .carousel-inner > .active {
  display: block;
}
.cid-t6ENTIpT3w .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENTIpT3w .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t6ENTIpT3w .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t6ENTIpT3w .carousel-control,
  .cid-t6ENTIpT3w .carousel-indicators,
  .cid-t6ENTIpT3w .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t6ENTIpT3w .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t6ENTIpT3w .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6ENTIpT3w .carousel-indicators .active,
.cid-t6ENTIpT3w .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t6ENTIpT3w .carousel-indicators .active {
  background: #fff;
}
.cid-t6ENTIpT3w .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t6ENTIpT3w .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t6ENTIpT3w .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t6ENTIpT3w .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t6ENTIpT3w .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t6ENTIpT3w .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t6ENTIpT3w .carousel {
  width: 100%;
}
.cid-t6ENTIpT3w .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t6ENTIpT3w .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t6ENTIpT3w .modal.fade .modal-dialog,
.cid-t6ENTIpT3w .modal.in .modal-dialog {
  transform: none;
}
.cid-t6ENTIpT3w .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t6ENTIpT3w H6 {
  text-align: center;
}
.cid-t6ENTIpT3w H3 {
  color: #ffffff;
}
.cid-t6ENTIRu2R {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t6ENTIRu2R .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6ENTIRu2R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6ENTIRu2R .item {
  padding-bottom: 2rem;
}
.cid-t6ENTIRu2R .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t6ENTIRu2R .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t6ENTIRu2R .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t6ENTIRu2R .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t6ENTIRu2R .carousel-control,
.cid-t6ENTIRu2R .close {
  background: #1b1b1b;
}
.cid-t6ENTIRu2R .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t6ENTIRu2R .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t6ENTIRu2R .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t6ENTIRu2R .carousel-control-next span {
  margin-left: 5px;
}
.cid-t6ENTIRu2R .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6ENTIRu2R .close::before {
  content: '\e91a';
}
.cid-t6ENTIRu2R .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6ENTIRu2R .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t6ENTIRu2R .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENTIRu2R .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t6ENTIRu2R .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6ENTIRu2R .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t6ENTIRu2R .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6ENTIRu2R .carousel-indicators li.active,
.cid-t6ENTIRu2R .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6ENTIRu2R .carousel-indicators li::after,
.cid-t6ENTIRu2R .carousel-indicators li::before {
  content: none;
}
.cid-t6ENTIRu2R .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t6ENTIRu2R .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t6ENTIRu2R .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t6ENTIRu2R .carousel-indicators {
    display: none;
  }
}
.cid-t6ENTIRu2R .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t6ENTIRu2R .carousel-inner > .active {
  display: block;
}
.cid-t6ENTIRu2R .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENTIRu2R .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t6ENTIRu2R .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t6ENTIRu2R .carousel-control,
  .cid-t6ENTIRu2R .carousel-indicators,
  .cid-t6ENTIRu2R .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t6ENTIRu2R .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t6ENTIRu2R .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6ENTIRu2R .carousel-indicators .active,
.cid-t6ENTIRu2R .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t6ENTIRu2R .carousel-indicators .active {
  background: #fff;
}
.cid-t6ENTIRu2R .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t6ENTIRu2R .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t6ENTIRu2R .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t6ENTIRu2R .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t6ENTIRu2R .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t6ENTIRu2R .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t6ENTIRu2R .carousel {
  width: 100%;
}
.cid-t6ENTIRu2R .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t6ENTIRu2R .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t6ENTIRu2R .modal.fade .modal-dialog,
.cid-t6ENTIRu2R .modal.in .modal-dialog {
  transform: none;
}
.cid-t6ENTIRu2R .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t6ENTIRu2R H6 {
  text-align: center;
}
.cid-usGWr62HXj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGWr62HXj .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGWr62HXj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGWr62HXj .link {
  color: #e43f3f;
}
.cid-usGWr62HXj .mbr-section-title {
  color: #ffffff;
}
.cid-usGWr62HXj .card-title,
.cid-usGWr62HXj .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7q4s7MQ5C {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t7q4s7MQ5C .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7q4s7MQ5C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7q4s7MQ5C .mbr-text,
.cid-t7q4s7MQ5C .mbr-section-btn {
  color: #232323;
}
.cid-t7q4s7MQ5C .card-title,
.cid-t7q4s7MQ5C .card-box {
  color: #ffffff;
}
.cid-t7q4s7MQ5C .mbr-text,
.cid-t7q4s7MQ5C .link-wrap {
  color: #ffffff;
}
.cid-t7pR78GOHd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t7pR78GOHd .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7pR78GOHd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7pR78GOHd .item {
  padding-bottom: 2rem;
}
.cid-t7pR78GOHd .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t7pR78GOHd .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t7pR78GOHd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t7pR78GOHd .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t7pR78GOHd .carousel-control,
.cid-t7pR78GOHd .close {
  background: #1b1b1b;
}
.cid-t7pR78GOHd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t7pR78GOHd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t7pR78GOHd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t7pR78GOHd .carousel-control-next span {
  margin-left: 5px;
}
.cid-t7pR78GOHd .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t7pR78GOHd .close::before {
  content: '\e91a';
}
.cid-t7pR78GOHd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t7pR78GOHd .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t7pR78GOHd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t7pR78GOHd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t7pR78GOHd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t7pR78GOHd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t7pR78GOHd .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t7pR78GOHd .carousel-indicators li.active,
.cid-t7pR78GOHd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t7pR78GOHd .carousel-indicators li::after,
.cid-t7pR78GOHd .carousel-indicators li::before {
  content: none;
}
.cid-t7pR78GOHd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t7pR78GOHd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t7pR78GOHd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t7pR78GOHd .carousel-indicators {
    display: none;
  }
}
.cid-t7pR78GOHd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t7pR78GOHd .carousel-inner > .active {
  display: block;
}
.cid-t7pR78GOHd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t7pR78GOHd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t7pR78GOHd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t7pR78GOHd .carousel-control,
  .cid-t7pR78GOHd .carousel-indicators,
  .cid-t7pR78GOHd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t7pR78GOHd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t7pR78GOHd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t7pR78GOHd .carousel-indicators .active,
.cid-t7pR78GOHd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t7pR78GOHd .carousel-indicators .active {
  background: #fff;
}
.cid-t7pR78GOHd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t7pR78GOHd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t7pR78GOHd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t7pR78GOHd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t7pR78GOHd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t7pR78GOHd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t7pR78GOHd .carousel {
  width: 100%;
}
.cid-t7pR78GOHd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t7pR78GOHd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t7pR78GOHd .modal.fade .modal-dialog,
.cid-t7pR78GOHd .modal.in .modal-dialog {
  transform: none;
}
.cid-t7pR78GOHd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t7pR78GOHd H6 {
  text-align: center;
}
.cid-t7pR78GOHd H3 {
  color: #ffffff;
}
.cid-t7pR799yXS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t7pR799yXS .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7pR799yXS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7pR799yXS .item {
  padding-bottom: 2rem;
}
.cid-t7pR799yXS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t7pR799yXS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t7pR799yXS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t7pR799yXS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t7pR799yXS .carousel-control,
.cid-t7pR799yXS .close {
  background: #1b1b1b;
}
.cid-t7pR799yXS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t7pR799yXS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t7pR799yXS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t7pR799yXS .carousel-control-next span {
  margin-left: 5px;
}
.cid-t7pR799yXS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t7pR799yXS .close::before {
  content: '\e91a';
}
.cid-t7pR799yXS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t7pR799yXS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t7pR799yXS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t7pR799yXS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t7pR799yXS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t7pR799yXS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t7pR799yXS .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t7pR799yXS .carousel-indicators li.active,
.cid-t7pR799yXS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t7pR799yXS .carousel-indicators li::after,
.cid-t7pR799yXS .carousel-indicators li::before {
  content: none;
}
.cid-t7pR799yXS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t7pR799yXS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t7pR799yXS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t7pR799yXS .carousel-indicators {
    display: none;
  }
}
.cid-t7pR799yXS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t7pR799yXS .carousel-inner > .active {
  display: block;
}
.cid-t7pR799yXS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t7pR799yXS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t7pR799yXS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t7pR799yXS .carousel-control,
  .cid-t7pR799yXS .carousel-indicators,
  .cid-t7pR799yXS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t7pR799yXS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t7pR799yXS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t7pR799yXS .carousel-indicators .active,
.cid-t7pR799yXS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t7pR799yXS .carousel-indicators .active {
  background: #fff;
}
.cid-t7pR799yXS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t7pR799yXS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t7pR799yXS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t7pR799yXS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t7pR799yXS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t7pR799yXS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t7pR799yXS .carousel {
  width: 100%;
}
.cid-t7pR799yXS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t7pR799yXS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t7pR799yXS .modal.fade .modal-dialog,
.cid-t7pR799yXS .modal.in .modal-dialog {
  transform: none;
}
.cid-t7pR799yXS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t7pR799yXS H6 {
  text-align: center;
}
.cid-usGWwcJe3I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGWwcJe3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGWwcJe3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGWwcJe3I .link {
  color: #e43f3f;
}
.cid-usGWwcJe3I .mbr-section-title {
  color: #ffffff;
}
.cid-usGWwcJe3I .card-title,
.cid-usGWwcJe3I .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6KYpZ5jR5 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/100-4348-2000x526.jpg");
}
.cid-t6KYpZ5jR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6KYpZ5jR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6KYpZ5jR5 .mbr-text,
.cid-t6KYpZ5jR5 .mbr-section-btn {
  color: #232323;
}
.cid-t6KYpZ5jR5 .card-title,
.cid-t6KYpZ5jR5 .card-box {
  color: #ffffff;
}
.cid-t6KYpZ5jR5 .mbr-text,
.cid-t6KYpZ5jR5 .link-wrap {
  color: #ffffff;
}
.cid-t6FPDbUONx {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background: #000000;
}
.cid-t6FPDbUONx .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6FPDbUONx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6FPDbUONx .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-t6FPDbUONx .plan-body {
  padding-bottom: 2rem;
}
.cid-t6FPDbUONx .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t6FPDbUONx .price {
  color: #e43f3f;
}
.cid-t6FPDbUONx .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-t6FPDbUONx .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-t6FPDbUONx .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-t6FPDbUONx .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-t6FPDbUONx .plan {
    margin-bottom: 2rem;
  }
}
.cid-t6FPDbUONx .plan-title {
  color: #000000;
  text-align: center;
}
.cid-t6FPDbUONx UL {
  color: #e43f3f;
  text-align: center;
}
.cid-t6ENW12K8k {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t6ENW12K8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6ENW12K8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6ENW12K8k .item {
  padding-bottom: 2rem;
}
.cid-t6ENW12K8k .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t6ENW12K8k .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t6ENW12K8k .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t6ENW12K8k .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t6ENW12K8k .carousel-control,
.cid-t6ENW12K8k .close {
  background: #1b1b1b;
}
.cid-t6ENW12K8k .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t6ENW12K8k .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t6ENW12K8k .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t6ENW12K8k .carousel-control-next span {
  margin-left: 5px;
}
.cid-t6ENW12K8k .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6ENW12K8k .close::before {
  content: '\e91a';
}
.cid-t6ENW12K8k .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6ENW12K8k .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t6ENW12K8k .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENW12K8k .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t6ENW12K8k .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6ENW12K8k .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t6ENW12K8k .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6ENW12K8k .carousel-indicators li.active,
.cid-t6ENW12K8k .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6ENW12K8k .carousel-indicators li::after,
.cid-t6ENW12K8k .carousel-indicators li::before {
  content: none;
}
.cid-t6ENW12K8k .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t6ENW12K8k .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t6ENW12K8k .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t6ENW12K8k .carousel-indicators {
    display: none;
  }
}
.cid-t6ENW12K8k .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t6ENW12K8k .carousel-inner > .active {
  display: block;
}
.cid-t6ENW12K8k .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENW12K8k .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t6ENW12K8k .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t6ENW12K8k .carousel-control,
  .cid-t6ENW12K8k .carousel-indicators,
  .cid-t6ENW12K8k .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t6ENW12K8k .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t6ENW12K8k .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6ENW12K8k .carousel-indicators .active,
.cid-t6ENW12K8k .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t6ENW12K8k .carousel-indicators .active {
  background: #fff;
}
.cid-t6ENW12K8k .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t6ENW12K8k .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t6ENW12K8k .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t6ENW12K8k .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t6ENW12K8k .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t6ENW12K8k .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t6ENW12K8k .carousel {
  width: 100%;
}
.cid-t6ENW12K8k .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t6ENW12K8k .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t6ENW12K8k .modal.fade .modal-dialog,
.cid-t6ENW12K8k .modal.in .modal-dialog {
  transform: none;
}
.cid-t6ENW12K8k .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t6ENW12K8k H6 {
  text-align: center;
}
.cid-t6ENW12K8k H3 {
  color: #ffffff;
}
.cid-t6ENW1Gtne {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t6ENW1Gtne .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6ENW1Gtne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6ENW1Gtne .item {
  padding-bottom: 2rem;
}
.cid-t6ENW1Gtne .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t6ENW1Gtne .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t6ENW1Gtne .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t6ENW1Gtne .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t6ENW1Gtne .carousel-control,
.cid-t6ENW1Gtne .close {
  background: #1b1b1b;
}
.cid-t6ENW1Gtne .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t6ENW1Gtne .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t6ENW1Gtne .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t6ENW1Gtne .carousel-control-next span {
  margin-left: 5px;
}
.cid-t6ENW1Gtne .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6ENW1Gtne .close::before {
  content: '\e91a';
}
.cid-t6ENW1Gtne .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6ENW1Gtne .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t6ENW1Gtne .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENW1Gtne .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t6ENW1Gtne .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t6ENW1Gtne .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t6ENW1Gtne .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t6ENW1Gtne .carousel-indicators li.active,
.cid-t6ENW1Gtne .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t6ENW1Gtne .carousel-indicators li::after,
.cid-t6ENW1Gtne .carousel-indicators li::before {
  content: none;
}
.cid-t6ENW1Gtne .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t6ENW1Gtne .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t6ENW1Gtne .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t6ENW1Gtne .carousel-indicators {
    display: none;
  }
}
.cid-t6ENW1Gtne .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t6ENW1Gtne .carousel-inner > .active {
  display: block;
}
.cid-t6ENW1Gtne .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6ENW1Gtne .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t6ENW1Gtne .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t6ENW1Gtne .carousel-control,
  .cid-t6ENW1Gtne .carousel-indicators,
  .cid-t6ENW1Gtne .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t6ENW1Gtne .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t6ENW1Gtne .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t6ENW1Gtne .carousel-indicators .active,
.cid-t6ENW1Gtne .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t6ENW1Gtne .carousel-indicators .active {
  background: #fff;
}
.cid-t6ENW1Gtne .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t6ENW1Gtne .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t6ENW1Gtne .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t6ENW1Gtne .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t6ENW1Gtne .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t6ENW1Gtne .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t6ENW1Gtne .carousel {
  width: 100%;
}
.cid-t6ENW1Gtne .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t6ENW1Gtne .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t6ENW1Gtne .modal.fade .modal-dialog,
.cid-t6ENW1Gtne .modal.in .modal-dialog {
  transform: none;
}
.cid-t6ENW1Gtne .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t6ENW1Gtne H6 {
  text-align: center;
}
.cid-usGWtvIboz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usGWtvIboz .mbr-fallback-image.disabled {
  display: none;
}
.cid-usGWtvIboz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usGWtvIboz .link {
  color: #e43f3f;
}
.cid-usGWtvIboz .mbr-section-title {
  color: #ffffff;
}
.cid-usGWtvIboz .card-title,
.cid-usGWtvIboz .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7kbY6tlxO {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t7kbY6tlxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kbY6tlxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7kbY6tlxO .mbr-text,
.cid-t7kbY6tlxO .mbr-section-btn {
  color: #232323;
}
.cid-t7kbY6tlxO .card-title,
.cid-t7kbY6tlxO .card-box {
  color: #ffffff;
}
.cid-t7kbY6tlxO .mbr-text,
.cid-t7kbY6tlxO .link-wrap {
  color: #ffffff;
}
.cid-t7kbY6G3kc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7kbY6G3kc .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kbY6G3kc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t7kbY6G3kc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7kbY6G3kc .row {
  flex-direction: row-reverse;
}
.cid-t7kbY6G3kc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7kbY6G3kc .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7kbY6G3kc .mbr-text {
  text-align: left;
}
.cid-usH1Pm3lTM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1Pm3lTM .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1Pm3lTM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1Pm3lTM .link {
  color: #e43f3f;
}
.cid-usH1Pm3lTM .mbr-section-title {
  color: #ffffff;
}
.cid-usH1Pm3lTM .card-title,
.cid-usH1Pm3lTM .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7kc2mTYgb {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t7kc2mTYgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kc2mTYgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7kc2mTYgb .mbr-text,
.cid-t7kc2mTYgb .mbr-section-btn {
  color: #232323;
}
.cid-t7kc2mTYgb .card-title,
.cid-t7kc2mTYgb .card-box {
  color: #ffffff;
}
.cid-t7kc2mTYgb .mbr-text,
.cid-t7kc2mTYgb .link-wrap {
  color: #ffffff;
}
.cid-t7kc2n5BNZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7kc2n5BNZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kc2n5BNZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t7kc2n5BNZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7kc2n5BNZ .row {
  flex-direction: row-reverse;
}
.cid-t7kc2n5BNZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7kc2n5BNZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7kc2n5BNZ .mbr-text {
  text-align: left;
}
.cid-usH1QV5yTX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1QV5yTX .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1QV5yTX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1QV5yTX .link {
  color: #e43f3f;
}
.cid-usH1QV5yTX .mbr-section-title {
  color: #ffffff;
}
.cid-usH1QV5yTX .card-title,
.cid-usH1QV5yTX .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7kfiPnBM3 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t7kfiPnBM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kfiPnBM3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7kfiPnBM3 .mbr-text,
.cid-t7kfiPnBM3 .mbr-section-btn {
  color: #232323;
}
.cid-t7kfiPnBM3 .card-title,
.cid-t7kfiPnBM3 .card-box {
  color: #ffffff;
}
.cid-t7kfiPnBM3 .mbr-text,
.cid-t7kfiPnBM3 .link-wrap {
  color: #ffffff;
}
.cid-t7kfiPKLSs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7kfiPKLSs .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kfiPKLSs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t7kfiPKLSs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7kfiPKLSs .row {
  flex-direction: row-reverse;
}
.cid-t7kfiPKLSs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7kfiPKLSs .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7kfiPKLSs .mbr-text {
  text-align: left;
}
.cid-usH1SxOspY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1SxOspY .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1SxOspY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1SxOspY .link {
  color: #e43f3f;
}
.cid-usH1SxOspY .mbr-section-title {
  color: #ffffff;
}
.cid-usH1SxOspY .card-title,
.cid-usH1SxOspY .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ta47haEE7S {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-ta47haEE7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta47haEE7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ta47haEE7S .mbr-text,
.cid-ta47haEE7S .mbr-section-btn {
  color: #232323;
}
.cid-ta47haEE7S .card-title,
.cid-ta47haEE7S .card-box {
  color: #ffffff;
}
.cid-ta47haEE7S .mbr-text,
.cid-ta47haEE7S .link-wrap {
  color: #ffffff;
}
.cid-ta47haZMeI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ta47haZMeI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta47haZMeI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ta47haZMeI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ta47haZMeI .row {
  flex-direction: row-reverse;
}
.cid-ta47haZMeI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ta47haZMeI .text-wrapper {
    padding: 2rem;
  }
}
.cid-ta47haZMeI .mbr-text {
  text-align: left;
}
.cid-usH1U8lwIS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1U8lwIS .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1U8lwIS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1U8lwIS .link {
  color: #e43f3f;
}
.cid-usH1U8lwIS .mbr-section-title {
  color: #ffffff;
}
.cid-usH1U8lwIS .card-title,
.cid-usH1U8lwIS .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7kgn8F7ab {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t7kgn8F7ab .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kgn8F7ab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7kgn8F7ab .mbr-text,
.cid-t7kgn8F7ab .mbr-section-btn {
  color: #232323;
}
.cid-t7kgn8F7ab .card-title,
.cid-t7kgn8F7ab .card-box {
  color: #ffffff;
}
.cid-t7kgn8F7ab .mbr-text,
.cid-t7kgn8F7ab .link-wrap {
  color: #ffffff;
}
.cid-t7kgn8Vih1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t7kgn8Vih1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kgn8Vih1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t7kgn8Vih1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t7kgn8Vih1 .row {
  flex-direction: row-reverse;
}
.cid-t7kgn8Vih1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t7kgn8Vih1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t7kgn8Vih1 .mbr-text {
  text-align: left;
}
.cid-usH1YxdBfI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1YxdBfI .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1YxdBfI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1YxdBfI .link {
  color: #e43f3f;
}
.cid-usH1YxdBfI .mbr-section-title {
  color: #ffffff;
}
.cid-usH1YxdBfI .card-title,
.cid-usH1YxdBfI .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7kqr9W0g4 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/100-4348-2000x526.jpg");
}
.cid-t7kqr9W0g4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kqr9W0g4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7kqr9W0g4 .mbr-text,
.cid-t7kqr9W0g4 .mbr-section-btn {
  color: #232323;
}
.cid-t7kqr9W0g4 .card-title,
.cid-t7kqr9W0g4 .card-box {
  color: #ffffff;
}
.cid-t7kqr9W0g4 .mbr-text,
.cid-t7kqr9W0g4 .link-wrap {
  color: #ffffff;
}
.cid-t7kqz5G07B {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t7kqz5G07B .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7kqz5G07B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7kqz5G07B .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-t7kqz5G07B .mbr-section-title,
.cid-t7kqz5G07B .mbr-section-subtitle {
  text-align: center;
}
.cid-t7kqz5G07B .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t7kqz5G07B .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-t7kqz5G07B .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t7kqz5G07B .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t7kqz5G07B .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t7kqz5G07B .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t7ktAm5OMi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t7ktAm5OMi .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7ktAm5OMi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7ktAm5OMi .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-t7ktAm5OMi .mbr-section-title,
.cid-t7ktAm5OMi .mbr-section-subtitle {
  text-align: center;
}
.cid-t7ktAm5OMi .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t7ktAm5OMi .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-t7ktAm5OMi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t7ktAm5OMi .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t7ktAm5OMi .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t7ktAm5OMi .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ta3SZJaTED {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ta3SZJaTED .mbr-fallback-image.disabled {
  display: none;
}
.cid-ta3SZJaTED .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ta3SZJaTED .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-ta3SZJaTED .mbr-section-title,
.cid-ta3SZJaTED .mbr-section-subtitle {
  text-align: center;
}
.cid-ta3SZJaTED .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ta3SZJaTED .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-ta3SZJaTED .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ta3SZJaTED .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ta3SZJaTED .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ta3SZJaTED .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHeumgpi9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHeumgpi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHeumgpi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHeumgpi9 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHeumgpi9 .mbr-section-title,
.cid-usHeumgpi9 .mbr-section-subtitle {
  text-align: center;
}
.cid-usHeumgpi9 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHeumgpi9 .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHeumgpi9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHeumgpi9 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHeumgpi9 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHeumgpi9 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHeLAOv5k {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHeLAOv5k .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHeLAOv5k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHeLAOv5k .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHeLAOv5k .mbr-section-title,
.cid-usHeLAOv5k .mbr-section-subtitle {
  text-align: center;
}
.cid-usHeLAOv5k .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHeLAOv5k .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHeLAOv5k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHeLAOv5k .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHeLAOv5k .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHeLAOv5k .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHfeALvDh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHfeALvDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHfeALvDh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHfeALvDh .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHfeALvDh .mbr-section-title,
.cid-usHfeALvDh .mbr-section-subtitle {
  text-align: center;
}
.cid-usHfeALvDh .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHfeALvDh .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHfeALvDh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHfeALvDh .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHfeALvDh .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHfeALvDh .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usH22XtbtA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH22XtbtA .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH22XtbtA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH22XtbtA .link {
  color: #e43f3f;
}
.cid-usH22XtbtA .mbr-section-title {
  color: #ffffff;
}
.cid-usH22XtbtA .card-title,
.cid-usH22XtbtA .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG2DpbVhWV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tG2DpbVhWV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG2DpbVhWV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG2DpbVhWV .mbr-section-title {
  color: #ffffff;
}
.cid-tG2DgomzOT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-tG2DgomzOT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG2DgomzOT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tG2DgomzOT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tG2DgomzOT .row {
  flex-direction: row-reverse;
}
.cid-tG2DgomzOT img {
  width: 100%;
}
.cid-t6KUGHJIYx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t6KUGHJIYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6KUGHJIYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6KUGHJIYx .nav-tabs .nav-item.open .nav-link:focus,
.cid-t6KUGHJIYx .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t6KUGHJIYx .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #e43f3f;
}
@media (max-width: 767px) {
  .cid-t6KUGHJIYx .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-t6KUGHJIYx .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-t6KUGHJIYx .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-t6KUGHJIYx .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-t6KUGHJIYx .nav-link,
.cid-t6KUGHJIYx .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-t6KUGHJIYx .nav-tabs .nav-link.active {
  color: #e43f3f;
  border-bottom: 3px solid #e43f3f;
}
.cid-t6KUGHJIYx H4 {
  text-align: center;
}
.cid-t6KUGHJIYx H3 {
  text-align: center;
  color: #ffffff;
}
.cid-t6KUGHJIYx P {
  color: #bbbbbb;
}
.cid-usH20t8DM3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH20t8DM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH20t8DM3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH20t8DM3 .link {
  color: #e43f3f;
}
.cid-usH20t8DM3 .mbr-section-title {
  color: #ffffff;
}
.cid-usH20t8DM3 .card-title,
.cid-usH20t8DM3 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t6L63N7tDt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-t6L63N7tDt .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6L63N7tDt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-t6L63N7tDt .row {
    flex-direction: column-reverse;
  }
  .cid-t6L63N7tDt .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t6L63N7tDt .google-map {
  height: 100%;
  position: relative;
}
.cid-t6L63N7tDt .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t6L63N7tDt .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t6L63N7tDt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t6L63N7tDt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t6L63N7tDt .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t6L63N7tDt .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #232323;
}
.cid-t6L63N7tDt .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-t6L63N7tDt .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t6L63N7tDt .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t6L63N7tDt .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e43f3f;
}
.cid-t6L63N7tDt .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-t6L63N7tDt .mbr-section-title {
  color: #ffffff;
}
.cid-t6L63N7tDt .card-title {
  color: #ffffff;
}
.cid-t6L63N7tDt P {
  color: #e43f3f;
}
.cid-usH24HUImu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH24HUImu .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH24HUImu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH24HUImu .link {
  color: #e43f3f;
}
.cid-usH24HUImu .mbr-section-title {
  color: #ffffff;
}
.cid-usH24HUImu .card-title,
.cid-usH24HUImu .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t73lQAczE8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-t73lQAczE8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73lQAczE8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t73lQAczE8 .mbr-text,
.cid-t73lQAczE8 .mbr-section-btn {
  color: #232323;
}
.cid-t73lQAczE8 .card-title,
.cid-t73lQAczE8 .card-box {
  color: #ffffff;
}
.cid-t73lQAczE8 .mbr-text,
.cid-t73lQAczE8 .link-wrap {
  color: #ffffff;
}
.cid-t73lQAvLYW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t73lQAvLYW .mbr-fallback-image.disabled {
  display: none;
}
.cid-t73lQAvLYW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t73lQAvLYW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t73lQAvLYW .row {
  flex-direction: row-reverse;
}
.cid-t73lQAvLYW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t73lQAvLYW .text-wrapper {
    padding: 2rem;
  }
}
.cid-t73lQAvLYW .mbr-text {
  text-align: left;
}
.cid-usH1nCXaKm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1nCXaKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1nCXaKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1nCXaKm .link {
  color: #e43f3f;
}
.cid-usH1nCXaKm .mbr-section-title {
  color: #ffffff;
}
.cid-usH1nCXaKm .card-title,
.cid-usH1nCXaKm .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyGpCIuI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyGpCIuI .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyGpCIuI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyGpCIuI .mbr-text,
.cid-useyGpCIuI .mbr-section-btn {
  color: #232323;
}
.cid-useyGpCIuI .card-title,
.cid-useyGpCIuI .card-box {
  color: #ffffff;
}
.cid-useyGpCIuI .mbr-text,
.cid-useyGpCIuI .link-wrap {
  color: #ffffff;
}
.cid-useyGq4d4M {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-useyGq4d4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyGq4d4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyGq4d4M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyGq4d4M .row {
  flex-direction: row-reverse;
}
.cid-useyGq4d4M img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyGq4d4M .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyGq4d4M .mbr-text {
  text-align: left;
}
.cid-usH1NDROqZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1NDROqZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1NDROqZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1NDROqZ .link {
  color: #e43f3f;
}
.cid-usH1NDROqZ .mbr-section-title {
  color: #ffffff;
}
.cid-usH1NDROqZ .card-title,
.cid-usH1NDROqZ .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usexCNyHG5 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usexCNyHG5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usexCNyHG5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usexCNyHG5 .mbr-text,
.cid-usexCNyHG5 .mbr-section-btn {
  color: #232323;
}
.cid-usexCNyHG5 .card-title,
.cid-usexCNyHG5 .card-box {
  color: #ffffff;
}
.cid-usexCNyHG5 .mbr-text,
.cid-usexCNyHG5 .link-wrap {
  color: #ffffff;
}
.cid-uSUSsnXfsK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uSUSsnXfsK img,
.cid-uSUSsnXfsK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uSUSsnXfsK .item:focus,
.cid-uSUSsnXfsK span:focus {
  outline: none;
}
.cid-uSUSsnXfsK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSUSsnXfsK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSUSsnXfsK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSUSsnXfsK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSUSsnXfsK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSUSsnXfsK .mbr-section-title {
  color: #ffffff;
}
.cid-uSUSsnXfsK .mbr-text,
.cid-uSUSsnXfsK .mbr-section-btn {
  text-align: left;
}
.cid-uSUSsnXfsK .item-title {
  text-align: left;
}
.cid-uSUSsnXfsK .item-subtitle {
  text-align: center;
}
.cid-uSUSsnXfsK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usH1p9QrWI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1p9QrWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1p9QrWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1p9QrWI .link {
  color: #e43f3f;
}
.cid-usH1p9QrWI .mbr-section-title {
  color: #ffffff;
}
.cid-usH1p9QrWI .card-title,
.cid-usH1p9QrWI .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyYItYMQ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyYItYMQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyYItYMQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyYItYMQ .mbr-text,
.cid-useyYItYMQ .mbr-section-btn {
  color: #232323;
}
.cid-useyYItYMQ .card-title,
.cid-useyYItYMQ .card-box {
  color: #ffffff;
}
.cid-useyYItYMQ .mbr-text,
.cid-useyYItYMQ .link-wrap {
  color: #ffffff;
}
.cid-useyYIOKJS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-useyYIOKJS .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyYIOKJS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyYIOKJS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyYIOKJS .row {
  flex-direction: row-reverse;
}
.cid-useyYIOKJS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyYIOKJS .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyYIOKJS .mbr-text {
  text-align: left;
}
.cid-usH1r7BPt2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1r7BPt2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1r7BPt2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1r7BPt2 .link {
  color: #e43f3f;
}
.cid-usH1r7BPt2 .mbr-section-title {
  color: #ffffff;
}
.cid-usH1r7BPt2 .card-title,
.cid-usH1r7BPt2 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyXaMML9 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyXaMML9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyXaMML9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyXaMML9 .mbr-text,
.cid-useyXaMML9 .mbr-section-btn {
  color: #232323;
}
.cid-useyXaMML9 .card-title,
.cid-useyXaMML9 .card-box {
  color: #ffffff;
}
.cid-useyXaMML9 .mbr-text,
.cid-useyXaMML9 .link-wrap {
  color: #ffffff;
}
.cid-useyXb8aYv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-useyXb8aYv .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyXb8aYv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyXb8aYv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyXb8aYv .row {
  flex-direction: row-reverse;
}
.cid-useyXb8aYv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyXb8aYv .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyXb8aYv .mbr-text {
  text-align: left;
}
.cid-usH1tJZuRN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1tJZuRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1tJZuRN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1tJZuRN .link {
  color: #e43f3f;
}
.cid-usH1tJZuRN .mbr-section-title {
  color: #ffffff;
}
.cid-usH1tJZuRN .card-title,
.cid-usH1tJZuRN .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyWnX2w9 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyWnX2w9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyWnX2w9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyWnX2w9 .mbr-text,
.cid-useyWnX2w9 .mbr-section-btn {
  color: #232323;
}
.cid-useyWnX2w9 .card-title,
.cid-useyWnX2w9 .card-box {
  color: #ffffff;
}
.cid-useyWnX2w9 .mbr-text,
.cid-useyWnX2w9 .link-wrap {
  color: #ffffff;
}
.cid-useyWoilBz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-useyWoilBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyWoilBz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyWoilBz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyWoilBz .row {
  flex-direction: row-reverse;
}
.cid-useyWoilBz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyWoilBz .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyWoilBz .mbr-text {
  text-align: left;
}
.cid-usH1w9pEP3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1w9pEP3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1w9pEP3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1w9pEP3 .link {
  color: #e43f3f;
}
.cid-usH1w9pEP3 .mbr-section-title {
  color: #ffffff;
}
.cid-usH1w9pEP3 .card-title,
.cid-usH1w9pEP3 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyTqmEpS {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyTqmEpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyTqmEpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyTqmEpS .mbr-text,
.cid-useyTqmEpS .mbr-section-btn {
  color: #232323;
}
.cid-useyTqmEpS .card-title,
.cid-useyTqmEpS .card-box {
  color: #ffffff;
}
.cid-useyTqmEpS .mbr-text,
.cid-useyTqmEpS .link-wrap {
  color: #ffffff;
}
.cid-useyTqGmyM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-useyTqGmyM .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyTqGmyM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyTqGmyM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyTqGmyM .row {
  flex-direction: row-reverse;
}
.cid-useyTqGmyM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyTqGmyM .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyTqGmyM .mbr-text {
  text-align: left;
}
.cid-usH1xXwkhT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1xXwkhT .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1xXwkhT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1xXwkhT .link {
  color: #e43f3f;
}
.cid-usH1xXwkhT .mbr-section-title {
  color: #ffffff;
}
.cid-usH1xXwkhT .card-title,
.cid-usH1xXwkhT .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useySKYMAD {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useySKYMAD .mbr-fallback-image.disabled {
  display: none;
}
.cid-useySKYMAD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useySKYMAD .mbr-text,
.cid-useySKYMAD .mbr-section-btn {
  color: #232323;
}
.cid-useySKYMAD .card-title,
.cid-useySKYMAD .card-box {
  color: #ffffff;
}
.cid-useySKYMAD .mbr-text,
.cid-useySKYMAD .link-wrap {
  color: #ffffff;
}
.cid-useySLgSCg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-useySLgSCg .mbr-fallback-image.disabled {
  display: none;
}
.cid-useySLgSCg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useySLgSCg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useySLgSCg .row {
  flex-direction: row-reverse;
}
.cid-useySLgSCg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useySLgSCg .text-wrapper {
    padding: 2rem;
  }
}
.cid-useySLgSCg .mbr-text {
  text-align: left;
}
.cid-usH1AfU4eN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1AfU4eN .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1AfU4eN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1AfU4eN .link {
  color: #e43f3f;
}
.cid-usH1AfU4eN .mbr-section-title {
  color: #ffffff;
}
.cid-usH1AfU4eN .card-title,
.cid-usH1AfU4eN .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyS66JjJ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyS66JjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyS66JjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyS66JjJ .mbr-text,
.cid-useyS66JjJ .mbr-section-btn {
  color: #232323;
}
.cid-useyS66JjJ .card-title,
.cid-useyS66JjJ .card-box {
  color: #ffffff;
}
.cid-useyS66JjJ .mbr-text,
.cid-useyS66JjJ .link-wrap {
  color: #ffffff;
}
.cid-useyS6oej5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-useyS6oej5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyS6oej5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyS6oej5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyS6oej5 .row {
  flex-direction: row-reverse;
}
.cid-useyS6oej5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyS6oej5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyS6oej5 .mbr-text {
  text-align: left;
}
.cid-usH1ChwbJW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1ChwbJW .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1ChwbJW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1ChwbJW .link {
  color: #e43f3f;
}
.cid-usH1ChwbJW .mbr-section-title {
  color: #ffffff;
}
.cid-usH1ChwbJW .card-title,
.cid-usH1ChwbJW .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyRrkAc1 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyRrkAc1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyRrkAc1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyRrkAc1 .mbr-text,
.cid-useyRrkAc1 .mbr-section-btn {
  color: #232323;
}
.cid-useyRrkAc1 .card-title,
.cid-useyRrkAc1 .card-box {
  color: #ffffff;
}
.cid-useyRrkAc1 .mbr-text,
.cid-useyRrkAc1 .link-wrap {
  color: #ffffff;
}
.cid-useyRrJnda {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-useyRrJnda .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyRrJnda .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyRrJnda .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyRrJnda .row {
  flex-direction: row-reverse;
}
.cid-useyRrJnda img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyRrJnda .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyRrJnda .mbr-text {
  text-align: left;
}
.cid-usH1DRVjvH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1DRVjvH .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1DRVjvH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1DRVjvH .link {
  color: #e43f3f;
}
.cid-usH1DRVjvH .mbr-section-title {
  color: #ffffff;
}
.cid-usH1DRVjvH .card-title,
.cid-usH1DRVjvH .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyQMH0Qe {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyQMH0Qe .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyQMH0Qe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyQMH0Qe .mbr-text,
.cid-useyQMH0Qe .mbr-section-btn {
  color: #232323;
}
.cid-useyQMH0Qe .card-title,
.cid-useyQMH0Qe .card-box {
  color: #ffffff;
}
.cid-useyQMH0Qe .mbr-text,
.cid-useyQMH0Qe .link-wrap {
  color: #ffffff;
}
.cid-useyQN3quG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-useyQN3quG .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyQN3quG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyQN3quG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyQN3quG .row {
  flex-direction: row-reverse;
}
.cid-useyQN3quG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyQN3quG .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyQN3quG .mbr-text {
  text-align: left;
}
.cid-usH1JaUS38 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1JaUS38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1JaUS38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1JaUS38 .link {
  color: #e43f3f;
}
.cid-usH1JaUS38 .mbr-section-title {
  color: #ffffff;
}
.cid-usH1JaUS38 .card-title,
.cid-usH1JaUS38 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-useyPylJzf {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-useyPylJzf .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyPylJzf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-useyPylJzf .mbr-text,
.cid-useyPylJzf .mbr-section-btn {
  color: #232323;
}
.cid-useyPylJzf .card-title,
.cid-useyPylJzf .card-box {
  color: #ffffff;
}
.cid-useyPylJzf .mbr-text,
.cid-useyPylJzf .link-wrap {
  color: #ffffff;
}
.cid-useyPyGp0p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-useyPyGp0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-useyPyGp0p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-useyPyGp0p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-useyPyGp0p .row {
  flex-direction: row-reverse;
}
.cid-useyPyGp0p img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-useyPyGp0p .text-wrapper {
    padding: 2rem;
  }
}
.cid-useyPyGp0p .mbr-text {
  text-align: left;
}
.cid-usH1LVnb6I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usH1LVnb6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-usH1LVnb6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usH1LVnb6I .link {
  color: #e43f3f;
}
.cid-usH1LVnb6I .mbr-section-title {
  color: #ffffff;
}
.cid-usH1LVnb6I .card-title,
.cid-usH1LVnb6I .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uF3e89wl2C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uF3e89wl2C nav.navbar {
  position: fixed;
}
.cid-uF3e89wl2C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uF3e89wl2C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uF3e89wl2C .dropdown-item:hover,
.cid-uF3e89wl2C .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uF3e89wl2C .dropdown-item:hover span {
  color: white;
}
.cid-uF3e89wl2C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uF3e89wl2C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uF3e89wl2C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uF3e89wl2C .nav-link {
  position: relative;
}
.cid-uF3e89wl2C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .container {
    flex-wrap: nowrap;
  }
}
.cid-uF3e89wl2C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown-menu,
.cid-uF3e89wl2C .navbar.opened {
  background: #000000 !important;
}
.cid-uF3e89wl2C .nav-item:focus,
.cid-uF3e89wl2C .nav-link:focus {
  outline: none;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uF3e89wl2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uF3e89wl2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uF3e89wl2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uF3e89wl2C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uF3e89wl2C .navbar.opened {
  transition: all 0.3s;
}
.cid-uF3e89wl2C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uF3e89wl2C .navbar .navbar-logo img {
  width: auto;
}
.cid-uF3e89wl2C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar.collapsed {
  justify-content: center;
}
.cid-uF3e89wl2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uF3e89wl2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uF3e89wl2C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uF3e89wl2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uF3e89wl2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uF3e89wl2C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uF3e89wl2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uF3e89wl2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uF3e89wl2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uF3e89wl2C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uF3e89wl2C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uF3e89wl2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uF3e89wl2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uF3e89wl2C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uF3e89wl2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uF3e89wl2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uF3e89wl2C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uF3e89wl2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uF3e89wl2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uF3e89wl2C .dropdown-item.active,
.cid-uF3e89wl2C .dropdown-item:active {
  background-color: transparent;
}
.cid-uF3e89wl2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uF3e89wl2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uF3e89wl2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uF3e89wl2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uF3e89wl2C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uF3e89wl2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uF3e89wl2C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uF3e89wl2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uF3e89wl2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uF3e89wl2C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uF3e89wl2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uF3e89wl2C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uF3e89wl2C .navbar {
    height: 70px;
  }
  .cid-uF3e89wl2C .navbar.opened {
    height: auto;
  }
  .cid-uF3e89wl2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-t5s0SfLtWr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-t5s0SfLtWr img,
.cid-t5s0SfLtWr .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t5s0SfLtWr .item:focus,
.cid-t5s0SfLtWr span:focus {
  outline: none;
}
.cid-t5s0SfLtWr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t5s0SfLtWr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t5s0SfLtWr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t5s0SfLtWr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t5s0SfLtWr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t5s0SfLtWr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t5s0SfLtWr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t5s0SfLtWr .mbr-section-title {
  color: #ffffff;
}
.cid-t5s0SfLtWr .mbr-text,
.cid-t5s0SfLtWr .mbr-section-btn {
  text-align: left;
}
.cid-t5s0SfLtWr .item-title {
  text-align: left;
}
.cid-t5s0SfLtWr .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t5s0SfLtWr .mbr-section-subtitle {
  color: #fafafa;
}
.cid-t5s4BNpVjH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-20210124-145547-2000x2674.jpeg");
}
.cid-t5s4BNpVjH .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5s4BNpVjH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-t5s4BNpVjH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t5s4BNpVjH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t5s4BNpVjH .text-wrapper {
    padding: 2rem;
  }
}
.cid-t5s4BNpVjH .mbr-section-title {
  color: #ffffff;
}
.cid-t5s4BNpVjH .mbr-text {
  color: #fafafa;
}
.cid-uSg1gJhtRG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uSg1gJhtRG img,
.cid-uSg1gJhtRG .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uSg1gJhtRG .item:focus,
.cid-uSg1gJhtRG span:focus {
  outline: none;
}
.cid-uSg1gJhtRG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSg1gJhtRG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSg1gJhtRG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSg1gJhtRG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSg1gJhtRG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSg1gJhtRG .mbr-section-title {
  color: #ffffff;
}
.cid-uSg1gJhtRG .mbr-text,
.cid-uSg1gJhtRG .mbr-section-btn {
  text-align: left;
}
.cid-uSg1gJhtRG .item-title {
  text-align: left;
}
.cid-uSg1gJhtRG .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uSg1gJhtRG .mbr-section-subtitle {
  color: #fafafa;
}
.cid-t5418L5hyw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5418L5hyw img {
  width: 120px;
  margin: auto;
}
.cid-t5418L5hyw .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t5418L5hyw .card {
    max-width: 12.5%;
  }
}
.cid-t5rPbo6NjH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5rPbo6NjH img {
  width: 120px;
  margin: auto;
}
.cid-t5rPbo6NjH .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t5rPbo6NjH .card {
    max-width: 12.5%;
  }
}
.cid-t5rTutJwST {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5rTutJwST img {
  width: 120px;
  margin: auto;
}
.cid-t5rTutJwST .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t5rTutJwST .card {
    max-width: 12.5%;
  }
}
.cid-t5J1OqLdVp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t5J1OqLdVp img {
  width: 120px;
  margin: auto;
}
.cid-t5J1OqLdVp .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t5J1OqLdVp .card {
    max-width: 12.5%;
  }
}
.cid-usvikfpGGn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usvikfpGGn img {
  width: 120px;
  margin: auto;
}
.cid-usvikfpGGn .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-usvikfpGGn .card {
    max-width: 12.5%;
  }
}
.cid-uF45rODVc0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uF45rODVc0 img {
  width: 120px;
  margin: auto;
}
.cid-uF45rODVc0 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uF45rODVc0 .card {
    max-width: 12.5%;
  }
}
.cid-urRupez3aG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-urRupez3aG .mbr-fallback-image.disabled {
  display: none;
}
.cid-urRupez3aG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urRupez3aG .link {
  color: #e43f3f;
}
.cid-urRupez3aG .mbr-section-title {
  color: #ffffff;
}
.cid-urRupez3aG .card-title,
.cid-urRupez3aG .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagtYE3Xkr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagtYE3Xkr nav.navbar {
  position: fixed;
}
.cid-vagtYE3Xkr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagtYE3Xkr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagtYE3Xkr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagtYE3Xkr .dropdown-item:hover,
.cid-vagtYE3Xkr .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagtYE3Xkr .dropdown-item:hover span {
  color: white;
}
.cid-vagtYE3Xkr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagtYE3Xkr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagtYE3Xkr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagtYE3Xkr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagtYE3Xkr .nav-link {
  position: relative;
}
.cid-vagtYE3Xkr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagtYE3Xkr .container {
    flex-wrap: nowrap;
  }
}
.cid-vagtYE3Xkr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagtYE3Xkr .dropdown-menu,
.cid-vagtYE3Xkr .navbar.opened {
  background: #000000 !important;
}
.cid-vagtYE3Xkr .nav-item:focus,
.cid-vagtYE3Xkr .nav-link:focus {
  outline: none;
}
.cid-vagtYE3Xkr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagtYE3Xkr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagtYE3Xkr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagtYE3Xkr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagtYE3Xkr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagtYE3Xkr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagtYE3Xkr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagtYE3Xkr .navbar.opened {
  transition: all 0.3s;
}
.cid-vagtYE3Xkr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagtYE3Xkr .navbar .navbar-logo img {
  width: auto;
}
.cid-vagtYE3Xkr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagtYE3Xkr .navbar.collapsed {
  justify-content: center;
}
.cid-vagtYE3Xkr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagtYE3Xkr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagtYE3Xkr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagtYE3Xkr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagtYE3Xkr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagtYE3Xkr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagtYE3Xkr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagtYE3Xkr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagtYE3Xkr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagtYE3Xkr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagtYE3Xkr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagtYE3Xkr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagtYE3Xkr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagtYE3Xkr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagtYE3Xkr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagtYE3Xkr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagtYE3Xkr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagtYE3Xkr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagtYE3Xkr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagtYE3Xkr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagtYE3Xkr .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagtYE3Xkr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagtYE3Xkr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagtYE3Xkr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagtYE3Xkr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagtYE3Xkr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagtYE3Xkr .dropdown-item.active,
.cid-vagtYE3Xkr .dropdown-item:active {
  background-color: transparent;
}
.cid-vagtYE3Xkr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagtYE3Xkr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagtYE3Xkr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagtYE3Xkr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagtYE3Xkr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagtYE3Xkr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagtYE3Xkr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagtYE3Xkr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagtYE3Xkr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagtYE3Xkr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagtYE3Xkr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagtYE3Xkr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagtYE3Xkr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagtYE3Xkr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagtYE3Xkr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagtYE3Xkr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagtYE3Xkr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagtYE3Xkr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagtYE3Xkr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagtYE3Xkr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagtYE3Xkr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagtYE3Xkr .navbar {
    height: 70px;
  }
  .cid-vagtYE3Xkr .navbar.opened {
    height: auto;
  }
  .cid-vagtYE3Xkr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHG9OsjNp .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-usHG9OsjNp .mbr-text,
.cid-usHG9OsjNp .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-usHG9OsjNp .mbr-section-title,
  .cid-usHG9OsjNp .mbr-section-btn,
  .cid-usHG9OsjNp .mbr-text {
    text-align: center;
  }
}
.cid-usHG9P0Jxe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-usHG9P0Jxe img,
.cid-usHG9P0Jxe .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-usHG9P0Jxe .item:focus,
.cid-usHG9P0Jxe span:focus {
  outline: none;
}
.cid-usHG9P0Jxe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-usHG9P0Jxe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-usHG9P0Jxe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-usHG9P0Jxe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usHG9P0Jxe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-usHG9P0Jxe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-usHG9P0Jxe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usHG9P0Jxe .mbr-section-title {
  color: #ffffff;
}
.cid-usHG9P0Jxe .mbr-text,
.cid-usHG9P0Jxe .mbr-section-btn {
  text-align: left;
}
.cid-usHG9P0Jxe .item-title {
  text-align: left;
}
.cid-usHG9P0Jxe .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-usHG9P0Jxe .mbr-section-subtitle {
  color: #fafafa;
}
.cid-usHG9Q4XYy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-20210124-145547-2000x2674.jpeg");
}
.cid-usHG9Q4XYy .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHG9Q4XYy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHG9Q4XYy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHG9Q4XYy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHG9Q4XYy .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHG9Q4XYy .mbr-section-title {
  color: #ffffff;
}
.cid-usHG9Q4XYy .mbr-text {
  color: #fafafa;
}
.cid-uSgx1Igsj7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uSgx1Igsj7 img,
.cid-uSgx1Igsj7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uSgx1Igsj7 .item:focus,
.cid-uSgx1Igsj7 span:focus {
  outline: none;
}
.cid-uSgx1Igsj7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSgx1Igsj7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSgx1Igsj7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSgx1Igsj7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSgx1Igsj7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSgx1Igsj7 .mbr-section-title {
  color: #ffffff;
}
.cid-uSgx1Igsj7 .mbr-text,
.cid-uSgx1Igsj7 .mbr-section-btn {
  text-align: left;
}
.cid-uSgx1Igsj7 .item-title {
  text-align: left;
}
.cid-uSgx1Igsj7 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uSgx1Igsj7 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-usHG9QAug0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHG9QAug0 img {
  width: 120px;
  margin: auto;
}
.cid-usHG9QAug0 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-usHG9QAug0 .card {
    max-width: 12.5%;
  }
}
.cid-usHG9QYjp5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHG9QYjp5 img {
  width: 120px;
  margin: auto;
}
.cid-usHG9QYjp5 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-usHG9QYjp5 .card {
    max-width: 12.5%;
  }
}
.cid-usHG9RnefE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHG9RnefE img {
  width: 120px;
  margin: auto;
}
.cid-usHG9RnefE .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-usHG9RnefE .card {
    max-width: 12.5%;
  }
}
.cid-usHG9RIVEb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHG9RIVEb img {
  width: 120px;
  margin: auto;
}
.cid-usHG9RIVEb .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-usHG9RIVEb .card {
    max-width: 12.5%;
  }
}
.cid-usHG9S2iel {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHG9S2iel img {
  width: 120px;
  margin: auto;
}
.cid-usHG9S2iel .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-usHG9S2iel .card {
    max-width: 12.5%;
  }
}
.cid-uN52CzHpaX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uN52CzHpaX img {
  width: 120px;
  margin: auto;
}
.cid-uN52CzHpaX .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uN52CzHpaX .card {
    max-width: 12.5%;
  }
}
.cid-usHG9SkiMw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usHG9SkiMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHG9SkiMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHG9SkiMw .link {
  color: #e43f3f;
}
.cid-usHG9SkiMw .mbr-section-title {
  color: #ffffff;
}
.cid-usHG9SkiMw .card-title,
.cid-usHG9SkiMw .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagu1y6OMI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagu1y6OMI nav.navbar {
  position: fixed;
}
.cid-vagu1y6OMI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu1y6OMI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagu1y6OMI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagu1y6OMI .dropdown-item:hover,
.cid-vagu1y6OMI .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagu1y6OMI .dropdown-item:hover span {
  color: white;
}
.cid-vagu1y6OMI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagu1y6OMI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagu1y6OMI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagu1y6OMI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagu1y6OMI .nav-link {
  position: relative;
}
.cid-vagu1y6OMI .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagu1y6OMI .container {
    flex-wrap: nowrap;
  }
}
.cid-vagu1y6OMI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagu1y6OMI .dropdown-menu,
.cid-vagu1y6OMI .navbar.opened {
  background: #000000 !important;
}
.cid-vagu1y6OMI .nav-item:focus,
.cid-vagu1y6OMI .nav-link:focus {
  outline: none;
}
.cid-vagu1y6OMI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagu1y6OMI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagu1y6OMI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagu1y6OMI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu1y6OMI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagu1y6OMI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagu1y6OMI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagu1y6OMI .navbar.opened {
  transition: all 0.3s;
}
.cid-vagu1y6OMI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagu1y6OMI .navbar .navbar-logo img {
  width: auto;
}
.cid-vagu1y6OMI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagu1y6OMI .navbar.collapsed {
  justify-content: center;
}
.cid-vagu1y6OMI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagu1y6OMI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagu1y6OMI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagu1y6OMI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagu1y6OMI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagu1y6OMI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagu1y6OMI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagu1y6OMI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagu1y6OMI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagu1y6OMI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagu1y6OMI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagu1y6OMI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagu1y6OMI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagu1y6OMI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagu1y6OMI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagu1y6OMI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagu1y6OMI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagu1y6OMI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagu1y6OMI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagu1y6OMI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagu1y6OMI .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagu1y6OMI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagu1y6OMI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagu1y6OMI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagu1y6OMI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagu1y6OMI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagu1y6OMI .dropdown-item.active,
.cid-vagu1y6OMI .dropdown-item:active {
  background-color: transparent;
}
.cid-vagu1y6OMI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagu1y6OMI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagu1y6OMI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagu1y6OMI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagu1y6OMI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagu1y6OMI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagu1y6OMI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagu1y6OMI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagu1y6OMI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagu1y6OMI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagu1y6OMI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagu1y6OMI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu1y6OMI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu1y6OMI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagu1y6OMI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu1y6OMI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagu1y6OMI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagu1y6OMI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu1y6OMI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagu1y6OMI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagu1y6OMI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagu1y6OMI .navbar {
    height: 70px;
  }
  .cid-vagu1y6OMI .navbar.opened {
    height: auto;
  }
  .cid-vagu1y6OMI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGfF3Z24 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/100-4344-2000x1500.jpg");
}
.cid-usHGfF3Z24 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGfF3Z24 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGfF3Z24 .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-usHGfF3Z24 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-usHGfF3Z24 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHGfF3Z24 .card-wrapper {
    padding: 4rem;
  }
}
.cid-usHGfF3Z24 .mbr-text,
.cid-usHGfF3Z24 .mbr-section-btn {
  color: #fafafa;
}
.cid-usHGfF3Z24 .card-title {
  color: #ffffff;
}
.cid-usHGfFvhq2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-usHGfFvhq2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGfFvhq2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGfFvhq2 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e43f3f;
  margin-left: 1rem;
}
.cid-usHGfFvhq2 .panel-group {
  border: none;
}
.cid-usHGfFvhq2 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-usHGfFvhq2 .panel-body,
.cid-usHGfFvhq2 .card-header {
  padding: 1rem 0;
}
.cid-usHGfFvhq2 .panel-title-edit {
  color: #ffffff;
}
.cid-usHGfFvhq2 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-usHGfFvhq2 .panel-text {
  color: #bbbbbb;
}
.cid-usHGfG6LhX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagen-de-whatsapp-2025-03-21-a-las-19.41.12-bc677919.jpg-1600x1199.jpg");
}
.cid-usHGfG6LhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGfG6LhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGfG6LhX .card-title,
.cid-usHGfG6LhX .card-box {
  color: #ffffff;
}
.cid-usHGfGBGTc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHGfGBGTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGfGBGTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGfGBGTc ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-usHGfGBGTc li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-usHGfGBGTc ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #e43f3f;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-usHGfGBGTc H3 {
  color: #ffffff;
}
.cid-usHGfGBGTc .list {
  color: #fafafa;
  text-align: left;
}
.cid-usHGfGWMRh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-usHGfGWMRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGfGWMRh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGfGWMRh .item {
  padding-bottom: 2rem;
}
.cid-usHGfGWMRh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGfGWMRh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGfGWMRh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGfGWMRh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGfGWMRh .carousel-control,
.cid-usHGfGWMRh .close {
  background: #1b1b1b;
}
.cid-usHGfGWMRh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGfGWMRh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGfGWMRh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGfGWMRh .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGfGWMRh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGfGWMRh .close::before {
  content: '\e91a';
}
.cid-usHGfGWMRh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGfGWMRh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGfGWMRh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGfGWMRh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGfGWMRh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGfGWMRh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGfGWMRh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGfGWMRh .carousel-indicators li.active,
.cid-usHGfGWMRh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGfGWMRh .carousel-indicators li::after,
.cid-usHGfGWMRh .carousel-indicators li::before {
  content: none;
}
.cid-usHGfGWMRh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGfGWMRh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGfGWMRh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGfGWMRh .carousel-indicators {
    display: none;
  }
}
.cid-usHGfGWMRh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGfGWMRh .carousel-inner > .active {
  display: block;
}
.cid-usHGfGWMRh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGfGWMRh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGfGWMRh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGfGWMRh .carousel-control,
  .cid-usHGfGWMRh .carousel-indicators,
  .cid-usHGfGWMRh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGfGWMRh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGfGWMRh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGfGWMRh .carousel-indicators .active,
.cid-usHGfGWMRh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGfGWMRh .carousel-indicators .active {
  background: #fff;
}
.cid-usHGfGWMRh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGfGWMRh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGfGWMRh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGfGWMRh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGfGWMRh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGfGWMRh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGfGWMRh .carousel {
  width: 100%;
}
.cid-usHGfGWMRh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGfGWMRh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGfGWMRh .modal.fade .modal-dialog,
.cid-usHGfGWMRh .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGfGWMRh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGfGWMRh H6 {
  text-align: center;
}
.cid-usHGfGWMRh H3 {
  color: #ffffff;
}
.cid-usHGfHBMFc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-usHGfHBMFc .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGfHBMFc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGfHBMFc .item {
  padding-bottom: 2rem;
}
.cid-usHGfHBMFc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGfHBMFc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGfHBMFc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGfHBMFc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGfHBMFc .carousel-control,
.cid-usHGfHBMFc .close {
  background: #1b1b1b;
}
.cid-usHGfHBMFc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGfHBMFc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGfHBMFc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGfHBMFc .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGfHBMFc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGfHBMFc .close::before {
  content: '\e91a';
}
.cid-usHGfHBMFc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGfHBMFc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGfHBMFc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGfHBMFc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGfHBMFc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGfHBMFc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGfHBMFc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGfHBMFc .carousel-indicators li.active,
.cid-usHGfHBMFc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGfHBMFc .carousel-indicators li::after,
.cid-usHGfHBMFc .carousel-indicators li::before {
  content: none;
}
.cid-usHGfHBMFc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGfHBMFc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGfHBMFc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGfHBMFc .carousel-indicators {
    display: none;
  }
}
.cid-usHGfHBMFc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGfHBMFc .carousel-inner > .active {
  display: block;
}
.cid-usHGfHBMFc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGfHBMFc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGfHBMFc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGfHBMFc .carousel-control,
  .cid-usHGfHBMFc .carousel-indicators,
  .cid-usHGfHBMFc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGfHBMFc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGfHBMFc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGfHBMFc .carousel-indicators .active,
.cid-usHGfHBMFc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGfHBMFc .carousel-indicators .active {
  background: #fff;
}
.cid-usHGfHBMFc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGfHBMFc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGfHBMFc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGfHBMFc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGfHBMFc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGfHBMFc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGfHBMFc .carousel {
  width: 100%;
}
.cid-usHGfHBMFc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGfHBMFc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGfHBMFc .modal.fade .modal-dialog,
.cid-usHGfHBMFc .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGfHBMFc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGfHBMFc H6 {
  text-align: center;
}
.cid-uSlr6FP6GJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlr6FP6GJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlr6FP6GJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlr6FP6GJ .link {
  color: #e43f3f;
}
.cid-uSlr6FP6GJ .mbr-section-title {
  color: #ffffff;
}
.cid-uSlr6FP6GJ .card-title,
.cid-uSlr6FP6GJ .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagu3zDXUx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagu3zDXUx nav.navbar {
  position: fixed;
}
.cid-vagu3zDXUx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu3zDXUx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagu3zDXUx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagu3zDXUx .dropdown-item:hover,
.cid-vagu3zDXUx .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagu3zDXUx .dropdown-item:hover span {
  color: white;
}
.cid-vagu3zDXUx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagu3zDXUx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagu3zDXUx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagu3zDXUx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagu3zDXUx .nav-link {
  position: relative;
}
.cid-vagu3zDXUx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagu3zDXUx .container {
    flex-wrap: nowrap;
  }
}
.cid-vagu3zDXUx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagu3zDXUx .dropdown-menu,
.cid-vagu3zDXUx .navbar.opened {
  background: #000000 !important;
}
.cid-vagu3zDXUx .nav-item:focus,
.cid-vagu3zDXUx .nav-link:focus {
  outline: none;
}
.cid-vagu3zDXUx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagu3zDXUx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagu3zDXUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagu3zDXUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu3zDXUx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagu3zDXUx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagu3zDXUx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagu3zDXUx .navbar.opened {
  transition: all 0.3s;
}
.cid-vagu3zDXUx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagu3zDXUx .navbar .navbar-logo img {
  width: auto;
}
.cid-vagu3zDXUx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagu3zDXUx .navbar.collapsed {
  justify-content: center;
}
.cid-vagu3zDXUx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagu3zDXUx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagu3zDXUx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagu3zDXUx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagu3zDXUx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagu3zDXUx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagu3zDXUx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagu3zDXUx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagu3zDXUx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagu3zDXUx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagu3zDXUx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagu3zDXUx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagu3zDXUx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagu3zDXUx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagu3zDXUx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagu3zDXUx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagu3zDXUx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagu3zDXUx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagu3zDXUx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagu3zDXUx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagu3zDXUx .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagu3zDXUx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagu3zDXUx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagu3zDXUx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagu3zDXUx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagu3zDXUx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagu3zDXUx .dropdown-item.active,
.cid-vagu3zDXUx .dropdown-item:active {
  background-color: transparent;
}
.cid-vagu3zDXUx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagu3zDXUx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagu3zDXUx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagu3zDXUx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagu3zDXUx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagu3zDXUx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagu3zDXUx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagu3zDXUx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagu3zDXUx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagu3zDXUx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagu3zDXUx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagu3zDXUx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu3zDXUx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu3zDXUx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagu3zDXUx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu3zDXUx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagu3zDXUx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagu3zDXUx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu3zDXUx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagu3zDXUx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagu3zDXUx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagu3zDXUx .navbar {
    height: 70px;
  }
  .cid-vagu3zDXUx .navbar.opened {
    height: auto;
  }
  .cid-vagu3zDXUx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGjhGOpJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-usHGjhGOpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGjhGOpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGjhGOpJ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-usHGjhGOpJ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-usHGjhGOpJ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #e43f3f;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-usHGjhGOpJ .list {
  color: #ffffff;
  text-align: left;
}
.cid-usHGjhGOpJ H3 {
  color: #ffffff;
}
.cid-usHGji3Pir {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-usHGji3Pir .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGji3Pir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGji3Pir .item {
  padding-bottom: 2rem;
}
.cid-usHGji3Pir .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGji3Pir .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGji3Pir .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGji3Pir .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGji3Pir .carousel-control,
.cid-usHGji3Pir .close {
  background: #1b1b1b;
}
.cid-usHGji3Pir .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGji3Pir .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGji3Pir .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGji3Pir .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGji3Pir .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGji3Pir .close::before {
  content: '\e91a';
}
.cid-usHGji3Pir .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGji3Pir .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGji3Pir .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGji3Pir .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGji3Pir .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGji3Pir .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGji3Pir .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGji3Pir .carousel-indicators li.active,
.cid-usHGji3Pir .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGji3Pir .carousel-indicators li::after,
.cid-usHGji3Pir .carousel-indicators li::before {
  content: none;
}
.cid-usHGji3Pir .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGji3Pir .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGji3Pir .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGji3Pir .carousel-indicators {
    display: none;
  }
}
.cid-usHGji3Pir .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGji3Pir .carousel-inner > .active {
  display: block;
}
.cid-usHGji3Pir .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGji3Pir .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGji3Pir .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGji3Pir .carousel-control,
  .cid-usHGji3Pir .carousel-indicators,
  .cid-usHGji3Pir .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGji3Pir .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGji3Pir .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGji3Pir .carousel-indicators .active,
.cid-usHGji3Pir .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGji3Pir .carousel-indicators .active {
  background: #fff;
}
.cid-usHGji3Pir .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGji3Pir .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGji3Pir .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGji3Pir .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGji3Pir .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGji3Pir .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGji3Pir .carousel {
  width: 100%;
}
.cid-usHGji3Pir .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGji3Pir .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGji3Pir .modal.fade .modal-dialog,
.cid-usHGji3Pir .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGji3Pir .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGji3Pir H6 {
  text-align: center;
}
.cid-usHGji3Pir H3 {
  color: #ffffff;
}
.cid-usHGjiM4if {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-usHGjiM4if .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGjiM4if .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGjiM4if .item {
  padding-bottom: 2rem;
}
.cid-usHGjiM4if .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGjiM4if .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGjiM4if .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGjiM4if .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGjiM4if .carousel-control,
.cid-usHGjiM4if .close {
  background: #1b1b1b;
}
.cid-usHGjiM4if .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGjiM4if .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGjiM4if .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGjiM4if .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGjiM4if .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGjiM4if .close::before {
  content: '\e91a';
}
.cid-usHGjiM4if .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGjiM4if .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGjiM4if .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGjiM4if .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGjiM4if .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGjiM4if .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGjiM4if .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGjiM4if .carousel-indicators li.active,
.cid-usHGjiM4if .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGjiM4if .carousel-indicators li::after,
.cid-usHGjiM4if .carousel-indicators li::before {
  content: none;
}
.cid-usHGjiM4if .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGjiM4if .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGjiM4if .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGjiM4if .carousel-indicators {
    display: none;
  }
}
.cid-usHGjiM4if .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGjiM4if .carousel-inner > .active {
  display: block;
}
.cid-usHGjiM4if .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGjiM4if .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGjiM4if .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGjiM4if .carousel-control,
  .cid-usHGjiM4if .carousel-indicators,
  .cid-usHGjiM4if .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGjiM4if .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGjiM4if .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGjiM4if .carousel-indicators .active,
.cid-usHGjiM4if .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGjiM4if .carousel-indicators .active {
  background: #fff;
}
.cid-usHGjiM4if .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGjiM4if .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGjiM4if .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGjiM4if .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGjiM4if .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGjiM4if .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGjiM4if .carousel {
  width: 100%;
}
.cid-usHGjiM4if .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGjiM4if .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGjiM4if .modal.fade .modal-dialog,
.cid-usHGjiM4if .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGjiM4if .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGjiM4if H6 {
  text-align: center;
}
.cid-uSlr8SnZdd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlr8SnZdd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlr8SnZdd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlr8SnZdd .link {
  color: #e43f3f;
}
.cid-uSlr8SnZdd .mbr-section-title {
  color: #ffffff;
}
.cid-uSlr8SnZdd .card-title,
.cid-uSlr8SnZdd .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagu6Gxmef {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagu6Gxmef nav.navbar {
  position: fixed;
}
.cid-vagu6Gxmef .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu6Gxmef .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagu6Gxmef .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagu6Gxmef .dropdown-item:hover,
.cid-vagu6Gxmef .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagu6Gxmef .dropdown-item:hover span {
  color: white;
}
.cid-vagu6Gxmef .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagu6Gxmef .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagu6Gxmef .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagu6Gxmef .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagu6Gxmef .nav-link {
  position: relative;
}
.cid-vagu6Gxmef .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagu6Gxmef .container {
    flex-wrap: nowrap;
  }
}
.cid-vagu6Gxmef .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagu6Gxmef .dropdown-menu,
.cid-vagu6Gxmef .navbar.opened {
  background: #000000 !important;
}
.cid-vagu6Gxmef .nav-item:focus,
.cid-vagu6Gxmef .nav-link:focus {
  outline: none;
}
.cid-vagu6Gxmef .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagu6Gxmef .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagu6Gxmef .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagu6Gxmef .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu6Gxmef .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagu6Gxmef .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagu6Gxmef .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagu6Gxmef .navbar.opened {
  transition: all 0.3s;
}
.cid-vagu6Gxmef .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagu6Gxmef .navbar .navbar-logo img {
  width: auto;
}
.cid-vagu6Gxmef .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagu6Gxmef .navbar.collapsed {
  justify-content: center;
}
.cid-vagu6Gxmef .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagu6Gxmef .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagu6Gxmef .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagu6Gxmef .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagu6Gxmef .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagu6Gxmef .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagu6Gxmef .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagu6Gxmef .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagu6Gxmef .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagu6Gxmef .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagu6Gxmef .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagu6Gxmef .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagu6Gxmef .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagu6Gxmef .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagu6Gxmef .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagu6Gxmef .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagu6Gxmef .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagu6Gxmef .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagu6Gxmef .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagu6Gxmef .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagu6Gxmef .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagu6Gxmef .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagu6Gxmef .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagu6Gxmef .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagu6Gxmef .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagu6Gxmef .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagu6Gxmef .dropdown-item.active,
.cid-vagu6Gxmef .dropdown-item:active {
  background-color: transparent;
}
.cid-vagu6Gxmef .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagu6Gxmef .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagu6Gxmef .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagu6Gxmef .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagu6Gxmef .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagu6Gxmef .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagu6Gxmef ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagu6Gxmef .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagu6Gxmef button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagu6Gxmef button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagu6Gxmef button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagu6Gxmef button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu6Gxmef button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu6Gxmef button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagu6Gxmef nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu6Gxmef nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagu6Gxmef nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagu6Gxmef nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu6Gxmef .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagu6Gxmef a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagu6Gxmef .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagu6Gxmef .navbar {
    height: 70px;
  }
  .cid-vagu6Gxmef .navbar.opened {
    height: auto;
  }
  .cid-vagu6Gxmef .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGrDnPo6 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/100-4348-2000x526.jpg");
}
.cid-usHGrDnPo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGrDnPo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGrDnPo6 .mbr-text,
.cid-usHGrDnPo6 .mbr-section-btn {
  color: #232323;
}
.cid-usHGrDnPo6 .card-title,
.cid-usHGrDnPo6 .card-box {
  color: #ffffff;
}
.cid-usHGrDnPo6 .mbr-text,
.cid-usHGrDnPo6 .link-wrap {
  color: #ffffff;
}
.cid-usHGrDJyWe {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background: #000000;
}
.cid-usHGrDJyWe .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGrDJyWe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGrDJyWe .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-usHGrDJyWe .plan-body {
  padding-bottom: 2rem;
}
.cid-usHGrDJyWe .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGrDJyWe .price {
  color: #e43f3f;
}
.cid-usHGrDJyWe .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-usHGrDJyWe .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-usHGrDJyWe .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-usHGrDJyWe .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-usHGrDJyWe .plan {
    margin-bottom: 2rem;
  }
}
.cid-usHGrDJyWe .plan-title {
  color: #000000;
  text-align: center;
}
.cid-usHGrDJyWe UL {
  color: #e43f3f;
  text-align: center;
}
.cid-usHGrEe3EY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-usHGrEe3EY .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGrEe3EY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGrEe3EY .item {
  padding-bottom: 2rem;
}
.cid-usHGrEe3EY .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGrEe3EY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGrEe3EY .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGrEe3EY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGrEe3EY .carousel-control,
.cid-usHGrEe3EY .close {
  background: #1b1b1b;
}
.cid-usHGrEe3EY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGrEe3EY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGrEe3EY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGrEe3EY .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGrEe3EY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGrEe3EY .close::before {
  content: '\e91a';
}
.cid-usHGrEe3EY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGrEe3EY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGrEe3EY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGrEe3EY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGrEe3EY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGrEe3EY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGrEe3EY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGrEe3EY .carousel-indicators li.active,
.cid-usHGrEe3EY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGrEe3EY .carousel-indicators li::after,
.cid-usHGrEe3EY .carousel-indicators li::before {
  content: none;
}
.cid-usHGrEe3EY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGrEe3EY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGrEe3EY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGrEe3EY .carousel-indicators {
    display: none;
  }
}
.cid-usHGrEe3EY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGrEe3EY .carousel-inner > .active {
  display: block;
}
.cid-usHGrEe3EY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGrEe3EY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGrEe3EY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGrEe3EY .carousel-control,
  .cid-usHGrEe3EY .carousel-indicators,
  .cid-usHGrEe3EY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGrEe3EY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGrEe3EY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGrEe3EY .carousel-indicators .active,
.cid-usHGrEe3EY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGrEe3EY .carousel-indicators .active {
  background: #fff;
}
.cid-usHGrEe3EY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGrEe3EY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGrEe3EY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGrEe3EY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGrEe3EY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGrEe3EY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGrEe3EY .carousel {
  width: 100%;
}
.cid-usHGrEe3EY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGrEe3EY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGrEe3EY .modal.fade .modal-dialog,
.cid-usHGrEe3EY .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGrEe3EY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGrEe3EY H6 {
  text-align: center;
}
.cid-usHGrEe3EY H3 {
  color: #ffffff;
}
.cid-usHGrESSJY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-usHGrESSJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGrESSJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGrESSJY .item {
  padding-bottom: 2rem;
}
.cid-usHGrESSJY .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGrESSJY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGrESSJY .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGrESSJY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGrESSJY .carousel-control,
.cid-usHGrESSJY .close {
  background: #1b1b1b;
}
.cid-usHGrESSJY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGrESSJY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGrESSJY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGrESSJY .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGrESSJY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGrESSJY .close::before {
  content: '\e91a';
}
.cid-usHGrESSJY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGrESSJY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGrESSJY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGrESSJY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGrESSJY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGrESSJY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGrESSJY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGrESSJY .carousel-indicators li.active,
.cid-usHGrESSJY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGrESSJY .carousel-indicators li::after,
.cid-usHGrESSJY .carousel-indicators li::before {
  content: none;
}
.cid-usHGrESSJY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGrESSJY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGrESSJY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGrESSJY .carousel-indicators {
    display: none;
  }
}
.cid-usHGrESSJY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGrESSJY .carousel-inner > .active {
  display: block;
}
.cid-usHGrESSJY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGrESSJY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGrESSJY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGrESSJY .carousel-control,
  .cid-usHGrESSJY .carousel-indicators,
  .cid-usHGrESSJY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGrESSJY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGrESSJY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGrESSJY .carousel-indicators .active,
.cid-usHGrESSJY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGrESSJY .carousel-indicators .active {
  background: #fff;
}
.cid-usHGrESSJY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGrESSJY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGrESSJY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGrESSJY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGrESSJY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGrESSJY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGrESSJY .carousel {
  width: 100%;
}
.cid-usHGrESSJY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGrESSJY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGrESSJY .modal.fade .modal-dialog,
.cid-usHGrESSJY .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGrESSJY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGrESSJY H6 {
  text-align: center;
}
.cid-uSlrblXhdp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlrblXhdp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlrblXhdp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlrblXhdp .link {
  color: #e43f3f;
}
.cid-uSlrblXhdp .mbr-section-title {
  color: #ffffff;
}
.cid-uSlrblXhdp .card-title,
.cid-uSlrblXhdp .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagu8OLTl8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagu8OLTl8 nav.navbar {
  position: fixed;
}
.cid-vagu8OLTl8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu8OLTl8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagu8OLTl8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagu8OLTl8 .dropdown-item:hover,
.cid-vagu8OLTl8 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagu8OLTl8 .dropdown-item:hover span {
  color: white;
}
.cid-vagu8OLTl8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagu8OLTl8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagu8OLTl8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagu8OLTl8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagu8OLTl8 .nav-link {
  position: relative;
}
.cid-vagu8OLTl8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagu8OLTl8 .container {
    flex-wrap: nowrap;
  }
}
.cid-vagu8OLTl8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagu8OLTl8 .dropdown-menu,
.cid-vagu8OLTl8 .navbar.opened {
  background: #000000 !important;
}
.cid-vagu8OLTl8 .nav-item:focus,
.cid-vagu8OLTl8 .nav-link:focus {
  outline: none;
}
.cid-vagu8OLTl8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagu8OLTl8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagu8OLTl8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagu8OLTl8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagu8OLTl8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagu8OLTl8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagu8OLTl8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagu8OLTl8 .navbar.opened {
  transition: all 0.3s;
}
.cid-vagu8OLTl8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagu8OLTl8 .navbar .navbar-logo img {
  width: auto;
}
.cid-vagu8OLTl8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagu8OLTl8 .navbar.collapsed {
  justify-content: center;
}
.cid-vagu8OLTl8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagu8OLTl8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagu8OLTl8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagu8OLTl8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagu8OLTl8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagu8OLTl8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagu8OLTl8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagu8OLTl8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagu8OLTl8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagu8OLTl8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagu8OLTl8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagu8OLTl8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagu8OLTl8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagu8OLTl8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagu8OLTl8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagu8OLTl8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagu8OLTl8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagu8OLTl8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagu8OLTl8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagu8OLTl8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagu8OLTl8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagu8OLTl8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagu8OLTl8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagu8OLTl8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagu8OLTl8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagu8OLTl8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagu8OLTl8 .dropdown-item.active,
.cid-vagu8OLTl8 .dropdown-item:active {
  background-color: transparent;
}
.cid-vagu8OLTl8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagu8OLTl8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagu8OLTl8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagu8OLTl8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagu8OLTl8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagu8OLTl8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagu8OLTl8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagu8OLTl8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagu8OLTl8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagu8OLTl8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagu8OLTl8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagu8OLTl8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu8OLTl8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagu8OLTl8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagu8OLTl8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu8OLTl8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagu8OLTl8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagu8OLTl8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagu8OLTl8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagu8OLTl8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagu8OLTl8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagu8OLTl8 .navbar {
    height: 70px;
  }
  .cid-vagu8OLTl8 .navbar.opened {
    height: auto;
  }
  .cid-vagu8OLTl8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGvS5UZz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-usHGvS5UZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGvS5UZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGvS5UZz .mbr-text,
.cid-usHGvS5UZz .mbr-section-btn {
  color: #232323;
}
.cid-usHGvS5UZz .card-title,
.cid-usHGvS5UZz .card-box {
  color: #ffffff;
}
.cid-usHGvS5UZz .mbr-text,
.cid-usHGvS5UZz .link-wrap {
  color: #ffffff;
}
.cid-usHGvStEsJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-usHGvStEsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGvStEsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGvStEsJ .item {
  padding-bottom: 2rem;
}
.cid-usHGvStEsJ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGvStEsJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGvStEsJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGvStEsJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGvStEsJ .carousel-control,
.cid-usHGvStEsJ .close {
  background: #1b1b1b;
}
.cid-usHGvStEsJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGvStEsJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGvStEsJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGvStEsJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGvStEsJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGvStEsJ .close::before {
  content: '\e91a';
}
.cid-usHGvStEsJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGvStEsJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGvStEsJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGvStEsJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGvStEsJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGvStEsJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGvStEsJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGvStEsJ .carousel-indicators li.active,
.cid-usHGvStEsJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGvStEsJ .carousel-indicators li::after,
.cid-usHGvStEsJ .carousel-indicators li::before {
  content: none;
}
.cid-usHGvStEsJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGvStEsJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGvStEsJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGvStEsJ .carousel-indicators {
    display: none;
  }
}
.cid-usHGvStEsJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGvStEsJ .carousel-inner > .active {
  display: block;
}
.cid-usHGvStEsJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGvStEsJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGvStEsJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGvStEsJ .carousel-control,
  .cid-usHGvStEsJ .carousel-indicators,
  .cid-usHGvStEsJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGvStEsJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGvStEsJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGvStEsJ .carousel-indicators .active,
.cid-usHGvStEsJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGvStEsJ .carousel-indicators .active {
  background: #fff;
}
.cid-usHGvStEsJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGvStEsJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGvStEsJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGvStEsJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGvStEsJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGvStEsJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGvStEsJ .carousel {
  width: 100%;
}
.cid-usHGvStEsJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGvStEsJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGvStEsJ .modal.fade .modal-dialog,
.cid-usHGvStEsJ .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGvStEsJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGvStEsJ H6 {
  text-align: center;
}
.cid-usHGvStEsJ H3 {
  color: #ffffff;
}
.cid-usHGvT8OQM {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-usHGvT8OQM .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGvT8OQM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGvT8OQM .item {
  padding-bottom: 2rem;
}
.cid-usHGvT8OQM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-usHGvT8OQM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-usHGvT8OQM .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-usHGvT8OQM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-usHGvT8OQM .carousel-control,
.cid-usHGvT8OQM .close {
  background: #1b1b1b;
}
.cid-usHGvT8OQM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-usHGvT8OQM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-usHGvT8OQM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-usHGvT8OQM .carousel-control-next span {
  margin-left: 5px;
}
.cid-usHGvT8OQM .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usHGvT8OQM .close::before {
  content: '\e91a';
}
.cid-usHGvT8OQM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usHGvT8OQM .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-usHGvT8OQM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGvT8OQM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-usHGvT8OQM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usHGvT8OQM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-usHGvT8OQM .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-usHGvT8OQM .carousel-indicators li.active,
.cid-usHGvT8OQM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-usHGvT8OQM .carousel-indicators li::after,
.cid-usHGvT8OQM .carousel-indicators li::before {
  content: none;
}
.cid-usHGvT8OQM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-usHGvT8OQM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-usHGvT8OQM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-usHGvT8OQM .carousel-indicators {
    display: none;
  }
}
.cid-usHGvT8OQM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-usHGvT8OQM .carousel-inner > .active {
  display: block;
}
.cid-usHGvT8OQM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usHGvT8OQM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usHGvT8OQM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-usHGvT8OQM .carousel-control,
  .cid-usHGvT8OQM .carousel-indicators,
  .cid-usHGvT8OQM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-usHGvT8OQM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-usHGvT8OQM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usHGvT8OQM .carousel-indicators .active,
.cid-usHGvT8OQM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-usHGvT8OQM .carousel-indicators .active {
  background: #fff;
}
.cid-usHGvT8OQM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-usHGvT8OQM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-usHGvT8OQM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usHGvT8OQM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-usHGvT8OQM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-usHGvT8OQM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-usHGvT8OQM .carousel {
  width: 100%;
}
.cid-usHGvT8OQM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-usHGvT8OQM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-usHGvT8OQM .modal.fade .modal-dialog,
.cid-usHGvT8OQM .modal.in .modal-dialog {
  transform: none;
}
.cid-usHGvT8OQM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-usHGvT8OQM H6 {
  text-align: center;
}
.cid-uSlre2ijot {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlre2ijot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlre2ijot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlre2ijot .link {
  color: #e43f3f;
}
.cid-uSlre2ijot .mbr-section-title {
  color: #ffffff;
}
.cid-uSlre2ijot .card-title,
.cid-uSlre2ijot .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vaguaXhL5t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaguaXhL5t nav.navbar {
  position: fixed;
}
.cid-vaguaXhL5t .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaguaXhL5t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaguaXhL5t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaguaXhL5t .dropdown-item:hover,
.cid-vaguaXhL5t .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vaguaXhL5t .dropdown-item:hover span {
  color: white;
}
.cid-vaguaXhL5t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaguaXhL5t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaguaXhL5t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaguaXhL5t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaguaXhL5t .nav-link {
  position: relative;
}
.cid-vaguaXhL5t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vaguaXhL5t .container {
    flex-wrap: nowrap;
  }
}
.cid-vaguaXhL5t .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaguaXhL5t .dropdown-menu,
.cid-vaguaXhL5t .navbar.opened {
  background: #000000 !important;
}
.cid-vaguaXhL5t .nav-item:focus,
.cid-vaguaXhL5t .nav-link:focus {
  outline: none;
}
.cid-vaguaXhL5t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaguaXhL5t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaguaXhL5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaguaXhL5t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaguaXhL5t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaguaXhL5t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaguaXhL5t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vaguaXhL5t .navbar.opened {
  transition: all 0.3s;
}
.cid-vaguaXhL5t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaguaXhL5t .navbar .navbar-logo img {
  width: auto;
}
.cid-vaguaXhL5t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaguaXhL5t .navbar.collapsed {
  justify-content: center;
}
.cid-vaguaXhL5t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaguaXhL5t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaguaXhL5t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vaguaXhL5t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaguaXhL5t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaguaXhL5t .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaguaXhL5t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaguaXhL5t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaguaXhL5t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaguaXhL5t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaguaXhL5t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaguaXhL5t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaguaXhL5t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaguaXhL5t .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaguaXhL5t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaguaXhL5t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaguaXhL5t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaguaXhL5t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaguaXhL5t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaguaXhL5t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vaguaXhL5t .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaguaXhL5t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaguaXhL5t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaguaXhL5t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaguaXhL5t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaguaXhL5t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaguaXhL5t .dropdown-item.active,
.cid-vaguaXhL5t .dropdown-item:active {
  background-color: transparent;
}
.cid-vaguaXhL5t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaguaXhL5t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaguaXhL5t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaguaXhL5t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vaguaXhL5t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaguaXhL5t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaguaXhL5t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaguaXhL5t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaguaXhL5t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaguaXhL5t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vaguaXhL5t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaguaXhL5t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaguaXhL5t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaguaXhL5t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaguaXhL5t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaguaXhL5t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaguaXhL5t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaguaXhL5t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaguaXhL5t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaguaXhL5t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaguaXhL5t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaguaXhL5t .navbar {
    height: 70px;
  }
  .cid-vaguaXhL5t .navbar.opened {
    height: auto;
  }
  .cid-vaguaXhL5t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGDmOCr3 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHGDmOCr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGDmOCr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGDmOCr3 .mbr-text,
.cid-usHGDmOCr3 .mbr-section-btn {
  color: #232323;
}
.cid-usHGDmOCr3 .card-title,
.cid-usHGDmOCr3 .card-box {
  color: #ffffff;
}
.cid-usHGDmOCr3 .mbr-text,
.cid-usHGDmOCr3 .link-wrap {
  color: #ffffff;
}
.cid-usHGDnbTr9 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-usHGDnbTr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGDnbTr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-usHGDnbTr9 .row {
    flex-direction: column-reverse;
  }
  .cid-usHGDnbTr9 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-usHGDnbTr9 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-usHGDnbTr9 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-usHGDnbTr9 .media-content,
.cid-usHGDnbTr9 .mbr-figure {
  align-self: center;
}
.cid-usHGDnbTr9 .mbr-figure iframe {
  width: 100%;
}
.cid-uSlrgVtYfz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlrgVtYfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlrgVtYfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlrgVtYfz .link {
  color: #e43f3f;
}
.cid-uSlrgVtYfz .mbr-section-title {
  color: #ffffff;
}
.cid-uSlrgVtYfz .card-title,
.cid-uSlrgVtYfz .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagudXLiIW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagudXLiIW nav.navbar {
  position: fixed;
}
.cid-vagudXLiIW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagudXLiIW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagudXLiIW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagudXLiIW .dropdown-item:hover,
.cid-vagudXLiIW .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagudXLiIW .dropdown-item:hover span {
  color: white;
}
.cid-vagudXLiIW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagudXLiIW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagudXLiIW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagudXLiIW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagudXLiIW .nav-link {
  position: relative;
}
.cid-vagudXLiIW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagudXLiIW .container {
    flex-wrap: nowrap;
  }
}
.cid-vagudXLiIW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagudXLiIW .dropdown-menu,
.cid-vagudXLiIW .navbar.opened {
  background: #000000 !important;
}
.cid-vagudXLiIW .nav-item:focus,
.cid-vagudXLiIW .nav-link:focus {
  outline: none;
}
.cid-vagudXLiIW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagudXLiIW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagudXLiIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagudXLiIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagudXLiIW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagudXLiIW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagudXLiIW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagudXLiIW .navbar.opened {
  transition: all 0.3s;
}
.cid-vagudXLiIW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagudXLiIW .navbar .navbar-logo img {
  width: auto;
}
.cid-vagudXLiIW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagudXLiIW .navbar.collapsed {
  justify-content: center;
}
.cid-vagudXLiIW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagudXLiIW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagudXLiIW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagudXLiIW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagudXLiIW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagudXLiIW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagudXLiIW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagudXLiIW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagudXLiIW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagudXLiIW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagudXLiIW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagudXLiIW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagudXLiIW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagudXLiIW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagudXLiIW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagudXLiIW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagudXLiIW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagudXLiIW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagudXLiIW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagudXLiIW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagudXLiIW .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagudXLiIW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagudXLiIW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagudXLiIW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagudXLiIW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagudXLiIW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagudXLiIW .dropdown-item.active,
.cid-vagudXLiIW .dropdown-item:active {
  background-color: transparent;
}
.cid-vagudXLiIW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagudXLiIW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagudXLiIW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagudXLiIW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagudXLiIW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagudXLiIW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagudXLiIW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagudXLiIW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagudXLiIW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagudXLiIW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagudXLiIW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagudXLiIW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagudXLiIW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagudXLiIW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagudXLiIW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagudXLiIW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagudXLiIW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagudXLiIW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagudXLiIW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagudXLiIW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagudXLiIW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagudXLiIW .navbar {
    height: 70px;
  }
  .cid-vagudXLiIW .navbar.opened {
    height: auto;
  }
  .cid-vagudXLiIW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGIaiy97 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHGIaiy97 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGIaiy97 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGIaiy97 .mbr-text,
.cid-usHGIaiy97 .mbr-section-btn {
  color: #232323;
}
.cid-usHGIaiy97 .card-title,
.cid-usHGIaiy97 .card-box {
  color: #ffffff;
}
.cid-usHGIaiy97 .mbr-text,
.cid-usHGIaiy97 .link-wrap {
  color: #ffffff;
}
.cid-usHGIaDZOb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHGIaDZOb .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGIaDZOb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHGIaDZOb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHGIaDZOb .row {
  flex-direction: row-reverse;
}
.cid-usHGIaDZOb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHGIaDZOb .text-wrapper {
    padding: 2rem;
  }
}
.cid-uSlrj11FVD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlrj11FVD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlrj11FVD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlrj11FVD .link {
  color: #e43f3f;
}
.cid-uSlrj11FVD .mbr-section-title {
  color: #ffffff;
}
.cid-uSlrj11FVD .card-title,
.cid-uSlrj11FVD .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagugcMaLp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagugcMaLp nav.navbar {
  position: fixed;
}
.cid-vagugcMaLp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagugcMaLp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagugcMaLp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagugcMaLp .dropdown-item:hover,
.cid-vagugcMaLp .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagugcMaLp .dropdown-item:hover span {
  color: white;
}
.cid-vagugcMaLp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagugcMaLp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagugcMaLp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagugcMaLp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagugcMaLp .nav-link {
  position: relative;
}
.cid-vagugcMaLp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagugcMaLp .container {
    flex-wrap: nowrap;
  }
}
.cid-vagugcMaLp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagugcMaLp .dropdown-menu,
.cid-vagugcMaLp .navbar.opened {
  background: #000000 !important;
}
.cid-vagugcMaLp .nav-item:focus,
.cid-vagugcMaLp .nav-link:focus {
  outline: none;
}
.cid-vagugcMaLp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagugcMaLp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagugcMaLp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagugcMaLp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagugcMaLp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagugcMaLp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagugcMaLp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagugcMaLp .navbar.opened {
  transition: all 0.3s;
}
.cid-vagugcMaLp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagugcMaLp .navbar .navbar-logo img {
  width: auto;
}
.cid-vagugcMaLp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagugcMaLp .navbar.collapsed {
  justify-content: center;
}
.cid-vagugcMaLp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagugcMaLp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagugcMaLp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagugcMaLp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagugcMaLp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagugcMaLp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagugcMaLp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagugcMaLp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagugcMaLp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagugcMaLp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagugcMaLp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagugcMaLp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagugcMaLp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagugcMaLp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagugcMaLp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagugcMaLp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagugcMaLp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagugcMaLp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagugcMaLp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagugcMaLp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagugcMaLp .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagugcMaLp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagugcMaLp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagugcMaLp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagugcMaLp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagugcMaLp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagugcMaLp .dropdown-item.active,
.cid-vagugcMaLp .dropdown-item:active {
  background-color: transparent;
}
.cid-vagugcMaLp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagugcMaLp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagugcMaLp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagugcMaLp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagugcMaLp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagugcMaLp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagugcMaLp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagugcMaLp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagugcMaLp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagugcMaLp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagugcMaLp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagugcMaLp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagugcMaLp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagugcMaLp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagugcMaLp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagugcMaLp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagugcMaLp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagugcMaLp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagugcMaLp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagugcMaLp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagugcMaLp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagugcMaLp .navbar {
    height: 70px;
  }
  .cid-vagugcMaLp .navbar.opened {
    height: auto;
  }
  .cid-vagugcMaLp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGLQH3n9 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHGLQH3n9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGLQH3n9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGLQH3n9 .mbr-text,
.cid-usHGLQH3n9 .mbr-section-btn {
  color: #232323;
}
.cid-usHGLQH3n9 .card-title,
.cid-usHGLQH3n9 .card-box {
  color: #ffffff;
}
.cid-usHGLQH3n9 .mbr-text,
.cid-usHGLQH3n9 .link-wrap {
  color: #ffffff;
}
.cid-usHGLR1Pgf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHGLR1Pgf .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGLR1Pgf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHGLR1Pgf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHGLR1Pgf .row {
  flex-direction: row-reverse;
}
.cid-usHGLR1Pgf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHGLR1Pgf .text-wrapper {
    padding: 2rem;
  }
}
.cid-uSlrkMkkYQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlrkMkkYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlrkMkkYQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlrkMkkYQ .link {
  color: #e43f3f;
}
.cid-uSlrkMkkYQ .mbr-section-title {
  color: #ffffff;
}
.cid-uSlrkMkkYQ .card-title,
.cid-uSlrkMkkYQ .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vaguie2V7o {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaguie2V7o nav.navbar {
  position: fixed;
}
.cid-vaguie2V7o .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaguie2V7o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaguie2V7o .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaguie2V7o .dropdown-item:hover,
.cid-vaguie2V7o .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vaguie2V7o .dropdown-item:hover span {
  color: white;
}
.cid-vaguie2V7o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaguie2V7o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaguie2V7o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaguie2V7o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaguie2V7o .nav-link {
  position: relative;
}
.cid-vaguie2V7o .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vaguie2V7o .container {
    flex-wrap: nowrap;
  }
}
.cid-vaguie2V7o .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaguie2V7o .dropdown-menu,
.cid-vaguie2V7o .navbar.opened {
  background: #000000 !important;
}
.cid-vaguie2V7o .nav-item:focus,
.cid-vaguie2V7o .nav-link:focus {
  outline: none;
}
.cid-vaguie2V7o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaguie2V7o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaguie2V7o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaguie2V7o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaguie2V7o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaguie2V7o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaguie2V7o .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vaguie2V7o .navbar.opened {
  transition: all 0.3s;
}
.cid-vaguie2V7o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaguie2V7o .navbar .navbar-logo img {
  width: auto;
}
.cid-vaguie2V7o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaguie2V7o .navbar.collapsed {
  justify-content: center;
}
.cid-vaguie2V7o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaguie2V7o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaguie2V7o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vaguie2V7o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaguie2V7o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaguie2V7o .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaguie2V7o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaguie2V7o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaguie2V7o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaguie2V7o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaguie2V7o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaguie2V7o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaguie2V7o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaguie2V7o .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaguie2V7o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaguie2V7o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaguie2V7o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaguie2V7o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaguie2V7o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaguie2V7o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vaguie2V7o .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaguie2V7o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaguie2V7o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaguie2V7o .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaguie2V7o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaguie2V7o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaguie2V7o .dropdown-item.active,
.cid-vaguie2V7o .dropdown-item:active {
  background-color: transparent;
}
.cid-vaguie2V7o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaguie2V7o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaguie2V7o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaguie2V7o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vaguie2V7o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaguie2V7o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaguie2V7o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaguie2V7o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaguie2V7o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaguie2V7o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vaguie2V7o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaguie2V7o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaguie2V7o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaguie2V7o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaguie2V7o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaguie2V7o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaguie2V7o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaguie2V7o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaguie2V7o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaguie2V7o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaguie2V7o .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaguie2V7o .navbar {
    height: 70px;
  }
  .cid-vaguie2V7o .navbar.opened {
    height: auto;
  }
  .cid-vaguie2V7o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGPelJV1 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHGPelJV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGPelJV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGPelJV1 .mbr-text,
.cid-usHGPelJV1 .mbr-section-btn {
  color: #232323;
}
.cid-usHGPelJV1 .card-title,
.cid-usHGPelJV1 .card-box {
  color: #ffffff;
}
.cid-usHGPelJV1 .mbr-text,
.cid-usHGPelJV1 .link-wrap {
  color: #ffffff;
}
.cid-usHGPeQStV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHGPeQStV .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGPeQStV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHGPeQStV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHGPeQStV .row {
  flex-direction: row-reverse;
}
.cid-usHGPeQStV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHGPeQStV .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHGPeQStV .mbr-text {
  text-align: left;
}
.cid-uSlrmwKxr7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlrmwKxr7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlrmwKxr7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlrmwKxr7 .link {
  color: #e43f3f;
}
.cid-uSlrmwKxr7 .mbr-section-title {
  color: #ffffff;
}
.cid-uSlrmwKxr7 .card-title,
.cid-uSlrmwKxr7 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vaguomRMM8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vaguomRMM8 nav.navbar {
  position: fixed;
}
.cid-vaguomRMM8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaguomRMM8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaguomRMM8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaguomRMM8 .dropdown-item:hover,
.cid-vaguomRMM8 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vaguomRMM8 .dropdown-item:hover span {
  color: white;
}
.cid-vaguomRMM8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaguomRMM8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaguomRMM8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaguomRMM8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaguomRMM8 .nav-link {
  position: relative;
}
.cid-vaguomRMM8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vaguomRMM8 .container {
    flex-wrap: nowrap;
  }
}
.cid-vaguomRMM8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaguomRMM8 .dropdown-menu,
.cid-vaguomRMM8 .navbar.opened {
  background: #000000 !important;
}
.cid-vaguomRMM8 .nav-item:focus,
.cid-vaguomRMM8 .nav-link:focus {
  outline: none;
}
.cid-vaguomRMM8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaguomRMM8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaguomRMM8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaguomRMM8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaguomRMM8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaguomRMM8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaguomRMM8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vaguomRMM8 .navbar.opened {
  transition: all 0.3s;
}
.cid-vaguomRMM8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaguomRMM8 .navbar .navbar-logo img {
  width: auto;
}
.cid-vaguomRMM8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaguomRMM8 .navbar.collapsed {
  justify-content: center;
}
.cid-vaguomRMM8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaguomRMM8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaguomRMM8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vaguomRMM8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaguomRMM8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaguomRMM8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaguomRMM8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaguomRMM8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaguomRMM8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaguomRMM8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaguomRMM8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaguomRMM8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaguomRMM8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaguomRMM8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaguomRMM8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaguomRMM8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaguomRMM8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaguomRMM8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaguomRMM8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaguomRMM8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vaguomRMM8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vaguomRMM8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaguomRMM8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaguomRMM8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaguomRMM8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaguomRMM8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaguomRMM8 .dropdown-item.active,
.cid-vaguomRMM8 .dropdown-item:active {
  background-color: transparent;
}
.cid-vaguomRMM8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaguomRMM8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaguomRMM8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaguomRMM8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vaguomRMM8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaguomRMM8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaguomRMM8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaguomRMM8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaguomRMM8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaguomRMM8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vaguomRMM8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaguomRMM8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaguomRMM8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaguomRMM8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaguomRMM8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaguomRMM8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaguomRMM8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaguomRMM8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaguomRMM8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaguomRMM8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaguomRMM8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaguomRMM8 .navbar {
    height: 70px;
  }
  .cid-vaguomRMM8 .navbar.opened {
    height: auto;
  }
  .cid-vaguomRMM8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGSSqGag {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHGSSqGag .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGSSqGag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGSSqGag .mbr-text,
.cid-usHGSSqGag .mbr-section-btn {
  color: #232323;
}
.cid-usHGSSqGag .card-title,
.cid-usHGSSqGag .card-box {
  color: #ffffff;
}
.cid-usHGSSqGag .mbr-text,
.cid-usHGSSqGag .link-wrap {
  color: #ffffff;
}
.cid-usHGSSKBrZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHGSSKBrZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGSSKBrZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHGSSKBrZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHGSSKBrZ .row {
  flex-direction: row-reverse;
}
.cid-usHGSSKBrZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHGSSKBrZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHGSSKBrZ .mbr-text {
  text-align: left;
}
.cid-uSlroFCe6H {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlroFCe6H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlroFCe6H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlroFCe6H .link {
  color: #e43f3f;
}
.cid-uSlroFCe6H .mbr-section-title {
  color: #ffffff;
}
.cid-uSlroFCe6H .card-title,
.cid-uSlroFCe6H .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagw5Gtk1P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagw5Gtk1P nav.navbar {
  position: fixed;
}
.cid-vagw5Gtk1P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagw5Gtk1P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagw5Gtk1P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagw5Gtk1P .dropdown-item:hover,
.cid-vagw5Gtk1P .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagw5Gtk1P .dropdown-item:hover span {
  color: white;
}
.cid-vagw5Gtk1P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagw5Gtk1P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagw5Gtk1P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagw5Gtk1P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagw5Gtk1P .nav-link {
  position: relative;
}
.cid-vagw5Gtk1P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagw5Gtk1P .container {
    flex-wrap: nowrap;
  }
}
.cid-vagw5Gtk1P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagw5Gtk1P .dropdown-menu,
.cid-vagw5Gtk1P .navbar.opened {
  background: #000000 !important;
}
.cid-vagw5Gtk1P .nav-item:focus,
.cid-vagw5Gtk1P .nav-link:focus {
  outline: none;
}
.cid-vagw5Gtk1P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagw5Gtk1P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagw5Gtk1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagw5Gtk1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagw5Gtk1P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagw5Gtk1P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagw5Gtk1P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagw5Gtk1P .navbar.opened {
  transition: all 0.3s;
}
.cid-vagw5Gtk1P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagw5Gtk1P .navbar .navbar-logo img {
  width: auto;
}
.cid-vagw5Gtk1P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagw5Gtk1P .navbar.collapsed {
  justify-content: center;
}
.cid-vagw5Gtk1P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagw5Gtk1P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagw5Gtk1P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagw5Gtk1P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagw5Gtk1P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagw5Gtk1P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagw5Gtk1P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagw5Gtk1P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagw5Gtk1P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagw5Gtk1P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagw5Gtk1P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagw5Gtk1P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagw5Gtk1P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagw5Gtk1P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagw5Gtk1P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagw5Gtk1P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagw5Gtk1P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagw5Gtk1P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagw5Gtk1P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagw5Gtk1P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagw5Gtk1P .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagw5Gtk1P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagw5Gtk1P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagw5Gtk1P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagw5Gtk1P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagw5Gtk1P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagw5Gtk1P .dropdown-item.active,
.cid-vagw5Gtk1P .dropdown-item:active {
  background-color: transparent;
}
.cid-vagw5Gtk1P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagw5Gtk1P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagw5Gtk1P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagw5Gtk1P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagw5Gtk1P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagw5Gtk1P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagw5Gtk1P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagw5Gtk1P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagw5Gtk1P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagw5Gtk1P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagw5Gtk1P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagw5Gtk1P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagw5Gtk1P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagw5Gtk1P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagw5Gtk1P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagw5Gtk1P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagw5Gtk1P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagw5Gtk1P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagw5Gtk1P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagw5Gtk1P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagw5Gtk1P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagw5Gtk1P .navbar {
    height: 70px;
  }
  .cid-vagw5Gtk1P .navbar.opened {
    height: auto;
  }
  .cid-vagw5Gtk1P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHGYXCkbR {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHGYXCkbR .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGYXCkbR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHGYXCkbR .mbr-text,
.cid-usHGYXCkbR .mbr-section-btn {
  color: #232323;
}
.cid-usHGYXCkbR .card-title,
.cid-usHGYXCkbR .card-box {
  color: #ffffff;
}
.cid-usHGYXCkbR .mbr-text,
.cid-usHGYXCkbR .link-wrap {
  color: #ffffff;
}
.cid-usHGYXZPba {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHGYXZPba .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHGYXZPba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHGYXZPba .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHGYXZPba .row {
  flex-direction: row-reverse;
}
.cid-usHGYXZPba img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHGYXZPba .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHGYXZPba .mbr-text {
  text-align: left;
}
.cid-uSls33ItT2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSls33ItT2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSls33ItT2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSls33ItT2 .link {
  color: #e43f3f;
}
.cid-uSls33ItT2 .mbr-section-title {
  color: #ffffff;
}
.cid-uSls33ItT2 .card-title,
.cid-uSls33ItT2 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagw7q0HrP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagw7q0HrP nav.navbar {
  position: fixed;
}
.cid-vagw7q0HrP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagw7q0HrP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagw7q0HrP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagw7q0HrP .dropdown-item:hover,
.cid-vagw7q0HrP .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagw7q0HrP .dropdown-item:hover span {
  color: white;
}
.cid-vagw7q0HrP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagw7q0HrP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagw7q0HrP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagw7q0HrP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagw7q0HrP .nav-link {
  position: relative;
}
.cid-vagw7q0HrP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagw7q0HrP .container {
    flex-wrap: nowrap;
  }
}
.cid-vagw7q0HrP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagw7q0HrP .dropdown-menu,
.cid-vagw7q0HrP .navbar.opened {
  background: #000000 !important;
}
.cid-vagw7q0HrP .nav-item:focus,
.cid-vagw7q0HrP .nav-link:focus {
  outline: none;
}
.cid-vagw7q0HrP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagw7q0HrP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagw7q0HrP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagw7q0HrP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagw7q0HrP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagw7q0HrP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagw7q0HrP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagw7q0HrP .navbar.opened {
  transition: all 0.3s;
}
.cid-vagw7q0HrP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagw7q0HrP .navbar .navbar-logo img {
  width: auto;
}
.cid-vagw7q0HrP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagw7q0HrP .navbar.collapsed {
  justify-content: center;
}
.cid-vagw7q0HrP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagw7q0HrP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagw7q0HrP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagw7q0HrP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagw7q0HrP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagw7q0HrP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagw7q0HrP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagw7q0HrP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagw7q0HrP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagw7q0HrP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagw7q0HrP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagw7q0HrP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagw7q0HrP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagw7q0HrP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagw7q0HrP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagw7q0HrP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagw7q0HrP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagw7q0HrP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagw7q0HrP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagw7q0HrP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagw7q0HrP .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagw7q0HrP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagw7q0HrP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagw7q0HrP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagw7q0HrP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagw7q0HrP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagw7q0HrP .dropdown-item.active,
.cid-vagw7q0HrP .dropdown-item:active {
  background-color: transparent;
}
.cid-vagw7q0HrP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagw7q0HrP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagw7q0HrP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagw7q0HrP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagw7q0HrP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagw7q0HrP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagw7q0HrP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagw7q0HrP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagw7q0HrP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagw7q0HrP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagw7q0HrP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagw7q0HrP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagw7q0HrP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagw7q0HrP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagw7q0HrP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagw7q0HrP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagw7q0HrP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagw7q0HrP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagw7q0HrP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagw7q0HrP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagw7q0HrP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagw7q0HrP .navbar {
    height: 70px;
  }
  .cid-vagw7q0HrP .navbar.opened {
    height: auto;
  }
  .cid-vagw7q0HrP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHH3sP1UI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHH3sP1UI .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHH3sP1UI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHH3sP1UI .mbr-text,
.cid-usHH3sP1UI .mbr-section-btn {
  color: #232323;
}
.cid-usHH3sP1UI .card-title,
.cid-usHH3sP1UI .card-box {
  color: #ffffff;
}
.cid-usHH3sP1UI .mbr-text,
.cid-usHH3sP1UI .link-wrap {
  color: #ffffff;
}
.cid-usHH3t6lfQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHH3t6lfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHH3t6lfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHH3t6lfQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHH3t6lfQ .row {
  flex-direction: row-reverse;
}
.cid-usHH3t6lfQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHH3t6lfQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHH3t6lfQ .mbr-text {
  text-align: left;
}
.cid-uSls5b6BUV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSls5b6BUV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSls5b6BUV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSls5b6BUV .link {
  color: #e43f3f;
}
.cid-uSls5b6BUV .mbr-section-title {
  color: #ffffff;
}
.cid-uSls5b6BUV .card-title,
.cid-uSls5b6BUV .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagw9McNHI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagw9McNHI nav.navbar {
  position: fixed;
}
.cid-vagw9McNHI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagw9McNHI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagw9McNHI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagw9McNHI .dropdown-item:hover,
.cid-vagw9McNHI .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagw9McNHI .dropdown-item:hover span {
  color: white;
}
.cid-vagw9McNHI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagw9McNHI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagw9McNHI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagw9McNHI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagw9McNHI .nav-link {
  position: relative;
}
.cid-vagw9McNHI .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagw9McNHI .container {
    flex-wrap: nowrap;
  }
}
.cid-vagw9McNHI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagw9McNHI .dropdown-menu,
.cid-vagw9McNHI .navbar.opened {
  background: #000000 !important;
}
.cid-vagw9McNHI .nav-item:focus,
.cid-vagw9McNHI .nav-link:focus {
  outline: none;
}
.cid-vagw9McNHI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagw9McNHI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagw9McNHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagw9McNHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagw9McNHI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagw9McNHI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagw9McNHI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagw9McNHI .navbar.opened {
  transition: all 0.3s;
}
.cid-vagw9McNHI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagw9McNHI .navbar .navbar-logo img {
  width: auto;
}
.cid-vagw9McNHI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagw9McNHI .navbar.collapsed {
  justify-content: center;
}
.cid-vagw9McNHI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagw9McNHI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagw9McNHI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagw9McNHI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagw9McNHI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagw9McNHI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagw9McNHI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagw9McNHI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagw9McNHI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagw9McNHI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagw9McNHI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagw9McNHI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagw9McNHI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagw9McNHI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagw9McNHI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagw9McNHI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagw9McNHI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagw9McNHI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagw9McNHI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagw9McNHI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagw9McNHI .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagw9McNHI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagw9McNHI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagw9McNHI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagw9McNHI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagw9McNHI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagw9McNHI .dropdown-item.active,
.cid-vagw9McNHI .dropdown-item:active {
  background-color: transparent;
}
.cid-vagw9McNHI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagw9McNHI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagw9McNHI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagw9McNHI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagw9McNHI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagw9McNHI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagw9McNHI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagw9McNHI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagw9McNHI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagw9McNHI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagw9McNHI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagw9McNHI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagw9McNHI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagw9McNHI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagw9McNHI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagw9McNHI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagw9McNHI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagw9McNHI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagw9McNHI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagw9McNHI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagw9McNHI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagw9McNHI .navbar {
    height: 70px;
  }
  .cid-vagw9McNHI .navbar.opened {
    height: auto;
  }
  .cid-vagw9McNHI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHH6Z8XJJ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHH6Z8XJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHH6Z8XJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHH6Z8XJJ .mbr-text,
.cid-usHH6Z8XJJ .mbr-section-btn {
  color: #232323;
}
.cid-usHH6Z8XJJ .card-title,
.cid-usHH6Z8XJJ .card-box {
  color: #ffffff;
}
.cid-usHH6Z8XJJ .mbr-text,
.cid-usHH6Z8XJJ .link-wrap {
  color: #ffffff;
}
.cid-uSVz2S8yKf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uSVz2S8yKf img,
.cid-uSVz2S8yKf .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uSVz2S8yKf .item:focus,
.cid-uSVz2S8yKf span:focus {
  outline: none;
}
.cid-uSVz2S8yKf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSVz2S8yKf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSVz2S8yKf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSVz2S8yKf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSVz2S8yKf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSVz2S8yKf .mbr-section-title {
  color: #ffffff;
}
.cid-uSVz2S8yKf .mbr-text,
.cid-uSVz2S8yKf .mbr-section-btn {
  text-align: left;
}
.cid-uSVz2S8yKf .item-title {
  text-align: left;
}
.cid-uSVz2S8yKf .item-subtitle {
  text-align: center;
}
.cid-uSVz2S8yKf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSls78jK1s {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSls78jK1s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSls78jK1s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSls78jK1s .link {
  color: #e43f3f;
}
.cid-uSls78jK1s .mbr-section-title {
  color: #ffffff;
}
.cid-uSls78jK1s .card-title,
.cid-uSls78jK1s .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwbVgV2h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwbVgV2h nav.navbar {
  position: fixed;
}
.cid-vagwbVgV2h .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwbVgV2h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwbVgV2h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwbVgV2h .dropdown-item:hover,
.cid-vagwbVgV2h .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwbVgV2h .dropdown-item:hover span {
  color: white;
}
.cid-vagwbVgV2h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwbVgV2h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwbVgV2h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwbVgV2h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwbVgV2h .nav-link {
  position: relative;
}
.cid-vagwbVgV2h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwbVgV2h .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwbVgV2h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwbVgV2h .dropdown-menu,
.cid-vagwbVgV2h .navbar.opened {
  background: #000000 !important;
}
.cid-vagwbVgV2h .nav-item:focus,
.cid-vagwbVgV2h .nav-link:focus {
  outline: none;
}
.cid-vagwbVgV2h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwbVgV2h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwbVgV2h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwbVgV2h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwbVgV2h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwbVgV2h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwbVgV2h .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwbVgV2h .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwbVgV2h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwbVgV2h .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwbVgV2h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwbVgV2h .navbar.collapsed {
  justify-content: center;
}
.cid-vagwbVgV2h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwbVgV2h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwbVgV2h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwbVgV2h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwbVgV2h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwbVgV2h .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwbVgV2h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwbVgV2h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwbVgV2h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwbVgV2h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwbVgV2h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwbVgV2h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwbVgV2h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwbVgV2h .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwbVgV2h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwbVgV2h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwbVgV2h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwbVgV2h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwbVgV2h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwbVgV2h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwbVgV2h .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwbVgV2h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwbVgV2h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwbVgV2h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwbVgV2h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwbVgV2h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwbVgV2h .dropdown-item.active,
.cid-vagwbVgV2h .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwbVgV2h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwbVgV2h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwbVgV2h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwbVgV2h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwbVgV2h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwbVgV2h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwbVgV2h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwbVgV2h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwbVgV2h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwbVgV2h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwbVgV2h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwbVgV2h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwbVgV2h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwbVgV2h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwbVgV2h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwbVgV2h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwbVgV2h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwbVgV2h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwbVgV2h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwbVgV2h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwbVgV2h .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwbVgV2h .navbar {
    height: 70px;
  }
  .cid-vagwbVgV2h .navbar.opened {
    height: auto;
  }
  .cid-vagwbVgV2h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHH9EbE3E {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHH9EbE3E .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHH9EbE3E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHH9EbE3E .mbr-text,
.cid-usHH9EbE3E .mbr-section-btn {
  color: #232323;
}
.cid-usHH9EbE3E .card-title,
.cid-usHH9EbE3E .card-box {
  color: #ffffff;
}
.cid-usHH9EbE3E .mbr-text,
.cid-usHH9EbE3E .link-wrap {
  color: #ffffff;
}
.cid-usHH9EtoMR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHH9EtoMR .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHH9EtoMR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHH9EtoMR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHH9EtoMR .row {
  flex-direction: row-reverse;
}
.cid-usHH9EtoMR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHH9EtoMR .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHH9EtoMR .mbr-text {
  text-align: left;
}
.cid-uSls96yqhT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSls96yqhT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSls96yqhT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSls96yqhT .link {
  color: #e43f3f;
}
.cid-uSls96yqhT .mbr-section-title {
  color: #ffffff;
}
.cid-uSls96yqhT .card-title,
.cid-uSls96yqhT .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwdwI9ty {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwdwI9ty nav.navbar {
  position: fixed;
}
.cid-vagwdwI9ty .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwdwI9ty .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwdwI9ty .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwdwI9ty .dropdown-item:hover,
.cid-vagwdwI9ty .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwdwI9ty .dropdown-item:hover span {
  color: white;
}
.cid-vagwdwI9ty .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwdwI9ty .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwdwI9ty .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwdwI9ty .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwdwI9ty .nav-link {
  position: relative;
}
.cid-vagwdwI9ty .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwdwI9ty .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwdwI9ty .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwdwI9ty .dropdown-menu,
.cid-vagwdwI9ty .navbar.opened {
  background: #000000 !important;
}
.cid-vagwdwI9ty .nav-item:focus,
.cid-vagwdwI9ty .nav-link:focus {
  outline: none;
}
.cid-vagwdwI9ty .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwdwI9ty .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwdwI9ty .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwdwI9ty .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwdwI9ty .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwdwI9ty .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwdwI9ty .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwdwI9ty .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwdwI9ty .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwdwI9ty .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwdwI9ty .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwdwI9ty .navbar.collapsed {
  justify-content: center;
}
.cid-vagwdwI9ty .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwdwI9ty .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwdwI9ty .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwdwI9ty .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwdwI9ty .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwdwI9ty .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwdwI9ty .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwdwI9ty .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwdwI9ty .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwdwI9ty .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwdwI9ty .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwdwI9ty .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwdwI9ty .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwdwI9ty .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwdwI9ty .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwdwI9ty .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwdwI9ty .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwdwI9ty .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwdwI9ty .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwdwI9ty .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwdwI9ty .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwdwI9ty .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwdwI9ty .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwdwI9ty .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwdwI9ty .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwdwI9ty .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwdwI9ty .dropdown-item.active,
.cid-vagwdwI9ty .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwdwI9ty .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwdwI9ty .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwdwI9ty .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwdwI9ty .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwdwI9ty .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwdwI9ty .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwdwI9ty ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwdwI9ty .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwdwI9ty button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwdwI9ty button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwdwI9ty button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwdwI9ty button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwdwI9ty button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwdwI9ty button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwdwI9ty nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwdwI9ty nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwdwI9ty nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwdwI9ty nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwdwI9ty .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwdwI9ty a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwdwI9ty .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwdwI9ty .navbar {
    height: 70px;
  }
  .cid-vagwdwI9ty .navbar.opened {
    height: auto;
  }
  .cid-vagwdwI9ty .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXcCoasY {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXcCoasY .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXcCoasY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXcCoasY .mbr-text,
.cid-usHXcCoasY .mbr-section-btn {
  color: #232323;
}
.cid-usHXcCoasY .card-title,
.cid-usHXcCoasY .card-box {
  color: #ffffff;
}
.cid-usHXcCoasY .mbr-text,
.cid-usHXcCoasY .link-wrap {
  color: #ffffff;
}
.cid-usHXcCJF7S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-usHXcCJF7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXcCJF7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXcCJF7S .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXcCJF7S .row {
  flex-direction: row-reverse;
}
.cid-usHXcCJF7S img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXcCJF7S .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXcCJF7S .mbr-text {
  text-align: left;
}
.cid-uSlsbgjqT7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlsbgjqT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlsbgjqT7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlsbgjqT7 .link {
  color: #e43f3f;
}
.cid-uSlsbgjqT7 .mbr-section-title {
  color: #ffffff;
}
.cid-uSlsbgjqT7 .card-title,
.cid-uSlsbgjqT7 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwff9uic {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwff9uic nav.navbar {
  position: fixed;
}
.cid-vagwff9uic .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwff9uic .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwff9uic .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwff9uic .dropdown-item:hover,
.cid-vagwff9uic .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwff9uic .dropdown-item:hover span {
  color: white;
}
.cid-vagwff9uic .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwff9uic .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwff9uic .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwff9uic .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwff9uic .nav-link {
  position: relative;
}
.cid-vagwff9uic .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwff9uic .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwff9uic .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwff9uic .dropdown-menu,
.cid-vagwff9uic .navbar.opened {
  background: #000000 !important;
}
.cid-vagwff9uic .nav-item:focus,
.cid-vagwff9uic .nav-link:focus {
  outline: none;
}
.cid-vagwff9uic .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwff9uic .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwff9uic .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwff9uic .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwff9uic .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwff9uic .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwff9uic .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwff9uic .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwff9uic .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwff9uic .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwff9uic .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwff9uic .navbar.collapsed {
  justify-content: center;
}
.cid-vagwff9uic .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwff9uic .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwff9uic .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwff9uic .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwff9uic .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwff9uic .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwff9uic .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwff9uic .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwff9uic .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwff9uic .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwff9uic .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwff9uic .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwff9uic .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwff9uic .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwff9uic .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwff9uic .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwff9uic .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwff9uic .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwff9uic .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwff9uic .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwff9uic .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwff9uic .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwff9uic .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwff9uic .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwff9uic .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwff9uic .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwff9uic .dropdown-item.active,
.cid-vagwff9uic .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwff9uic .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwff9uic .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwff9uic .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwff9uic .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwff9uic .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwff9uic .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwff9uic ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwff9uic .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwff9uic button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwff9uic button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwff9uic button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwff9uic button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwff9uic button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwff9uic button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwff9uic nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwff9uic nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwff9uic nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwff9uic nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwff9uic .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwff9uic a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwff9uic .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwff9uic .navbar {
    height: 70px;
  }
  .cid-vagwff9uic .navbar.opened {
    height: auto;
  }
  .cid-vagwff9uic .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXhxSbWz {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXhxSbWz .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXhxSbWz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXhxSbWz .mbr-text,
.cid-usHXhxSbWz .mbr-section-btn {
  color: #232323;
}
.cid-usHXhxSbWz .card-title,
.cid-usHXhxSbWz .card-box {
  color: #ffffff;
}
.cid-usHXhxSbWz .mbr-text,
.cid-usHXhxSbWz .link-wrap {
  color: #ffffff;
}
.cid-usHXhyt7Bv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-usHXhyt7Bv .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXhyt7Bv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXhyt7Bv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXhyt7Bv .row {
  flex-direction: row-reverse;
}
.cid-usHXhyt7Bv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXhyt7Bv .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXhyt7Bv .mbr-text {
  text-align: left;
}
.cid-uSlsf1HLNf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlsf1HLNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlsf1HLNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlsf1HLNf .link {
  color: #e43f3f;
}
.cid-uSlsf1HLNf .mbr-section-title {
  color: #ffffff;
}
.cid-uSlsf1HLNf .card-title,
.cid-uSlsf1HLNf .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwhfEsGU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwhfEsGU nav.navbar {
  position: fixed;
}
.cid-vagwhfEsGU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwhfEsGU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwhfEsGU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwhfEsGU .dropdown-item:hover,
.cid-vagwhfEsGU .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwhfEsGU .dropdown-item:hover span {
  color: white;
}
.cid-vagwhfEsGU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwhfEsGU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwhfEsGU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwhfEsGU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwhfEsGU .nav-link {
  position: relative;
}
.cid-vagwhfEsGU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwhfEsGU .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwhfEsGU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwhfEsGU .dropdown-menu,
.cid-vagwhfEsGU .navbar.opened {
  background: #000000 !important;
}
.cid-vagwhfEsGU .nav-item:focus,
.cid-vagwhfEsGU .nav-link:focus {
  outline: none;
}
.cid-vagwhfEsGU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwhfEsGU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwhfEsGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwhfEsGU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwhfEsGU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwhfEsGU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwhfEsGU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwhfEsGU .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwhfEsGU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwhfEsGU .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwhfEsGU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwhfEsGU .navbar.collapsed {
  justify-content: center;
}
.cid-vagwhfEsGU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwhfEsGU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwhfEsGU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwhfEsGU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwhfEsGU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwhfEsGU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwhfEsGU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwhfEsGU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwhfEsGU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwhfEsGU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwhfEsGU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwhfEsGU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwhfEsGU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwhfEsGU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwhfEsGU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwhfEsGU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwhfEsGU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwhfEsGU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwhfEsGU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwhfEsGU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwhfEsGU .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwhfEsGU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwhfEsGU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwhfEsGU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwhfEsGU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwhfEsGU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwhfEsGU .dropdown-item.active,
.cid-vagwhfEsGU .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwhfEsGU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwhfEsGU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwhfEsGU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwhfEsGU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwhfEsGU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwhfEsGU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwhfEsGU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwhfEsGU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwhfEsGU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwhfEsGU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwhfEsGU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwhfEsGU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwhfEsGU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwhfEsGU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwhfEsGU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwhfEsGU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwhfEsGU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwhfEsGU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwhfEsGU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwhfEsGU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwhfEsGU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwhfEsGU .navbar {
    height: 70px;
  }
  .cid-vagwhfEsGU .navbar.opened {
    height: auto;
  }
  .cid-vagwhfEsGU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXm9lUKM {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXm9lUKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXm9lUKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXm9lUKM .mbr-text,
.cid-usHXm9lUKM .mbr-section-btn {
  color: #232323;
}
.cid-usHXm9lUKM .card-title,
.cid-usHXm9lUKM .card-box {
  color: #ffffff;
}
.cid-usHXm9lUKM .mbr-text,
.cid-usHXm9lUKM .link-wrap {
  color: #ffffff;
}
.cid-usHXm9DFEE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-usHXm9DFEE .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXm9DFEE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXm9DFEE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXm9DFEE .row {
  flex-direction: row-reverse;
}
.cid-usHXm9DFEE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXm9DFEE .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXm9DFEE .mbr-text {
  text-align: left;
}
.cid-uSlsh6fY2n {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlsh6fY2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlsh6fY2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlsh6fY2n .link {
  color: #e43f3f;
}
.cid-uSlsh6fY2n .mbr-section-title {
  color: #ffffff;
}
.cid-uSlsh6fY2n .card-title,
.cid-uSlsh6fY2n .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwjh7h01 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwjh7h01 nav.navbar {
  position: fixed;
}
.cid-vagwjh7h01 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwjh7h01 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwjh7h01 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwjh7h01 .dropdown-item:hover,
.cid-vagwjh7h01 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwjh7h01 .dropdown-item:hover span {
  color: white;
}
.cid-vagwjh7h01 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwjh7h01 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwjh7h01 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwjh7h01 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwjh7h01 .nav-link {
  position: relative;
}
.cid-vagwjh7h01 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwjh7h01 .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwjh7h01 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwjh7h01 .dropdown-menu,
.cid-vagwjh7h01 .navbar.opened {
  background: #000000 !important;
}
.cid-vagwjh7h01 .nav-item:focus,
.cid-vagwjh7h01 .nav-link:focus {
  outline: none;
}
.cid-vagwjh7h01 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwjh7h01 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwjh7h01 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwjh7h01 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwjh7h01 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwjh7h01 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwjh7h01 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwjh7h01 .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwjh7h01 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwjh7h01 .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwjh7h01 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwjh7h01 .navbar.collapsed {
  justify-content: center;
}
.cid-vagwjh7h01 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwjh7h01 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwjh7h01 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwjh7h01 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwjh7h01 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwjh7h01 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwjh7h01 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwjh7h01 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwjh7h01 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwjh7h01 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwjh7h01 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwjh7h01 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwjh7h01 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwjh7h01 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwjh7h01 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwjh7h01 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwjh7h01 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwjh7h01 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwjh7h01 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwjh7h01 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwjh7h01 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwjh7h01 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwjh7h01 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwjh7h01 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwjh7h01 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwjh7h01 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwjh7h01 .dropdown-item.active,
.cid-vagwjh7h01 .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwjh7h01 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwjh7h01 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwjh7h01 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwjh7h01 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwjh7h01 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwjh7h01 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwjh7h01 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwjh7h01 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwjh7h01 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwjh7h01 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwjh7h01 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwjh7h01 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwjh7h01 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwjh7h01 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwjh7h01 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwjh7h01 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwjh7h01 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwjh7h01 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwjh7h01 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwjh7h01 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwjh7h01 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwjh7h01 .navbar {
    height: 70px;
  }
  .cid-vagwjh7h01 .navbar.opened {
    height: auto;
  }
  .cid-vagwjh7h01 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXqRfsfI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXqRfsfI .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXqRfsfI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXqRfsfI .mbr-text,
.cid-usHXqRfsfI .mbr-section-btn {
  color: #232323;
}
.cid-usHXqRfsfI .card-title,
.cid-usHXqRfsfI .card-box {
  color: #ffffff;
}
.cid-usHXqRfsfI .mbr-text,
.cid-usHXqRfsfI .link-wrap {
  color: #ffffff;
}
.cid-usHXqRx4aA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHXqRx4aA .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXqRx4aA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXqRx4aA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXqRx4aA .row {
  flex-direction: row-reverse;
}
.cid-usHXqRx4aA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXqRx4aA .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXqRx4aA .mbr-text {
  text-align: left;
}
.cid-uSlsiMOZW7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlsiMOZW7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlsiMOZW7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlsiMOZW7 .link {
  color: #e43f3f;
}
.cid-uSlsiMOZW7 .mbr-section-title {
  color: #ffffff;
}
.cid-uSlsiMOZW7 .card-title,
.cid-uSlsiMOZW7 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwld3Si5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwld3Si5 nav.navbar {
  position: fixed;
}
.cid-vagwld3Si5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwld3Si5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwld3Si5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwld3Si5 .dropdown-item:hover,
.cid-vagwld3Si5 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwld3Si5 .dropdown-item:hover span {
  color: white;
}
.cid-vagwld3Si5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwld3Si5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwld3Si5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwld3Si5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwld3Si5 .nav-link {
  position: relative;
}
.cid-vagwld3Si5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwld3Si5 .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwld3Si5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwld3Si5 .dropdown-menu,
.cid-vagwld3Si5 .navbar.opened {
  background: #000000 !important;
}
.cid-vagwld3Si5 .nav-item:focus,
.cid-vagwld3Si5 .nav-link:focus {
  outline: none;
}
.cid-vagwld3Si5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwld3Si5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwld3Si5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwld3Si5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwld3Si5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwld3Si5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwld3Si5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwld3Si5 .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwld3Si5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwld3Si5 .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwld3Si5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwld3Si5 .navbar.collapsed {
  justify-content: center;
}
.cid-vagwld3Si5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwld3Si5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwld3Si5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwld3Si5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwld3Si5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwld3Si5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwld3Si5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwld3Si5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwld3Si5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwld3Si5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwld3Si5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwld3Si5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwld3Si5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwld3Si5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwld3Si5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwld3Si5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwld3Si5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwld3Si5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwld3Si5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwld3Si5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwld3Si5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwld3Si5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwld3Si5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwld3Si5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwld3Si5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwld3Si5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwld3Si5 .dropdown-item.active,
.cid-vagwld3Si5 .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwld3Si5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwld3Si5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwld3Si5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwld3Si5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwld3Si5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwld3Si5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwld3Si5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwld3Si5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwld3Si5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwld3Si5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwld3Si5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwld3Si5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwld3Si5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwld3Si5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwld3Si5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwld3Si5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwld3Si5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwld3Si5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwld3Si5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwld3Si5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwld3Si5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwld3Si5 .navbar {
    height: 70px;
  }
  .cid-vagwld3Si5 .navbar.opened {
    height: auto;
  }
  .cid-vagwld3Si5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXuRymAa {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXuRymAa .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXuRymAa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXuRymAa .mbr-text,
.cid-usHXuRymAa .mbr-section-btn {
  color: #232323;
}
.cid-usHXuRymAa .card-title,
.cid-usHXuRymAa .card-box {
  color: #ffffff;
}
.cid-usHXuRymAa .mbr-text,
.cid-usHXuRymAa .link-wrap {
  color: #ffffff;
}
.cid-usHXuRUnaP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHXuRUnaP .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXuRUnaP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXuRUnaP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXuRUnaP .row {
  flex-direction: row-reverse;
}
.cid-usHXuRUnaP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXuRUnaP .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXuRUnaP .mbr-text {
  text-align: left;
}
.cid-uSlskvbAa8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlskvbAa8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlskvbAa8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlskvbAa8 .link {
  color: #e43f3f;
}
.cid-uSlskvbAa8 .mbr-section-title {
  color: #ffffff;
}
.cid-uSlskvbAa8 .card-title,
.cid-uSlskvbAa8 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwodYNfX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwodYNfX nav.navbar {
  position: fixed;
}
.cid-vagwodYNfX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwodYNfX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwodYNfX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwodYNfX .dropdown-item:hover,
.cid-vagwodYNfX .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwodYNfX .dropdown-item:hover span {
  color: white;
}
.cid-vagwodYNfX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwodYNfX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwodYNfX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwodYNfX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwodYNfX .nav-link {
  position: relative;
}
.cid-vagwodYNfX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwodYNfX .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwodYNfX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwodYNfX .dropdown-menu,
.cid-vagwodYNfX .navbar.opened {
  background: #000000 !important;
}
.cid-vagwodYNfX .nav-item:focus,
.cid-vagwodYNfX .nav-link:focus {
  outline: none;
}
.cid-vagwodYNfX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwodYNfX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwodYNfX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwodYNfX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwodYNfX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwodYNfX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwodYNfX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwodYNfX .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwodYNfX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwodYNfX .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwodYNfX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwodYNfX .navbar.collapsed {
  justify-content: center;
}
.cid-vagwodYNfX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwodYNfX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwodYNfX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwodYNfX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwodYNfX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwodYNfX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwodYNfX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwodYNfX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwodYNfX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwodYNfX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwodYNfX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwodYNfX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwodYNfX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwodYNfX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwodYNfX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwodYNfX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwodYNfX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwodYNfX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwodYNfX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwodYNfX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwodYNfX .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwodYNfX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwodYNfX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwodYNfX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwodYNfX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwodYNfX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwodYNfX .dropdown-item.active,
.cid-vagwodYNfX .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwodYNfX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwodYNfX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwodYNfX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwodYNfX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwodYNfX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwodYNfX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwodYNfX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwodYNfX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwodYNfX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwodYNfX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwodYNfX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwodYNfX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwodYNfX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwodYNfX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwodYNfX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwodYNfX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwodYNfX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwodYNfX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwodYNfX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwodYNfX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwodYNfX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwodYNfX .navbar {
    height: 70px;
  }
  .cid-vagwodYNfX .navbar.opened {
    height: auto;
  }
  .cid-vagwodYNfX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXDnsrhG {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXDnsrhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXDnsrhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXDnsrhG .mbr-text,
.cid-usHXDnsrhG .mbr-section-btn {
  color: #232323;
}
.cid-usHXDnsrhG .card-title,
.cid-usHXDnsrhG .card-box {
  color: #ffffff;
}
.cid-usHXDnsrhG .mbr-text,
.cid-usHXDnsrhG .link-wrap {
  color: #ffffff;
}
.cid-usHXDnNzGP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHXDnNzGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXDnNzGP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXDnNzGP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXDnNzGP .row {
  flex-direction: row-reverse;
}
.cid-usHXDnNzGP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXDnNzGP .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXDnNzGP .mbr-text {
  text-align: left;
}
.cid-uSlsmhFAm6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlsmhFAm6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlsmhFAm6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlsmhFAm6 .link {
  color: #e43f3f;
}
.cid-uSlsmhFAm6 .mbr-section-title {
  color: #ffffff;
}
.cid-uSlsmhFAm6 .card-title,
.cid-uSlsmhFAm6 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwrf1cVU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwrf1cVU nav.navbar {
  position: fixed;
}
.cid-vagwrf1cVU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwrf1cVU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwrf1cVU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwrf1cVU .dropdown-item:hover,
.cid-vagwrf1cVU .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwrf1cVU .dropdown-item:hover span {
  color: white;
}
.cid-vagwrf1cVU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwrf1cVU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwrf1cVU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwrf1cVU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwrf1cVU .nav-link {
  position: relative;
}
.cid-vagwrf1cVU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwrf1cVU .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwrf1cVU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwrf1cVU .dropdown-menu,
.cid-vagwrf1cVU .navbar.opened {
  background: #000000 !important;
}
.cid-vagwrf1cVU .nav-item:focus,
.cid-vagwrf1cVU .nav-link:focus {
  outline: none;
}
.cid-vagwrf1cVU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwrf1cVU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwrf1cVU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwrf1cVU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwrf1cVU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwrf1cVU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwrf1cVU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwrf1cVU .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwrf1cVU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwrf1cVU .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwrf1cVU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwrf1cVU .navbar.collapsed {
  justify-content: center;
}
.cid-vagwrf1cVU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwrf1cVU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwrf1cVU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwrf1cVU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwrf1cVU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwrf1cVU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwrf1cVU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwrf1cVU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwrf1cVU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwrf1cVU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwrf1cVU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwrf1cVU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwrf1cVU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwrf1cVU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwrf1cVU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwrf1cVU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwrf1cVU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwrf1cVU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwrf1cVU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwrf1cVU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwrf1cVU .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwrf1cVU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwrf1cVU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwrf1cVU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwrf1cVU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwrf1cVU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwrf1cVU .dropdown-item.active,
.cid-vagwrf1cVU .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwrf1cVU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwrf1cVU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwrf1cVU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwrf1cVU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwrf1cVU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwrf1cVU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwrf1cVU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwrf1cVU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwrf1cVU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwrf1cVU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwrf1cVU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwrf1cVU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwrf1cVU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwrf1cVU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwrf1cVU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwrf1cVU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwrf1cVU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwrf1cVU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwrf1cVU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwrf1cVU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwrf1cVU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwrf1cVU .navbar {
    height: 70px;
  }
  .cid-vagwrf1cVU .navbar.opened {
    height: auto;
  }
  .cid-vagwrf1cVU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXGuvfc5 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXGuvfc5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXGuvfc5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXGuvfc5 .mbr-text,
.cid-usHXGuvfc5 .mbr-section-btn {
  color: #232323;
}
.cid-usHXGuvfc5 .card-title,
.cid-usHXGuvfc5 .card-box {
  color: #ffffff;
}
.cid-usHXGuvfc5 .mbr-text,
.cid-usHXGuvfc5 .link-wrap {
  color: #ffffff;
}
.cid-usHXGv5aEY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-usHXGv5aEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXGv5aEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXGv5aEY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXGv5aEY .row {
  flex-direction: row-reverse;
}
.cid-usHXGv5aEY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXGv5aEY .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXGv5aEY .mbr-text {
  text-align: left;
}
.cid-uSlsnQl4rS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlsnQl4rS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlsnQl4rS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlsnQl4rS .link {
  color: #e43f3f;
}
.cid-uSlsnQl4rS .mbr-section-title {
  color: #ffffff;
}
.cid-uSlsnQl4rS .card-title,
.cid-uSlsnQl4rS .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwwbVvkg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwwbVvkg nav.navbar {
  position: fixed;
}
.cid-vagwwbVvkg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwwbVvkg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwwbVvkg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwwbVvkg .dropdown-item:hover,
.cid-vagwwbVvkg .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwwbVvkg .dropdown-item:hover span {
  color: white;
}
.cid-vagwwbVvkg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwwbVvkg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwwbVvkg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwwbVvkg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwwbVvkg .nav-link {
  position: relative;
}
.cid-vagwwbVvkg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwwbVvkg .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwwbVvkg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwwbVvkg .dropdown-menu,
.cid-vagwwbVvkg .navbar.opened {
  background: #000000 !important;
}
.cid-vagwwbVvkg .nav-item:focus,
.cid-vagwwbVvkg .nav-link:focus {
  outline: none;
}
.cid-vagwwbVvkg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwwbVvkg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwwbVvkg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwwbVvkg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwwbVvkg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwwbVvkg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwwbVvkg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwwbVvkg .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwwbVvkg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwwbVvkg .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwwbVvkg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwwbVvkg .navbar.collapsed {
  justify-content: center;
}
.cid-vagwwbVvkg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwwbVvkg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwwbVvkg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwwbVvkg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwwbVvkg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwwbVvkg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwwbVvkg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwwbVvkg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwwbVvkg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwwbVvkg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwwbVvkg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwwbVvkg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwwbVvkg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwwbVvkg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwwbVvkg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwwbVvkg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwwbVvkg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwwbVvkg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwwbVvkg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwwbVvkg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwwbVvkg .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwwbVvkg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwwbVvkg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwwbVvkg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwwbVvkg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwwbVvkg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwwbVvkg .dropdown-item.active,
.cid-vagwwbVvkg .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwwbVvkg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwwbVvkg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwwbVvkg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwwbVvkg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwwbVvkg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwwbVvkg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwwbVvkg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwwbVvkg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwwbVvkg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwwbVvkg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwwbVvkg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwwbVvkg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwwbVvkg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwwbVvkg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwwbVvkg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwwbVvkg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwwbVvkg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwwbVvkg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwwbVvkg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwwbVvkg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwwbVvkg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwwbVvkg .navbar {
    height: 70px;
  }
  .cid-vagwwbVvkg .navbar.opened {
    height: auto;
  }
  .cid-vagwwbVvkg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXLLRiQi {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXLLRiQi .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXLLRiQi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXLLRiQi .mbr-text,
.cid-usHXLLRiQi .mbr-section-btn {
  color: #232323;
}
.cid-usHXLLRiQi .card-title,
.cid-usHXLLRiQi .card-box {
  color: #ffffff;
}
.cid-usHXLLRiQi .mbr-text,
.cid-usHXLLRiQi .link-wrap {
  color: #ffffff;
}
.cid-usHXLMhKya {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-usHXLMhKya .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXLMhKya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXLMhKya .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXLMhKya .row {
  flex-direction: row-reverse;
}
.cid-usHXLMhKya img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXLMhKya .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXLMhKya .mbr-text {
  text-align: left;
}
.cid-uSlspiIqz4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlspiIqz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlspiIqz4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlspiIqz4 .link {
  color: #e43f3f;
}
.cid-uSlspiIqz4 .mbr-section-title {
  color: #ffffff;
}
.cid-uSlspiIqz4 .card-title,
.cid-uSlspiIqz4 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwxGOZpH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwxGOZpH nav.navbar {
  position: fixed;
}
.cid-vagwxGOZpH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwxGOZpH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwxGOZpH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwxGOZpH .dropdown-item:hover,
.cid-vagwxGOZpH .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwxGOZpH .dropdown-item:hover span {
  color: white;
}
.cid-vagwxGOZpH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwxGOZpH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwxGOZpH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwxGOZpH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwxGOZpH .nav-link {
  position: relative;
}
.cid-vagwxGOZpH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwxGOZpH .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwxGOZpH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwxGOZpH .dropdown-menu,
.cid-vagwxGOZpH .navbar.opened {
  background: #000000 !important;
}
.cid-vagwxGOZpH .nav-item:focus,
.cid-vagwxGOZpH .nav-link:focus {
  outline: none;
}
.cid-vagwxGOZpH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwxGOZpH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwxGOZpH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwxGOZpH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwxGOZpH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwxGOZpH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwxGOZpH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwxGOZpH .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwxGOZpH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwxGOZpH .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwxGOZpH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwxGOZpH .navbar.collapsed {
  justify-content: center;
}
.cid-vagwxGOZpH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwxGOZpH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwxGOZpH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwxGOZpH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwxGOZpH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwxGOZpH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwxGOZpH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwxGOZpH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwxGOZpH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwxGOZpH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwxGOZpH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwxGOZpH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwxGOZpH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwxGOZpH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwxGOZpH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwxGOZpH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwxGOZpH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwxGOZpH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwxGOZpH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwxGOZpH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwxGOZpH .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwxGOZpH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwxGOZpH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwxGOZpH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwxGOZpH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwxGOZpH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwxGOZpH .dropdown-item.active,
.cid-vagwxGOZpH .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwxGOZpH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwxGOZpH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwxGOZpH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwxGOZpH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwxGOZpH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwxGOZpH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwxGOZpH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwxGOZpH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwxGOZpH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwxGOZpH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwxGOZpH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwxGOZpH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwxGOZpH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwxGOZpH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwxGOZpH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwxGOZpH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwxGOZpH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwxGOZpH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwxGOZpH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwxGOZpH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwxGOZpH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwxGOZpH .navbar {
    height: 70px;
  }
  .cid-vagwxGOZpH .navbar.opened {
    height: auto;
  }
  .cid-vagwxGOZpH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXQ0rGLd {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXQ0rGLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXQ0rGLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXQ0rGLd .mbr-text,
.cid-usHXQ0rGLd .mbr-section-btn {
  color: #232323;
}
.cid-usHXQ0rGLd .card-title,
.cid-usHXQ0rGLd .card-box {
  color: #ffffff;
}
.cid-usHXQ0rGLd .mbr-text,
.cid-usHXQ0rGLd .link-wrap {
  color: #ffffff;
}
.cid-usHXQ0RcP4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHXQ0RcP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXQ0RcP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXQ0RcP4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXQ0RcP4 .row {
  flex-direction: row-reverse;
}
.cid-usHXQ0RcP4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXQ0RcP4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXQ0RcP4 .mbr-text {
  text-align: left;
}
.cid-uSlsqXDN3e {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlsqXDN3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlsqXDN3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlsqXDN3e .link {
  color: #e43f3f;
}
.cid-uSlsqXDN3e .mbr-section-title {
  color: #ffffff;
}
.cid-uSlsqXDN3e .card-title,
.cid-uSlsqXDN3e .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwzr9wn0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwzr9wn0 nav.navbar {
  position: fixed;
}
.cid-vagwzr9wn0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwzr9wn0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwzr9wn0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwzr9wn0 .dropdown-item:hover,
.cid-vagwzr9wn0 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwzr9wn0 .dropdown-item:hover span {
  color: white;
}
.cid-vagwzr9wn0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwzr9wn0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwzr9wn0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwzr9wn0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwzr9wn0 .nav-link {
  position: relative;
}
.cid-vagwzr9wn0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwzr9wn0 .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwzr9wn0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwzr9wn0 .dropdown-menu,
.cid-vagwzr9wn0 .navbar.opened {
  background: #000000 !important;
}
.cid-vagwzr9wn0 .nav-item:focus,
.cid-vagwzr9wn0 .nav-link:focus {
  outline: none;
}
.cid-vagwzr9wn0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwzr9wn0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwzr9wn0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwzr9wn0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwzr9wn0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwzr9wn0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwzr9wn0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwzr9wn0 .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwzr9wn0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwzr9wn0 .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwzr9wn0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwzr9wn0 .navbar.collapsed {
  justify-content: center;
}
.cid-vagwzr9wn0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwzr9wn0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwzr9wn0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwzr9wn0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwzr9wn0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwzr9wn0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwzr9wn0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwzr9wn0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwzr9wn0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwzr9wn0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwzr9wn0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwzr9wn0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwzr9wn0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwzr9wn0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwzr9wn0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwzr9wn0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwzr9wn0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwzr9wn0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwzr9wn0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwzr9wn0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwzr9wn0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwzr9wn0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwzr9wn0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwzr9wn0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwzr9wn0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwzr9wn0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwzr9wn0 .dropdown-item.active,
.cid-vagwzr9wn0 .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwzr9wn0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwzr9wn0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwzr9wn0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwzr9wn0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwzr9wn0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwzr9wn0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwzr9wn0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwzr9wn0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwzr9wn0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwzr9wn0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwzr9wn0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwzr9wn0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwzr9wn0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwzr9wn0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwzr9wn0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwzr9wn0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwzr9wn0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwzr9wn0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwzr9wn0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwzr9wn0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwzr9wn0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwzr9wn0 .navbar {
    height: 70px;
  }
  .cid-vagwzr9wn0 .navbar.opened {
    height: auto;
  }
  .cid-vagwzr9wn0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXTjTCd7 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXTjTCd7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXTjTCd7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXTjTCd7 .mbr-text,
.cid-usHXTjTCd7 .mbr-section-btn {
  color: #232323;
}
.cid-usHXTjTCd7 .card-title,
.cid-usHXTjTCd7 .card-box {
  color: #ffffff;
}
.cid-usHXTjTCd7 .mbr-text,
.cid-usHXTjTCd7 .link-wrap {
  color: #ffffff;
}
.cid-usHXTkiiet {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHXTkiiet .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXTkiiet .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXTkiiet .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXTkiiet .row {
  flex-direction: row-reverse;
}
.cid-usHXTkiiet img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXTkiiet .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXTkiiet .mbr-text {
  text-align: left;
}
.cid-uSltgcDwV5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSltgcDwV5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSltgcDwV5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSltgcDwV5 .link {
  color: #e43f3f;
}
.cid-uSltgcDwV5 .mbr-section-title {
  color: #ffffff;
}
.cid-uSltgcDwV5 .card-title,
.cid-uSltgcDwV5 .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwE5xu1P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwE5xu1P nav.navbar {
  position: fixed;
}
.cid-vagwE5xu1P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwE5xu1P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwE5xu1P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwE5xu1P .dropdown-item:hover,
.cid-vagwE5xu1P .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwE5xu1P .dropdown-item:hover span {
  color: white;
}
.cid-vagwE5xu1P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwE5xu1P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwE5xu1P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwE5xu1P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwE5xu1P .nav-link {
  position: relative;
}
.cid-vagwE5xu1P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwE5xu1P .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwE5xu1P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwE5xu1P .dropdown-menu,
.cid-vagwE5xu1P .navbar.opened {
  background: #000000 !important;
}
.cid-vagwE5xu1P .nav-item:focus,
.cid-vagwE5xu1P .nav-link:focus {
  outline: none;
}
.cid-vagwE5xu1P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwE5xu1P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwE5xu1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwE5xu1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwE5xu1P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwE5xu1P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwE5xu1P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwE5xu1P .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwE5xu1P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwE5xu1P .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwE5xu1P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwE5xu1P .navbar.collapsed {
  justify-content: center;
}
.cid-vagwE5xu1P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwE5xu1P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwE5xu1P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwE5xu1P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwE5xu1P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwE5xu1P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwE5xu1P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwE5xu1P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwE5xu1P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwE5xu1P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwE5xu1P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwE5xu1P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwE5xu1P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwE5xu1P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwE5xu1P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwE5xu1P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwE5xu1P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwE5xu1P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwE5xu1P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwE5xu1P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwE5xu1P .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwE5xu1P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwE5xu1P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwE5xu1P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwE5xu1P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwE5xu1P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwE5xu1P .dropdown-item.active,
.cid-vagwE5xu1P .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwE5xu1P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwE5xu1P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwE5xu1P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwE5xu1P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwE5xu1P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwE5xu1P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwE5xu1P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwE5xu1P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwE5xu1P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwE5xu1P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwE5xu1P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwE5xu1P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwE5xu1P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwE5xu1P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwE5xu1P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwE5xu1P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwE5xu1P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwE5xu1P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwE5xu1P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwE5xu1P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwE5xu1P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwE5xu1P .navbar {
    height: 70px;
  }
  .cid-vagwE5xu1P .navbar.opened {
    height: auto;
  }
  .cid-vagwE5xu1P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHXX7Rn6k {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHXX7Rn6k .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXX7Rn6k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHXX7Rn6k .mbr-text,
.cid-usHXX7Rn6k .mbr-section-btn {
  color: #232323;
}
.cid-usHXX7Rn6k .card-title,
.cid-usHXX7Rn6k .card-box {
  color: #ffffff;
}
.cid-usHXX7Rn6k .mbr-text,
.cid-usHXX7Rn6k .link-wrap {
  color: #ffffff;
}
.cid-usHXX8etIk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHXX8etIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHXX8etIk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHXX8etIk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHXX8etIk .row {
  flex-direction: row-reverse;
}
.cid-usHXX8etIk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHXX8etIk .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHXX8etIk .mbr-text {
  text-align: left;
}
.cid-uSlti3txvZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSlti3txvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSlti3txvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSlti3txvZ .link {
  color: #e43f3f;
}
.cid-uSlti3txvZ .mbr-section-title {
  color: #ffffff;
}
.cid-uSlti3txvZ .card-title,
.cid-uSlti3txvZ .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwFOt8Fc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwFOt8Fc nav.navbar {
  position: fixed;
}
.cid-vagwFOt8Fc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwFOt8Fc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwFOt8Fc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwFOt8Fc .dropdown-item:hover,
.cid-vagwFOt8Fc .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwFOt8Fc .dropdown-item:hover span {
  color: white;
}
.cid-vagwFOt8Fc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwFOt8Fc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwFOt8Fc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwFOt8Fc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwFOt8Fc .nav-link {
  position: relative;
}
.cid-vagwFOt8Fc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwFOt8Fc .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwFOt8Fc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwFOt8Fc .dropdown-menu,
.cid-vagwFOt8Fc .navbar.opened {
  background: #000000 !important;
}
.cid-vagwFOt8Fc .nav-item:focus,
.cid-vagwFOt8Fc .nav-link:focus {
  outline: none;
}
.cid-vagwFOt8Fc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwFOt8Fc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwFOt8Fc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwFOt8Fc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwFOt8Fc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwFOt8Fc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwFOt8Fc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwFOt8Fc .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwFOt8Fc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwFOt8Fc .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwFOt8Fc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwFOt8Fc .navbar.collapsed {
  justify-content: center;
}
.cid-vagwFOt8Fc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwFOt8Fc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwFOt8Fc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwFOt8Fc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwFOt8Fc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwFOt8Fc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwFOt8Fc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwFOt8Fc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwFOt8Fc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwFOt8Fc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwFOt8Fc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwFOt8Fc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwFOt8Fc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwFOt8Fc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwFOt8Fc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwFOt8Fc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwFOt8Fc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwFOt8Fc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwFOt8Fc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwFOt8Fc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwFOt8Fc .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwFOt8Fc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwFOt8Fc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwFOt8Fc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwFOt8Fc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwFOt8Fc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwFOt8Fc .dropdown-item.active,
.cid-vagwFOt8Fc .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwFOt8Fc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwFOt8Fc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwFOt8Fc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwFOt8Fc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwFOt8Fc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwFOt8Fc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwFOt8Fc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwFOt8Fc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwFOt8Fc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwFOt8Fc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwFOt8Fc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwFOt8Fc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwFOt8Fc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwFOt8Fc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwFOt8Fc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwFOt8Fc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwFOt8Fc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwFOt8Fc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwFOt8Fc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwFOt8Fc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwFOt8Fc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwFOt8Fc .navbar {
    height: 70px;
  }
  .cid-vagwFOt8Fc .navbar.opened {
    height: auto;
  }
  .cid-vagwFOt8Fc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHY8dEJb0 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHY8dEJb0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHY8dEJb0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHY8dEJb0 .mbr-text,
.cid-usHY8dEJb0 .mbr-section-btn {
  color: #232323;
}
.cid-usHY8dEJb0 .card-title,
.cid-usHY8dEJb0 .card-box {
  color: #ffffff;
}
.cid-usHY8dEJb0 .mbr-text,
.cid-usHY8dEJb0 .link-wrap {
  color: #ffffff;
}
.cid-usHY8e2SI6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHY8e2SI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHY8e2SI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHY8e2SI6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHY8e2SI6 .row {
  flex-direction: row-reverse;
}
.cid-usHY8e2SI6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHY8e2SI6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHY8e2SI6 .mbr-text {
  text-align: left;
}
.cid-uSltjU4zMb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSltjU4zMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSltjU4zMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSltjU4zMb .link {
  color: #e43f3f;
}
.cid-uSltjU4zMb .mbr-section-title {
  color: #ffffff;
}
.cid-uSltjU4zMb .card-title,
.cid-uSltjU4zMb .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwLGZFGk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwLGZFGk nav.navbar {
  position: fixed;
}
.cid-vagwLGZFGk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwLGZFGk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwLGZFGk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwLGZFGk .dropdown-item:hover,
.cid-vagwLGZFGk .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwLGZFGk .dropdown-item:hover span {
  color: white;
}
.cid-vagwLGZFGk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwLGZFGk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwLGZFGk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwLGZFGk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwLGZFGk .nav-link {
  position: relative;
}
.cid-vagwLGZFGk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwLGZFGk .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwLGZFGk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwLGZFGk .dropdown-menu,
.cid-vagwLGZFGk .navbar.opened {
  background: #000000 !important;
}
.cid-vagwLGZFGk .nav-item:focus,
.cid-vagwLGZFGk .nav-link:focus {
  outline: none;
}
.cid-vagwLGZFGk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwLGZFGk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwLGZFGk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwLGZFGk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwLGZFGk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwLGZFGk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwLGZFGk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwLGZFGk .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwLGZFGk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwLGZFGk .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwLGZFGk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwLGZFGk .navbar.collapsed {
  justify-content: center;
}
.cid-vagwLGZFGk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwLGZFGk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwLGZFGk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwLGZFGk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwLGZFGk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwLGZFGk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwLGZFGk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwLGZFGk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwLGZFGk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwLGZFGk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwLGZFGk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwLGZFGk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwLGZFGk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwLGZFGk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwLGZFGk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwLGZFGk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwLGZFGk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwLGZFGk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwLGZFGk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwLGZFGk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwLGZFGk .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwLGZFGk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwLGZFGk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwLGZFGk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwLGZFGk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwLGZFGk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwLGZFGk .dropdown-item.active,
.cid-vagwLGZFGk .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwLGZFGk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwLGZFGk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwLGZFGk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwLGZFGk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwLGZFGk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwLGZFGk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwLGZFGk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwLGZFGk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwLGZFGk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwLGZFGk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwLGZFGk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwLGZFGk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwLGZFGk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwLGZFGk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwLGZFGk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwLGZFGk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwLGZFGk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwLGZFGk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwLGZFGk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwLGZFGk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwLGZFGk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwLGZFGk .navbar {
    height: 70px;
  }
  .cid-vagwLGZFGk .navbar.opened {
    height: auto;
  }
  .cid-vagwLGZFGk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHYacDlZr {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHYacDlZr .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYacDlZr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYacDlZr .mbr-text,
.cid-usHYacDlZr .mbr-section-btn {
  color: #232323;
}
.cid-usHYacDlZr .card-title,
.cid-usHYacDlZr .card-box {
  color: #ffffff;
}
.cid-usHYacDlZr .mbr-text,
.cid-usHYacDlZr .link-wrap {
  color: #ffffff;
}
.cid-usHYacWAE7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usHYacWAE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYacWAE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHYacWAE7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHYacWAE7 .row {
  flex-direction: row-reverse;
}
.cid-usHYacWAE7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHYacWAE7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHYacWAE7 .mbr-text {
  text-align: left;
}
.cid-uSltlHXb5E {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSltlHXb5E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSltlHXb5E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSltlHXb5E .link {
  color: #e43f3f;
}
.cid-uSltlHXb5E .mbr-section-title {
  color: #ffffff;
}
.cid-uSltlHXb5E .card-title,
.cid-uSltlHXb5E .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwNq867I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwNq867I nav.navbar {
  position: fixed;
}
.cid-vagwNq867I .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwNq867I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwNq867I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwNq867I .dropdown-item:hover,
.cid-vagwNq867I .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwNq867I .dropdown-item:hover span {
  color: white;
}
.cid-vagwNq867I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwNq867I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwNq867I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwNq867I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwNq867I .nav-link {
  position: relative;
}
.cid-vagwNq867I .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwNq867I .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwNq867I .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwNq867I .dropdown-menu,
.cid-vagwNq867I .navbar.opened {
  background: #000000 !important;
}
.cid-vagwNq867I .nav-item:focus,
.cid-vagwNq867I .nav-link:focus {
  outline: none;
}
.cid-vagwNq867I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwNq867I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwNq867I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwNq867I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwNq867I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwNq867I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwNq867I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwNq867I .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwNq867I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwNq867I .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwNq867I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwNq867I .navbar.collapsed {
  justify-content: center;
}
.cid-vagwNq867I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwNq867I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwNq867I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwNq867I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwNq867I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwNq867I .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwNq867I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwNq867I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwNq867I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwNq867I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwNq867I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwNq867I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwNq867I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwNq867I .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwNq867I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwNq867I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwNq867I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwNq867I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwNq867I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwNq867I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwNq867I .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwNq867I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwNq867I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwNq867I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwNq867I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwNq867I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwNq867I .dropdown-item.active,
.cid-vagwNq867I .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwNq867I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwNq867I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwNq867I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwNq867I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwNq867I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwNq867I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwNq867I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwNq867I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwNq867I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwNq867I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwNq867I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwNq867I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwNq867I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwNq867I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwNq867I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwNq867I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwNq867I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwNq867I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwNq867I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwNq867I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwNq867I .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwNq867I .navbar {
    height: 70px;
  }
  .cid-vagwNq867I .navbar.opened {
    height: auto;
  }
  .cid-vagwNq867I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHYM1J0qL {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/20211121-150005-2000x690.jpg");
}
.cid-usHYM1J0qL .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYM1J0qL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYM1J0qL .mbr-text,
.cid-usHYM1J0qL .mbr-section-btn {
  color: #232323;
}
.cid-usHYM1J0qL .card-title,
.cid-usHYM1J0qL .card-box {
  color: #ffffff;
}
.cid-usHYM1J0qL .mbr-text,
.cid-usHYM1J0qL .link-wrap {
  color: #ffffff;
}
.cid-usHYM275q6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-usHYM275q6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYM275q6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHYM275q6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHYM275q6 .row {
  flex-direction: row-reverse;
}
.cid-usHYM275q6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usHYM275q6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-usHYM275q6 .mbr-text {
  text-align: left;
}
.cid-uSltnDXAOP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSltnDXAOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSltnDXAOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSltnDXAOP .link {
  color: #e43f3f;
}
.cid-uSltnDXAOP .mbr-section-title {
  color: #ffffff;
}
.cid-uSltnDXAOP .card-title,
.cid-uSltnDXAOP .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwOZbR8r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwOZbR8r nav.navbar {
  position: fixed;
}
.cid-vagwOZbR8r .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwOZbR8r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwOZbR8r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwOZbR8r .dropdown-item:hover,
.cid-vagwOZbR8r .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwOZbR8r .dropdown-item:hover span {
  color: white;
}
.cid-vagwOZbR8r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwOZbR8r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwOZbR8r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwOZbR8r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwOZbR8r .nav-link {
  position: relative;
}
.cid-vagwOZbR8r .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwOZbR8r .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwOZbR8r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwOZbR8r .dropdown-menu,
.cid-vagwOZbR8r .navbar.opened {
  background: #000000 !important;
}
.cid-vagwOZbR8r .nav-item:focus,
.cid-vagwOZbR8r .nav-link:focus {
  outline: none;
}
.cid-vagwOZbR8r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwOZbR8r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwOZbR8r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwOZbR8r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwOZbR8r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwOZbR8r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwOZbR8r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwOZbR8r .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwOZbR8r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwOZbR8r .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwOZbR8r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwOZbR8r .navbar.collapsed {
  justify-content: center;
}
.cid-vagwOZbR8r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwOZbR8r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwOZbR8r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwOZbR8r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwOZbR8r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwOZbR8r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwOZbR8r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwOZbR8r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwOZbR8r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwOZbR8r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwOZbR8r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwOZbR8r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwOZbR8r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwOZbR8r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwOZbR8r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwOZbR8r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwOZbR8r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwOZbR8r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwOZbR8r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwOZbR8r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwOZbR8r .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwOZbR8r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwOZbR8r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwOZbR8r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwOZbR8r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwOZbR8r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwOZbR8r .dropdown-item.active,
.cid-vagwOZbR8r .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwOZbR8r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwOZbR8r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwOZbR8r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwOZbR8r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwOZbR8r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwOZbR8r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwOZbR8r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwOZbR8r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwOZbR8r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwOZbR8r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwOZbR8r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwOZbR8r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwOZbR8r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwOZbR8r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwOZbR8r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwOZbR8r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwOZbR8r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwOZbR8r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwOZbR8r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwOZbR8r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwOZbR8r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwOZbR8r .navbar {
    height: 70px;
  }
  .cid-vagwOZbR8r .navbar.opened {
    height: auto;
  }
  .cid-vagwOZbR8r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHYOVSs4D {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-usHYOVSs4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYOVSs4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYOVSs4D .mbr-section-title {
  color: #ffffff;
}
.cid-usHYOWjf3s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-usHYOWjf3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYOWjf3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-usHYOWjf3s .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usHYOWjf3s .row {
  flex-direction: row-reverse;
}
.cid-usHYOWjf3s img {
  width: 100%;
}
.cid-usHYOWJiid {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-usHYOWJiid .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYOWJiid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYOWJiid .nav-tabs .nav-item.open .nav-link:focus,
.cid-usHYOWJiid .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-usHYOWJiid .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #e43f3f;
}
@media (max-width: 767px) {
  .cid-usHYOWJiid .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-usHYOWJiid .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-usHYOWJiid .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-usHYOWJiid .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-usHYOWJiid .nav-link,
.cid-usHYOWJiid .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-usHYOWJiid .nav-tabs .nav-link.active {
  color: #e43f3f;
  border-bottom: 3px solid #e43f3f;
}
.cid-usHYOWJiid H4 {
  text-align: center;
}
.cid-usHYOWJiid H3 {
  text-align: center;
  color: #ffffff;
}
.cid-usHYOWJiid P {
  color: #bbbbbb;
}
.cid-uSltpJx2zl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSltpJx2zl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSltpJx2zl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSltpJx2zl .link {
  color: #e43f3f;
}
.cid-uSltpJx2zl .mbr-section-title {
  color: #ffffff;
}
.cid-uSltpJx2zl .card-title,
.cid-uSltpJx2zl .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwRCu6cL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwRCu6cL nav.navbar {
  position: fixed;
}
.cid-vagwRCu6cL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwRCu6cL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwRCu6cL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwRCu6cL .dropdown-item:hover,
.cid-vagwRCu6cL .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwRCu6cL .dropdown-item:hover span {
  color: white;
}
.cid-vagwRCu6cL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwRCu6cL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwRCu6cL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwRCu6cL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwRCu6cL .nav-link {
  position: relative;
}
.cid-vagwRCu6cL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwRCu6cL .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwRCu6cL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwRCu6cL .dropdown-menu,
.cid-vagwRCu6cL .navbar.opened {
  background: #000000 !important;
}
.cid-vagwRCu6cL .nav-item:focus,
.cid-vagwRCu6cL .nav-link:focus {
  outline: none;
}
.cid-vagwRCu6cL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwRCu6cL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwRCu6cL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwRCu6cL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwRCu6cL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwRCu6cL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwRCu6cL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwRCu6cL .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwRCu6cL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwRCu6cL .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwRCu6cL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwRCu6cL .navbar.collapsed {
  justify-content: center;
}
.cid-vagwRCu6cL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwRCu6cL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwRCu6cL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwRCu6cL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwRCu6cL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwRCu6cL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwRCu6cL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwRCu6cL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwRCu6cL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwRCu6cL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwRCu6cL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwRCu6cL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwRCu6cL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwRCu6cL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwRCu6cL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwRCu6cL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwRCu6cL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwRCu6cL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwRCu6cL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwRCu6cL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwRCu6cL .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwRCu6cL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwRCu6cL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwRCu6cL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwRCu6cL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwRCu6cL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwRCu6cL .dropdown-item.active,
.cid-vagwRCu6cL .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwRCu6cL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwRCu6cL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwRCu6cL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwRCu6cL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwRCu6cL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwRCu6cL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwRCu6cL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwRCu6cL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwRCu6cL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwRCu6cL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwRCu6cL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwRCu6cL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwRCu6cL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwRCu6cL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwRCu6cL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwRCu6cL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwRCu6cL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwRCu6cL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwRCu6cL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwRCu6cL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwRCu6cL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwRCu6cL .navbar {
    height: 70px;
  }
  .cid-vagwRCu6cL .navbar.opened {
    height: auto;
  }
  .cid-vagwRCu6cL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHYR3mIST {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/100-4348-2000x526.jpg");
}
.cid-usHYR3mIST .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYR3mIST .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYR3mIST .mbr-text,
.cid-usHYR3mIST .mbr-section-btn {
  color: #232323;
}
.cid-usHYR3mIST .card-title,
.cid-usHYR3mIST .card-box {
  color: #ffffff;
}
.cid-usHYR3mIST .mbr-text,
.cid-usHYR3mIST .link-wrap {
  color: #ffffff;
}
.cid-usHYR3HCVm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-usHYR3HCVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYR3HCVm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYR3HCVm .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHYR3HCVm .mbr-section-title,
.cid-usHYR3HCVm .mbr-section-subtitle {
  text-align: center;
}
.cid-usHYR3HCVm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHYR3HCVm .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHYR3HCVm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHYR3HCVm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHYR3HCVm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHYR3HCVm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHYR4xqp9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-usHYR4xqp9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYR4xqp9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYR4xqp9 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHYR4xqp9 .mbr-section-title,
.cid-usHYR4xqp9 .mbr-section-subtitle {
  text-align: center;
}
.cid-usHYR4xqp9 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHYR4xqp9 .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHYR4xqp9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHYR4xqp9 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHYR4xqp9 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHYR4xqp9 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHYR5cDEo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHYR5cDEo .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYR5cDEo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYR5cDEo .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHYR5cDEo .mbr-section-title,
.cid-usHYR5cDEo .mbr-section-subtitle {
  text-align: center;
}
.cid-usHYR5cDEo .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHYR5cDEo .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHYR5cDEo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHYR5cDEo .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHYR5cDEo .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHYR5cDEo .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHYR5OuVn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHYR5OuVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYR5OuVn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYR5OuVn .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHYR5OuVn .mbr-section-title,
.cid-usHYR5OuVn .mbr-section-subtitle {
  text-align: center;
}
.cid-usHYR5OuVn .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHYR5OuVn .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHYR5OuVn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHYR5OuVn .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHYR5OuVn .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHYR5OuVn .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHYR6o1uf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHYR6o1uf .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYR6o1uf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYR6o1uf .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHYR6o1uf .mbr-section-title,
.cid-usHYR6o1uf .mbr-section-subtitle {
  text-align: center;
}
.cid-usHYR6o1uf .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHYR6o1uf .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHYR6o1uf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHYR6o1uf .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHYR6o1uf .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHYR6o1uf .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usHYR71iMX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usHYR71iMX .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYR71iMX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usHYR71iMX .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-usHYR71iMX .mbr-section-title,
.cid-usHYR71iMX .mbr-section-subtitle {
  text-align: center;
}
.cid-usHYR71iMX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usHYR71iMX .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-usHYR71iMX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-usHYR71iMX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usHYR71iMX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHYR71iMX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uSltsAWxxp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSltsAWxxp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSltsAWxxp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSltsAWxxp .link {
  color: #e43f3f;
}
.cid-uSltsAWxxp .mbr-section-title {
  color: #ffffff;
}
.cid-uSltsAWxxp .card-title,
.cid-uSltsAWxxp .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-vagwU7Uv2o {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vagwU7Uv2o nav.navbar {
  position: fixed;
}
.cid-vagwU7Uv2o .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwU7Uv2o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vagwU7Uv2o .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vagwU7Uv2o .dropdown-item:hover,
.cid-vagwU7Uv2o .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-vagwU7Uv2o .dropdown-item:hover span {
  color: white;
}
.cid-vagwU7Uv2o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vagwU7Uv2o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vagwU7Uv2o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vagwU7Uv2o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vagwU7Uv2o .nav-link {
  position: relative;
}
.cid-vagwU7Uv2o .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vagwU7Uv2o .container {
    flex-wrap: nowrap;
  }
}
.cid-vagwU7Uv2o .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vagwU7Uv2o .dropdown-menu,
.cid-vagwU7Uv2o .navbar.opened {
  background: #000000 !important;
}
.cid-vagwU7Uv2o .nav-item:focus,
.cid-vagwU7Uv2o .nav-link:focus {
  outline: none;
}
.cid-vagwU7Uv2o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vagwU7Uv2o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vagwU7Uv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vagwU7Uv2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vagwU7Uv2o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vagwU7Uv2o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vagwU7Uv2o .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vagwU7Uv2o .navbar.opened {
  transition: all 0.3s;
}
.cid-vagwU7Uv2o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vagwU7Uv2o .navbar .navbar-logo img {
  width: auto;
}
.cid-vagwU7Uv2o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vagwU7Uv2o .navbar.collapsed {
  justify-content: center;
}
.cid-vagwU7Uv2o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vagwU7Uv2o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vagwU7Uv2o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-vagwU7Uv2o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vagwU7Uv2o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vagwU7Uv2o .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vagwU7Uv2o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vagwU7Uv2o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vagwU7Uv2o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vagwU7Uv2o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vagwU7Uv2o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vagwU7Uv2o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vagwU7Uv2o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vagwU7Uv2o .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vagwU7Uv2o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vagwU7Uv2o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vagwU7Uv2o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vagwU7Uv2o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vagwU7Uv2o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vagwU7Uv2o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vagwU7Uv2o .navbar.navbar-short {
  min-height: 60px;
}
.cid-vagwU7Uv2o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vagwU7Uv2o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vagwU7Uv2o .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vagwU7Uv2o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vagwU7Uv2o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vagwU7Uv2o .dropdown-item.active,
.cid-vagwU7Uv2o .dropdown-item:active {
  background-color: transparent;
}
.cid-vagwU7Uv2o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vagwU7Uv2o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vagwU7Uv2o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vagwU7Uv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vagwU7Uv2o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vagwU7Uv2o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vagwU7Uv2o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vagwU7Uv2o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vagwU7Uv2o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vagwU7Uv2o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vagwU7Uv2o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vagwU7Uv2o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwU7Uv2o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vagwU7Uv2o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vagwU7Uv2o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwU7Uv2o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vagwU7Uv2o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vagwU7Uv2o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vagwU7Uv2o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vagwU7Uv2o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vagwU7Uv2o .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vagwU7Uv2o .navbar {
    height: 70px;
  }
  .cid-vagwU7Uv2o .navbar.opened {
    height: auto;
  }
  .cid-vagwU7Uv2o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usHYUSkKyS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-usHYUSkKyS .mbr-fallback-image.disabled {
  display: none;
}
.cid-usHYUSkKyS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-usHYUSkKyS .row {
    flex-direction: column-reverse;
  }
  .cid-usHYUSkKyS .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-usHYUSkKyS .google-map {
  height: 100%;
  position: relative;
}
.cid-usHYUSkKyS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-usHYUSkKyS .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-usHYUSkKyS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-usHYUSkKyS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-usHYUSkKyS .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-usHYUSkKyS .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #232323;
}
.cid-usHYUSkKyS .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-usHYUSkKyS .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usHYUSkKyS .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-usHYUSkKyS .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e43f3f;
}
.cid-usHYUSkKyS .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-usHYUSkKyS .mbr-section-title {
  color: #ffffff;
}
.cid-usHYUSkKyS .card-title {
  color: #ffffff;
}
.cid-usHYUSkKyS P {
  color: #e43f3f;
}
.cid-uSltus8Pdg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondo-piedras-textura-1984x1609.jpg");
}
.cid-uSltus8Pdg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSltus8Pdg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSltus8Pdg .link {
  color: #e43f3f;
}
.cid-uSltus8Pdg .mbr-section-title {
  color: #ffffff;
}
.cid-uSltus8Pdg .card-title,
.cid-uSltus8Pdg .card-box {
  color: #ffffff;
}
.cid-utP4j4cGXm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-utP4j4cGXm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utP4j4cGXm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utP4j4cGXm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utP4j4cGXm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utP4j4cGXm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utP4j4cGXm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utP4j4cGXm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utP4j4cGXm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utP4j4cGXm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utP4j4cGXm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utP4j4cGXm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utP4j4cGXm .media-container-row .row-copirayt p {
  width: 100%;
}
