.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Roboto', 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.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #000000 !important;
}
.bg-success {
  background-color: #02876a !important;
}
.bg-info {
  background-color: #3f79dc !important;
}
.bg-warning {
  background-color: #fc6381 !important;
}
.bg-danger {
  background-color: #02876a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #3f79dc !important;
  border-color: #3f79dc !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: #1e50a6 !important;
  border-color: #1e50a6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1e50a6 !important;
  border-color: #1e50a6 !important;
}
.btn-success,
.btn-success:active {
  background-color: #02876a !important;
  border-color: #02876a !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: #013227 !important;
  border-color: #013227 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #013227 !important;
  border-color: #013227 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fc6381 !important;
  border-color: #fc6381 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #fa0e3c !important;
  border-color: #fa0e3c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #fa0e3c !important;
  border-color: #fa0e3c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #02876a !important;
  border-color: #02876a !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: #013227 !important;
  border-color: #013227 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #013227 !important;
  border-color: #013227 !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #3f79dc;
  color: #3f79dc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1e50a6 !important;
  background-color: transparent!important;
  border-color: #1e50a6 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3f79dc !important;
  border-color: #3f79dc !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #02876a;
  color: #02876a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #013227 !important;
  background-color: transparent!important;
  border-color: #013227 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #02876a !important;
  border-color: #02876a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fc6381;
  color: #fc6381;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fa0e3c !important;
  background-color: transparent!important;
  border-color: #fa0e3c !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #fc6381 !important;
  border-color: #fc6381 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #02876a;
  color: #02876a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #013227 !important;
  background-color: transparent!important;
  border-color: #013227 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #02876a !important;
  border-color: #02876a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #02876a !important;
}
.text-info {
  color: #3f79dc !important;
}
.text-warning {
  color: #fc6381 !important;
}
.text-danger {
  color: #02876a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #01221b !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1c4a99 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f40534 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #01221b !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3f79dc;
}
.alert-warning {
  background-color: #fc6381;
}
.alert-danger {
  background-color: #02876a;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #0dfbc7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ecf1fb;
}
.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: #0dfbc7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%23000000' %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-sQV5drU9tl .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sQV5drU9tl .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sQV5drU9tl a {
  font-style: normal;
}
.cid-sQV5drU9tl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sQV5drU9tl .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sQV5drU9tl .nav-item:focus,
.cid-sQV5drU9tl .nav-link:focus {
  outline: none;
}
.cid-sQV5drU9tl .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sQV5drU9tl .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sQV5drU9tl .menu-logo {
  margin-right: auto;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sQV5drU9tl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQV5drU9tl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sQV5drU9tl .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sQV5drU9tl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sQV5drU9tl button.navbar-toggler:focus {
  outline: none;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQV5drU9tl .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sQV5drU9tl .collapsed .btn {
  display: flex;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sQV5drU9tl .collapsed button.navbar-toggler {
  display: block;
}
.cid-sQV5drU9tl .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sQV5drU9tl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sQV5drU9tl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sQV5drU9tl .navbar-expand {
    flex-direction: column;
  }
  .cid-sQV5drU9tl img {
    height: 3.8rem !important;
  }
  .cid-sQV5drU9tl .btn {
    display: flex;
  }
  .cid-sQV5drU9tl button.navbar-toggler {
    display: block;
  }
  .cid-sQV5drU9tl .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sQV5drU9tl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sQV5drU9tl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing,
  .cid-sQV5drU9tl .navbar-collapse.show {
    display: block !important;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-nav,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-buttons,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sQV5drU9tl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sQV5drU9tl .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sQV5drU9tl .navbar-collapse {
  flex-basis: auto;
}
.cid-sQV5drU9tl .nav-link:hover,
.cid-sQV5drU9tl .dropdown-item:hover {
  color: #02876a !important;
}
.cid-sQV5e5dcd3 {
  background-image: url("../../../assets/images/logo-portada-2027.png");
}
.cid-sQV5e5dcd3 H1 {
  color: #ffffff;
}
.cid-uankcxXbi4 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uankcxXbi4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uankcxXbi4 .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-uankcxXbi4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uankcxXbi4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uankcxXbi4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uankcxXbi4 .mbr-section-title {
  text-align: center;
}
.cid-uankcxXbi4 .mbr-text {
  text-align: center;
}
.cid-vbkBLiRs6W {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vbkBLiRs6W H2 {
  color: #000000;
}
.cid-vbkBLiRs6W .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-tAJTTgPVk2 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tAJTTgPVk2 .mbr-section-title {
  color: #ffffff;
}
.cid-tAJTTgPVk2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tAJTTgPVk2 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-vdazgh9tOY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-vdazgh9tOY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdazgh9tOY .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-vdazgh9tOY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vdazgh9tOY .row {
  flex-direction: row-reverse;
}
.cid-vdazgh9tOY img {
  width: 100%;
}
.cid-vdazgh9tOY .mbr-description {
  color: #ffffff;
}
.cid-sUqsKdmyMv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #02876a;
}
@media (max-width: 991px) {
  .cid-sUqsKdmyMv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUqsKdmyMv .row {
  flex-direction: row-reverse;
}
.cid-sUqsKdmyMv img {
  width: 100%;
}
.cid-tAJTUTnENr {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tAJTUTnENr .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-tAJTUTnENr .panel-group {
  border: none;
}
.cid-tAJTUTnENr .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tAJTUTnENr .panel-body,
.cid-tAJTUTnENr .card-header {
  padding: 1rem 0;
}
.cid-tAJTUTnENr .panel-title-edit {
  color: #02876a;
}
.cid-tAJTUTnENr .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tAJTUTnENr H3 {
  color: #000000;
}
.cid-tAJTUTnENr H4 {
  color: #000000;
}
.cid-tAJTUTnENr .panel-text {
  color: #000000;
}
.cid-vbkBIVzX9q {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vbkBIVzX9q H2 {
  color: #000000;
}
.cid-vbkBIVzX9q .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-tAJTVCemaj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tAJTVCemaj .mbr-text {
  color: #ffffff;
}
.cid-tAJTVCemaj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tAJTWftubI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAJTWftubI .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tAJTWftubI .mbr-section-title {
  color: #02876a;
  text-align: center;
}
.cid-tAJTWQS02z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tAJTWQS02z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tAJTWQS02z .row {
  flex-direction: row-reverse;
}
.cid-tAJTWQS02z img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tAJTWQS02z .text-wrapper {
    padding: 2rem;
  }
}
.cid-tAJTWQS02z .mbr-text {
  color: #02876a;
  text-align: left;
}
.cid-vbkBm6ngza {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-vbkBm6ngza H2 {
  color: #000000;
}
.cid-vbkBm6ngza .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-vdYevGgYBR {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #02876a;
}
.cid-vdYevGgYBR .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-vdYevGgYBR .mbr-section-title,
.cid-vdYevGgYBR .mbr-section-subtitle {
  text-align: center;
}
.cid-vdYevGgYBR .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vdYevGgYBR .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-vdYevGgYBR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vdYevGgYBR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vdYevGgYBR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vdYevGgYBR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vdYevGgYBR .mbr-section-subtitle {
  color: #000000;
}
.cid-vdYevGgYBR .mbr-section-title {
  color: #000000;
}
.cid-vdYevGgYBR .card-title {
  color: #000000;
}
.cid-vdYevGgYBR .mbr-text {
  color: #000000;
}
.cid-vdYeIRAYcm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #02876a;
}
.cid-vdYeIRAYcm .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-vdYeIRAYcm .mbr-section-title,
.cid-vdYeIRAYcm .mbr-section-subtitle {
  text-align: center;
}
.cid-vdYeIRAYcm .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vdYeIRAYcm .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-vdYeIRAYcm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-vdYeIRAYcm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vdYeIRAYcm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vdYeIRAYcm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vdYeIRAYcm .mbr-section-subtitle {
  color: #000000;
}
.cid-vdYeIRAYcm .mbr-section-title {
  color: #000000;
}
.cid-vdYeIRAYcm .card-title {
  color: #000000;
}
.cid-vdYeIRAYcm .mbr-text {
  color: #000000;
}
.cid-vdYk583X1c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #02876a;
}
.cid-vdYk583X1c H2 {
  color: #000000;
}
.cid-vdYk583X1c .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uK3r179Oy9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uK3r179Oy9 P {
  color: #767676;
}
.cid-uK3r179Oy9 H1 {
  color: #02876a;
}
.cid-uK3r179Oy9 H3 {
  color: #02876a;
}
.cid-uK3qPAmvGL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uK3qPAmvGL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uK3qPAmvGL .row {
  flex-direction: row-reverse;
}
.cid-uK3qPAmvGL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uK3qPAmvGL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uK3qPAmvGL .mbr-section-title {
  color: #000000;
}
.cid-uK3qPAmvGL .mbr-text {
  color: #02876a;
}
.cid-uK3r5lLUhn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uK3r5lLUhn H2 {
  color: #000000;
}
.cid-uK3r5lLUhn .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uFPiWixnwe {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uFPiWixnwe P {
  color: #767676;
}
.cid-uFPiWixnwe H1 {
  color: #02876a;
}
.cid-uFPj63Y9wO {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-uFPj63Y9wO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFPj63Y9wO .row {
  flex-direction: row-reverse;
}
.cid-uFPj63Y9wO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uFPj63Y9wO .text-wrapper {
    padding: 2rem;
  }
}
.cid-uFPj63Y9wO .mbr-section-title {
  color: #000000;
}
.cid-uFPj63Y9wO .mbr-text {
  color: #02876a;
}
.cid-uFPj76L8jD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uFPj76L8jD H2 {
  color: #000000;
}
.cid-uFPj76L8jD .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uFPlWzPWvm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #02876a;
}
.cid-uFPlWzPWvm P {
  color: #767676;
}
.cid-uFPlWzPWvm H1 {
  color: #000000;
}
.cid-uFPj9nCv0M {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #02876a;
}
@media (max-width: 991px) {
  .cid-uFPj9nCv0M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFPj9nCv0M img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uFPj9nCv0M .text-wrapper {
    padding: 2rem;
  }
}
.cid-uFPj9nCv0M .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uFPj9nCv0M .mbr-section-title {
  color: #000000;
}
.cid-uFPjaxHEt3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #02876a;
}
.cid-uFPjaxHEt3 H2 {
  color: #000000;
}
.cid-uFPjaxHEt3 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uFPlOmgQaL {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uFPlOmgQaL P {
  color: #767676;
}
.cid-uFPlOmgQaL H1 {
  color: #000000;
}
.cid-uFPjcLjt0g {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uFPjcLjt0g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFPjcLjt0g .row {
  flex-direction: row-reverse;
}
.cid-uFPjcLjt0g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uFPjcLjt0g .text-wrapper {
    padding: 2rem;
  }
}
.cid-uFPjcLjt0g .mbr-section-title {
  color: #000000;
}
.cid-uFPjcLjt0g .mbr-text {
  color: #000000;
}
.cid-uFPjdwSEv1 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uFPjdwSEv1 H2 {
  color: #000000;
}
.cid-uFPjdwSEv1 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-vdb9mXW0JC {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdb9mXW0JC P {
  color: #767676;
}
.cid-vdb9mXW0JC H1 {
  color: #ffffff;
}
.cid-vdYAjZjM1A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-vdYAjZjM1A .carousel {
    min-height: 400px;
  }
  .cid-vdYAjZjM1A .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-vdYAjZjM1A .carousel {
    min-height: 260px;
  }
  .cid-vdYAjZjM1A .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-vdYAjZjM1A .carousel {
    min-height: 220px;
  }
  .cid-vdYAjZjM1A .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-vdYAjZjM1A .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-vdYAjZjM1A .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-vdYAjZjM1A .carousel,
.cid-vdYAjZjM1A .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-vdYAjZjM1A .item-wrapper {
  width: 100%;
}
.cid-vdYAjZjM1A .carousel-caption {
  bottom: 40px;
}
.cid-vdYAjZjM1A .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-vdYAjZjM1A .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vdYAjZjM1A .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vdYAjZjM1A .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-vdYAjZjM1A .carousel-control {
  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-vdYAjZjM1A .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vdYAjZjM1A .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vdYAjZjM1A .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vdYAjZjM1A .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-vdYAjZjM1A .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-vdYAjZjM1A .carousel-indicators li.active,
.cid-vdYAjZjM1A .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-vdYAjZjM1A .carousel-indicators li::after,
.cid-vdYAjZjM1A .carousel-indicators li::before {
  content: none;
}
.cid-vdYAjZjM1A .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-vdYAjZjM1A .carousel-indicators {
    display: none !important;
  }
}
.cid-vdYDiNshys {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-vdYDiNshys .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdb9s0TP80 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-vdb9s0TP80 H2 {
  color: #000000;
}
.cid-vdb9s0TP80 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-vdb9s0TP80 .mbr-section-subtitle {
  color: #000000;
}
.cid-sR1foJ0mue {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #02876a;
}
.cid-sR1foJ0mue img,
.cid-sR1foJ0mue .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sR1foJ0mue .item:focus,
.cid-sR1foJ0mue span:focus {
  outline: none;
}
.cid-sR1foJ0mue .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sR1foJ0mue .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sR1foJ0mue .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sR1foJ0mue .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sR1foJ0mue .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sR1foJ0mue .mbr-section-title {
  color: #000000;
}
.cid-sR1foJ0mue .mbr-text,
.cid-sR1foJ0mue .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-sR1foJ0mue .item-title {
  text-align: center;
}
.cid-sR1foJ0mue .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-sR1foJ0mue .mbr-section-subtitle {
  color: #000000;
}
.cid-ve7nYCKVne {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #02876a;
}
.cid-ve7nYCKVne H2 {
  color: #000000;
}
.cid-ve7nYCKVne .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-ve7nYCKVne .mbr-section-subtitle {
  color: #000000;
}
.cid-uEij7QW5tz {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uEij7QW5tz img,
.cid-uEij7QW5tz .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uEij7QW5tz .item:focus,
.cid-uEij7QW5tz span:focus {
  outline: none;
}
.cid-uEij7QW5tz .item-wrapper {
  position: relative;
}
.cid-uEij7QW5tz .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uEij7QW5tz .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEij7QW5tz .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uEij7QW5tz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uEij7QW5tz .mbr-section-title {
  color: #02876a;
}
.cid-uEij7QW5tz .mbr-text,
.cid-uEij7QW5tz .mbr-section-btn {
  text-align: left;
}
.cid-uEij7QW5tz .item-title {
  text-align: left;
}
.cid-uEij7QW5tz .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uEij7QW5tz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uEij7QW5tz .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uEij7QW5tz .embla__button--next,
.cid-uEij7QW5tz .embla__button--prev {
  display: flex;
}
.cid-uEij7QW5tz .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uEij7QW5tz .embla__button {
    display: none;
  }
}
.cid-uEij7QW5tz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uEij7QW5tz .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uEij7QW5tz .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uEij7QW5tz .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uEij7QW5tz .embla__button {
    top: auto;
  }
}
.cid-uEij7QW5tz .embla {
  position: relative;
  width: 100%;
}
.cid-uEij7QW5tz .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uEij7QW5tz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uEij7QW5tz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uEij7QW5tz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uEij7QW5tz .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uEij7QW5tz .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uEij7QW5tz .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uEij7QW5tz .mbr-section-subtitle {
  color: #02876a;
}
.cid-uanApTev0X {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uanApTev0X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uanApTev0X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uanApTev0X .mbr-section-title {
  color: #02876a;
}
.cid-uantyjgbPN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uantyjgbPN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uantyjgbPN .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-uantyjgbPN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uantyjgbPN .row {
  flex-direction: row-reverse;
}
.cid-uantyjgbPN img {
  width: 100%;
}
.cid-uansZ1f8AS {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uansZ1f8AS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uansZ1f8AS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uansZ1f8AS .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uansZ1f8AS .number {
  color: #02876a;
}
.cid-uansZ1f8AS .period {
  display: block;
}
.cid-uansZ1f8AS .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uansZ1f8AS .period {
    font-size: 0.8rem;
  }
}
.cid-uansZ1f8AS .btn {
  height: 100%;
  margin: 0;
}
.cid-uansZ1f8AS .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uansZ1f8AS .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uansZ1f8AS .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uansZ1f8AS .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uansZ1f8AS .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-tAK7wEYI5A {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #02876a;
}
.cid-tAK7wEYI5A P {
  color: #767676;
}
.cid-tAK7wEYI5A H1 {
  color: #000000;
}
.cid-tAK7wEYI5A H3 {
  color: #000000;
}
.cid-tAK7GP5vvi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #02876a;
}
.cid-tAK7GP5vvi .mbr-section-subtitle {
  color: #000000;
}
.cid-tAK7GP5vvi .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tAK7FTmoMc {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #02876a;
}
.cid-tAK7FTmoMc .google-map {
  height: 30rem;
  position: relative;
}
.cid-tAK7FTmoMc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAK7FTmoMc .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-tAK7FTmoMc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAK7FTmoMc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tAJU1dPK46 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tAJU1dPK46 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tAJU1dPK46 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #02876a;
}
@media (max-width: 991px) {
  .cid-tAJU1dPK46 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tAJU1dPK46 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tAJU1dPK46 .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #000000;
}
.cid-tAJU1dPK46 .card-title {
  color: #000000;
  text-align: center;
}
.cid-tAJU1dPK46 P {
  text-align: center;
}
.cid-tAJU1dPK46 .mbr-section-title {
  color: #02876a;
}
.cid-sR1K2bAnat {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-sR1K2bAnat .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sR1K2bAnat .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sR1K2bAnat .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sR1K2bAnat .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sR1K2bAnat .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sR1K2bAnat .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sR1K2bAnat .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-sR1K2bAnat .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sR1K2bAnat .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sR1K2bAnat .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sR1K2bAnat .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sR1K2bAnat .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sR1K2bAnat .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sR1K2bAnat .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sR1K2bAnat .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t2TWWB2leN .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-t2TWWB2leN .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t2TWWB2leN a {
  font-style: normal;
}
.cid-t2TWWB2leN .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t2TWWB2leN .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-t2TWWB2leN .nav-item:focus,
.cid-t2TWWB2leN .nav-link:focus {
  outline: none;
}
.cid-t2TWWB2leN .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-t2TWWB2leN .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t2TWWB2leN .menu-logo {
  margin-right: auto;
}
.cid-t2TWWB2leN .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t2TWWB2leN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t2TWWB2leN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t2TWWB2leN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t2TWWB2leN .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t2TWWB2leN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t2TWWB2leN .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t2TWWB2leN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t2TWWB2leN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t2TWWB2leN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t2TWWB2leN .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t2TWWB2leN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t2TWWB2leN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2TWWB2leN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t2TWWB2leN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2TWWB2leN .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t2TWWB2leN .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t2TWWB2leN .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t2TWWB2leN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t2TWWB2leN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t2TWWB2leN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t2TWWB2leN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t2TWWB2leN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t2TWWB2leN button.navbar-toggler:focus {
  outline: none;
}
.cid-t2TWWB2leN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t2TWWB2leN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t2TWWB2leN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t2TWWB2leN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t2TWWB2leN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t2TWWB2leN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2TWWB2leN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t2TWWB2leN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t2TWWB2leN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2TWWB2leN .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-t2TWWB2leN .collapsed .btn {
  display: flex;
}
.cid-t2TWWB2leN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t2TWWB2leN .collapsed .navbar-collapse.collapsing,
.cid-t2TWWB2leN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t2TWWB2leN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t2TWWB2leN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t2TWWB2leN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t2TWWB2leN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t2TWWB2leN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t2TWWB2leN .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t2TWWB2leN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t2TWWB2leN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t2TWWB2leN .collapsed button.navbar-toggler {
  display: block;
}
.cid-t2TWWB2leN .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t2TWWB2leN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t2TWWB2leN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t2TWWB2leN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t2TWWB2leN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t2TWWB2leN .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t2TWWB2leN .navbar-expand {
    flex-direction: column;
  }
  .cid-t2TWWB2leN img {
    height: 3.8rem !important;
  }
  .cid-t2TWWB2leN .btn {
    display: flex;
  }
  .cid-t2TWWB2leN button.navbar-toggler {
    display: block;
  }
  .cid-t2TWWB2leN .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t2TWWB2leN .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t2TWWB2leN .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t2TWWB2leN .navbar-collapse.collapsing,
  .cid-t2TWWB2leN .navbar-collapse.show {
    display: block !important;
  }
  .cid-t2TWWB2leN .navbar-collapse.collapsing .navbar-nav,
  .cid-t2TWWB2leN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t2TWWB2leN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t2TWWB2leN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t2TWWB2leN .navbar-collapse.collapsing .navbar-buttons,
  .cid-t2TWWB2leN .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t2TWWB2leN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t2TWWB2leN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t2TWWB2leN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t2TWWB2leN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t2TWWB2leN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t2TWWB2leN .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t2TWWB2leN .menu-logo {
    flex-shrink: 0;
  }
}
.cid-t2TWWB2leN .navbar-collapse {
  flex-basis: auto;
}
.cid-t2TWWB2leN .nav-link:hover,
.cid-t2TWWB2leN .dropdown-item:hover {
  color: #02876a !important;
}
.cid-t2TWWzlrZD {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #fac2c3;
}
.cid-t2TWWzlrZD .mbr-section-title {
  color: #000000;
}
.cid-t2TXb1wzbX {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #fac2c3;
}
.cid-t2TXb1wzbX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t2TXb1wzbX form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t2TXb1wzbX form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t2TXb1wzbX form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t2TWWBjxtV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-t2TWWBjxtV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t2TWWBjxtV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t2TWWBjxtV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t2TWWBjxtV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t2TWWBjxtV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t2TWWBjxtV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t2TWWBjxtV .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-t2TWWBjxtV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t2TWWBjxtV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t2TWWBjxtV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t2TWWBjxtV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t2TWWBjxtV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t2TWWBjxtV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t2TWWBjxtV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t2TWWBjxtV .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uak6JpdLTe .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uak6JpdLTe .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uak6JpdLTe a {
  font-style: normal;
}
.cid-uak6JpdLTe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uak6JpdLTe .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uak6JpdLTe .nav-item:focus,
.cid-uak6JpdLTe .nav-link:focus {
  outline: none;
}
.cid-uak6JpdLTe .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uak6JpdLTe .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uak6JpdLTe .menu-logo {
  margin-right: auto;
}
.cid-uak6JpdLTe .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uak6JpdLTe .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uak6JpdLTe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uak6JpdLTe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uak6JpdLTe .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uak6JpdLTe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uak6JpdLTe .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uak6JpdLTe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uak6JpdLTe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uak6JpdLTe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uak6JpdLTe .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uak6JpdLTe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uak6JpdLTe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uak6JpdLTe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uak6JpdLTe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uak6JpdLTe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uak6JpdLTe .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uak6JpdLTe .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uak6JpdLTe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uak6JpdLTe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uak6JpdLTe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uak6JpdLTe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uak6JpdLTe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uak6JpdLTe button.navbar-toggler:focus {
  outline: none;
}
.cid-uak6JpdLTe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uak6JpdLTe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uak6JpdLTe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uak6JpdLTe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uak6JpdLTe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uak6JpdLTe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uak6JpdLTe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uak6JpdLTe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uak6JpdLTe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uak6JpdLTe .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uak6JpdLTe .collapsed .btn {
  display: flex;
}
.cid-uak6JpdLTe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uak6JpdLTe .collapsed .navbar-collapse.collapsing,
.cid-uak6JpdLTe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uak6JpdLTe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uak6JpdLTe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uak6JpdLTe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uak6JpdLTe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uak6JpdLTe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uak6JpdLTe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uak6JpdLTe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uak6JpdLTe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uak6JpdLTe .collapsed button.navbar-toggler {
  display: block;
}
.cid-uak6JpdLTe .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uak6JpdLTe .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uak6JpdLTe .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uak6JpdLTe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uak6JpdLTe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uak6JpdLTe .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uak6JpdLTe .navbar-expand {
    flex-direction: column;
  }
  .cid-uak6JpdLTe img {
    height: 3.8rem !important;
  }
  .cid-uak6JpdLTe .btn {
    display: flex;
  }
  .cid-uak6JpdLTe button.navbar-toggler {
    display: block;
  }
  .cid-uak6JpdLTe .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uak6JpdLTe .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uak6JpdLTe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uak6JpdLTe .navbar-collapse.collapsing,
  .cid-uak6JpdLTe .navbar-collapse.show {
    display: block !important;
  }
  .cid-uak6JpdLTe .navbar-collapse.collapsing .navbar-nav,
  .cid-uak6JpdLTe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uak6JpdLTe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uak6JpdLTe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uak6JpdLTe .navbar-collapse.collapsing .navbar-buttons,
  .cid-uak6JpdLTe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uak6JpdLTe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uak6JpdLTe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uak6JpdLTe .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uak6JpdLTe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uak6JpdLTe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uak6JpdLTe .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uak6JpdLTe .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uak6JpdLTe .navbar-collapse {
  flex-basis: auto;
}
.cid-uak6JpdLTe .nav-link:hover,
.cid-uak6JpdLTe .dropdown-item:hover {
  color: #02876a !important;
}
.cid-uak6JpC8K0 {
  background-image: url("../../../assets/images/javifest23-2.jpeg");
}
.cid-uak6JpC8K0 H1 {
  color: #ffffff;
}
.cid-uak6Jq0P4E {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #00fafb;
}
.cid-uak6Jq0P4E .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uak6Jq0P4E .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uak6Jq0P4E .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uak6JqcNYr {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #02dbd0;
}
.cid-uak6JqcNYr .video-wrapper iframe {
  width: 100%;
}
.cid-uak6JqcNYr .mbr-section-title,
.cid-uak6JqcNYr .mbr-section-subtitle,
.cid-uak6JqcNYr .mbr-text {
  text-align: center;
}
.cid-uak6JqcNYr .mbr-section-title {
  color: #000000;
}
.cid-uak6JqcNYr .mbr-section-subtitle {
  color: #000000;
}
.cid-uak6JqBJX6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #02dbd0;
}
.cid-uak6JqOGRZ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #02dbd0;
}
@media (min-width: 992px) {
  .cid-uak6JqOGRZ .carousel {
    min-height: 600px;
  }
  .cid-uak6JqOGRZ .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uak6JqOGRZ .carousel {
    min-height: 390px;
  }
  .cid-uak6JqOGRZ .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uak6JqOGRZ .carousel {
    min-height: 330px;
  }
  .cid-uak6JqOGRZ .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uak6JqOGRZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uak6JqOGRZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uak6JqOGRZ .carousel,
.cid-uak6JqOGRZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uak6JqOGRZ .item-wrapper {
  width: 100%;
}
.cid-uak6JqOGRZ .carousel-caption {
  bottom: 40px;
}
.cid-uak6JqOGRZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uak6JqOGRZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uak6JqOGRZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uak6JqOGRZ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uak6JqOGRZ .carousel-control {
  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-uak6JqOGRZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uak6JqOGRZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uak6JqOGRZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uak6JqOGRZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uak6JqOGRZ .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-uak6JqOGRZ .carousel-indicators li.active,
.cid-uak6JqOGRZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uak6JqOGRZ .carousel-indicators li::after,
.cid-uak6JqOGRZ .carousel-indicators li::before {
  content: none;
}
.cid-uak6JqOGRZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uak6JqOGRZ .carousel-indicators {
    display: none !important;
  }
}
.cid-uak6Jrs3ho {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #02dbd0;
}
.cid-uak6Jrs3ho H2 {
  color: #000000;
}
.cid-uak6Jrs3ho .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uak6JrQq7A {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #00fafb;
}
.cid-uak6JrQq7A .mbr-section-title {
  color: #000000;
}
.cid-uak6JrQq7A .mbr-section-subtitle {
  color: #000000;
}
.cid-uak6JrQq7A .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uak6Js96iP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #725ea3;
}
@media (max-width: 991px) {
  .cid-uak6Js96iP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uak6Js96iP .row {
  flex-direction: row-reverse;
}
.cid-uak6Js96iP img {
  width: 100%;
}
.cid-uak6JssVA0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #02dbd0;
}
.cid-uak6JssVA0 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-uak6JssVA0 .panel-group {
  border: none;
}
.cid-uak6JssVA0 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uak6JssVA0 .panel-body,
.cid-uak6JssVA0 .card-header {
  padding: 1rem 0;
}
.cid-uak6JssVA0 .panel-title-edit {
  color: #ffffff;
}
.cid-uak6JssVA0 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uak6JssVA0 H3 {
  color: #000000;
}
.cid-uak6JssVA0 H4 {
  color: #000000;
}
.cid-uak6JssVA0 .panel-text {
  color: #000000;
}
.cid-uak6JsUj0K {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uak6JsUj0K .mbr-text {
  color: #ffffff;
}
.cid-uak6JsUj0K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uak6Jt8DvU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #434c77;
}
.cid-uak6Jt8DvU .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uak6Jt8DvU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uak6Jtp1Vs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #434c77;
}
@media (max-width: 991px) {
  .cid-uak6Jtp1Vs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uak6Jtp1Vs .row {
  flex-direction: row-reverse;
}
.cid-uak6Jtp1Vs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uak6Jtp1Vs .text-wrapper {
    padding: 2rem;
  }
}
.cid-uak6Jtp1Vs .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uak6JtPwQb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uak6JtPwQb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uak6JtPwQb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uak6Ju9Qb2 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uak6Ju9Qb2 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uak6Ju9Qb2 .mbr-section-title,
.cid-uak6Ju9Qb2 .mbr-section-subtitle {
  text-align: center;
}
.cid-uak6Ju9Qb2 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uak6Ju9Qb2 .card-wrapper {
  border-radius: 4px;
  background-color: #00dfe7;
}
.cid-uak6Ju9Qb2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uak6Ju9Qb2 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uak6Ju9Qb2 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uak6Ju9Qb2 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uak6Ju9Qb2 .mbr-section-subtitle {
  color: #000000;
}
.cid-uak6Ju9Qb2 .mbr-section-title {
  color: #000000;
}
.cid-uak6Ju9Qb2 .card-title {
  color: #000000;
}
.cid-uak6Ju9Qb2 .mbr-text {
  color: #000000;
}
.cid-uak6Ju9Qb2 .cost {
  color: #000000;
}
.cid-uak6JuPTqs {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uak6JuPTqs .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uak6JuPTqs .mbr-section-title,
.cid-uak6JuPTqs .mbr-section-subtitle {
  text-align: center;
}
.cid-uak6JuPTqs .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uak6JuPTqs .card-wrapper {
  border-radius: 4px;
  background-color: #00dfe7;
}
.cid-uak6JuPTqs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uak6JuPTqs .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uak6JuPTqs .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uak6JuPTqs .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uak6JuPTqs .mbr-section-subtitle {
  color: #000000;
}
.cid-uak6JuPTqs .mbr-section-title {
  color: #000000;
}
.cid-uak6JuPTqs .card-title {
  color: #000000;
}
.cid-uak6JuPTqs .mbr-text {
  color: #000000;
}
.cid-uak6JuPTqs .cost {
  color: #000000;
}
.cid-uak6JvFfTz {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #02dbd0;
}
.cid-uak6JvFfTz H2 {
  color: #000000;
}
.cid-uak6Jw9u1k {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #02dbd0;
}
@media (max-width: 991px) {
  .cid-uak6Jw9u1k .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uak6Jw9u1k img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uak6Jw9u1k .text-wrapper {
    padding: 2rem;
  }
}
.cid-uak6Jw9u1k .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uak6Jw9u1k .mbr-section-title {
  color: #000000;
}
.cid-uak6JwATjc {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #02dbd0;
}
.cid-uak6JwATjc H2 {
  color: #000000;
}
.cid-uak6JwATjc .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uak6JwX36C {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uak6JwX36C P {
  color: #767676;
}
.cid-uak6JwX36C H1 {
  color: #ffffff;
}
.cid-uak6JxBlt7 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-uak6JxBlt7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uak6JxBlt7 .row {
  flex-direction: row-reverse;
}
.cid-uak6JxBlt7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uak6JxBlt7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uak6JxBlt7 .mbr-section-title {
  color: #000000;
}
.cid-uak6JxBlt7 .mbr-text {
  color: #ffffff;
}
.cid-uak6Jy4Q57 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uak6Jy4Q57 H2 {
  color: #000000;
}
.cid-uak6Jy4Q57 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uak6JyCEH1 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #00dfe7;
}
.cid-uak6JyCEH1 P {
  color: #767676;
}
.cid-uak6JyCEH1 H1 {
  color: #000000;
}
.cid-uak6Jz9leq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #00dfe7;
}
@media (max-width: 991px) {
  .cid-uak6Jz9leq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uak6Jz9leq .row {
  flex-direction: row-reverse;
}
.cid-uak6Jz9leq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uak6Jz9leq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uak6Jz9leq .mbr-section-title {
  color: #000000;
}
.cid-uak6Jz9leq .mbr-text {
  color: #000000;
}
.cid-uak6JA4Hfc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #00dfe7;
}
.cid-uak6JA4Hfc H2 {
  color: #000000;
}
.cid-uak6JA4Hfc .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uak6JAKURl {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uak6JAKURl P {
  color: #767676;
}
.cid-uak6JAKURl H1 {
  color: #000000;
}
.cid-uak6JBzJ7o {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uak6JBzJ7o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uak6JBzJ7o img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uak6JBzJ7o .text-wrapper {
    padding: 2rem;
  }
}
.cid-uak6JBzJ7o .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uak6JBzJ7o .mbr-section-title {
  color: #000000;
}
.cid-uak6JCjKl3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uak6JCjKl3 H2 {
  color: #000000;
}
.cid-uak6JCjKl3 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uak6JCU97s {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #02dbd0;
}
.cid-uak6JCU97s img,
.cid-uak6JCU97s .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uak6JCU97s .item:focus,
.cid-uak6JCU97s span:focus {
  outline: none;
}
.cid-uak6JCU97s .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uak6JCU97s .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uak6JCU97s .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uak6JCU97s .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uak6JCU97s .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uak6JCU97s .mbr-section-title {
  color: #000000;
}
.cid-uak6JCU97s .mbr-text,
.cid-uak6JCU97s .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uak6JCU97s .item-title {
  text-align: center;
}
.cid-uak6JCU97s .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uak6JEkcB3 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uak6JEkcB3 img,
.cid-uak6JEkcB3 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uak6JEkcB3 .item:focus,
.cid-uak6JEkcB3 span:focus {
  outline: none;
}
.cid-uak6JEkcB3 .item-wrapper {
  position: relative;
}
.cid-uak6JEkcB3 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uak6JEkcB3 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uak6JEkcB3 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uak6JEkcB3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uak6JEkcB3 .mbr-section-title {
  color: #ffffff;
}
.cid-uak6JEkcB3 .mbr-text,
.cid-uak6JEkcB3 .mbr-section-btn {
  text-align: left;
}
.cid-uak6JEkcB3 .item-title {
  text-align: left;
}
.cid-uak6JEkcB3 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uak6JEkcB3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uak6JEkcB3 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uak6JEkcB3 .embla__button--next,
.cid-uak6JEkcB3 .embla__button--prev {
  display: flex;
}
.cid-uak6JEkcB3 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uak6JEkcB3 .embla__button {
    display: none;
  }
}
.cid-uak6JEkcB3 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uak6JEkcB3 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uak6JEkcB3 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uak6JEkcB3 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uak6JEkcB3 .embla__button {
    top: auto;
  }
}
.cid-uak6JEkcB3 .embla {
  position: relative;
  width: 100%;
}
.cid-uak6JEkcB3 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uak6JEkcB3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uak6JEkcB3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uak6JEkcB3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uak6JEkcB3 .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uak6JEkcB3 .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uak6JEkcB3 .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uak6JEkcB3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uak6JJQhk6 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uak6JJQhk6 P {
  color: #767676;
}
.cid-uak6JJQhk6 H1 {
  color: #000000;
}
.cid-uak6JJQhk6 H3 {
  color: #000000;
}
.cid-uak6JKyxDU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uak6JKyxDU .mbr-section-subtitle {
  color: #000000;
}
.cid-uak6JKyxDU .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uak6JL20wv {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-uak6JL20wv .google-map {
  height: 30rem;
  position: relative;
}
.cid-uak6JL20wv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uak6JL20wv .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-uak6JL20wv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uak6JL20wv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uak6JLQz4y {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #00dfe7;
}
.cid-uak6JLQz4y .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uak6JLQz4y .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uak6JLQz4y .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uak6JLQz4y .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uak6JLQz4y .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #000000;
}
.cid-uak6JLQz4y .card-title {
  color: #000000;
  text-align: center;
}
.cid-uak6JLQz4y P {
  text-align: center;
}
.cid-uak6JMK5kZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-uak6JMK5kZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uak6JMK5kZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uak6JMK5kZ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uak6JMK5kZ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uak6JMK5kZ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uak6JMK5kZ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uak6JMK5kZ .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-uak6JMK5kZ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uak6JMK5kZ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uak6JMK5kZ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uak6JMK5kZ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uak6JMK5kZ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uak6JMK5kZ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uak6JMK5kZ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uak6JMK5kZ .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t2ORHHipei .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-t2ORHHipei .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t2ORHHipei a {
  font-style: normal;
}
.cid-t2ORHHipei .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t2ORHHipei .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-t2ORHHipei .nav-item:focus,
.cid-t2ORHHipei .nav-link:focus {
  outline: none;
}
.cid-t2ORHHipei .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-t2ORHHipei .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t2ORHHipei .menu-logo {
  margin-right: auto;
}
.cid-t2ORHHipei .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t2ORHHipei .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t2ORHHipei .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t2ORHHipei .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t2ORHHipei .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t2ORHHipei .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t2ORHHipei .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t2ORHHipei .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t2ORHHipei .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t2ORHHipei .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t2ORHHipei .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t2ORHHipei .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t2ORHHipei .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2ORHHipei .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t2ORHHipei .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2ORHHipei .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t2ORHHipei .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t2ORHHipei .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t2ORHHipei .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t2ORHHipei .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t2ORHHipei .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t2ORHHipei .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t2ORHHipei button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t2ORHHipei button.navbar-toggler:focus {
  outline: none;
}
.cid-t2ORHHipei button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t2ORHHipei button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t2ORHHipei button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t2ORHHipei button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t2ORHHipei button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t2ORHHipei nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2ORHHipei nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t2ORHHipei nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t2ORHHipei nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2ORHHipei .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-t2ORHHipei .collapsed .btn {
  display: flex;
}
.cid-t2ORHHipei .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t2ORHHipei .collapsed .navbar-collapse.collapsing,
.cid-t2ORHHipei .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t2ORHHipei .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t2ORHHipei .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t2ORHHipei .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t2ORHHipei .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t2ORHHipei .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t2ORHHipei .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t2ORHHipei .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t2ORHHipei .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t2ORHHipei .collapsed button.navbar-toggler {
  display: block;
}
.cid-t2ORHHipei .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t2ORHHipei .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t2ORHHipei .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t2ORHHipei .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t2ORHHipei .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t2ORHHipei .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t2ORHHipei .navbar-expand {
    flex-direction: column;
  }
  .cid-t2ORHHipei img {
    height: 3.8rem !important;
  }
  .cid-t2ORHHipei .btn {
    display: flex;
  }
  .cid-t2ORHHipei button.navbar-toggler {
    display: block;
  }
  .cid-t2ORHHipei .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t2ORHHipei .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t2ORHHipei .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t2ORHHipei .navbar-collapse.collapsing,
  .cid-t2ORHHipei .navbar-collapse.show {
    display: block !important;
  }
  .cid-t2ORHHipei .navbar-collapse.collapsing .navbar-nav,
  .cid-t2ORHHipei .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t2ORHHipei .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t2ORHHipei .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t2ORHHipei .navbar-collapse.collapsing .navbar-buttons,
  .cid-t2ORHHipei .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t2ORHHipei .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t2ORHHipei .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t2ORHHipei .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t2ORHHipei .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t2ORHHipei .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t2ORHHipei .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t2ORHHipei .menu-logo {
    flex-shrink: 0;
  }
}
.cid-t2ORHHipei .navbar-collapse {
  flex-basis: auto;
}
.cid-t2ORHHipei .nav-link:hover,
.cid-t2ORHHipei .dropdown-item:hover {
  color: #02876a !important;
}
.cid-tC5LVQ7mF3 {
  background-image: url("../../../assets/images/logoportada4.jpg");
}
.cid-tC5LVQ7mF3 H1 {
  color: #ffffff;
}
.cid-tAJRcoAKbg {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #d592fc;
}
.cid-tAJRcoAKbg .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tAJRcoAKbg .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tAJRcoAKbg .mbr-section-title {
  text-align: center;
}
.cid-tAJRkrmJiP {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fbc44f;
}
.cid-tAJRkrmJiP .video-wrapper iframe {
  width: 100%;
}
.cid-tAJRkrmJiP .mbr-section-title,
.cid-tAJRkrmJiP .mbr-section-subtitle,
.cid-tAJRkrmJiP .mbr-text {
  text-align: center;
}
.cid-tAJRkrmJiP .mbr-section-title {
  color: #000000;
}
.cid-tAJRkrmJiP .mbr-section-subtitle {
  color: #000000;
}
.cid-tAJRtqrgsa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fbc44f;
}
.cid-tAJRumqOoM {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fbc44f;
}
@media (min-width: 992px) {
  .cid-tAJRumqOoM .carousel {
    min-height: 600px;
  }
  .cid-tAJRumqOoM .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tAJRumqOoM .carousel {
    min-height: 390px;
  }
  .cid-tAJRumqOoM .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tAJRumqOoM .carousel {
    min-height: 330px;
  }
  .cid-tAJRumqOoM .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-tAJRumqOoM .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tAJRumqOoM .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tAJRumqOoM .carousel,
.cid-tAJRumqOoM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tAJRumqOoM .item-wrapper {
  width: 100%;
}
.cid-tAJRumqOoM .carousel-caption {
  bottom: 40px;
}
.cid-tAJRumqOoM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tAJRumqOoM .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tAJRumqOoM .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tAJRumqOoM .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tAJRumqOoM .carousel-control {
  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-tAJRumqOoM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tAJRumqOoM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tAJRumqOoM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tAJRumqOoM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tAJRumqOoM .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-tAJRumqOoM .carousel-indicators li.active,
.cid-tAJRumqOoM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tAJRumqOoM .carousel-indicators li::after,
.cid-tAJRumqOoM .carousel-indicators li::before {
  content: none;
}
.cid-tAJRumqOoM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tAJRumqOoM .carousel-indicators {
    display: none !important;
  }
}
.cid-tAJRv1VmfJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fbc44f;
}
.cid-t2ORHIlk0s {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #6df1da;
}
.cid-t2ORHIlk0s .mbr-section-title {
  color: #000000;
}
.cid-t2ORHIlk0s .mbr-section-subtitle {
  color: #000000;
}
.cid-t2ORHIlk0s .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-t2ORHIMA7X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #725ea3;
}
@media (max-width: 991px) {
  .cid-t2ORHIMA7X .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2ORHIMA7X .row {
  flex-direction: row-reverse;
}
.cid-t2ORHIMA7X img {
  width: 100%;
}
.cid-t2ORHJ8ngF {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #3f79dc;
}
.cid-t2ORHJ8ngF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-t2ORHJ8ngF .panel-group {
  border: none;
}
.cid-t2ORHJ8ngF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t2ORHJ8ngF .panel-body,
.cid-t2ORHJ8ngF .card-header {
  padding: 1rem 0;
}
.cid-t2ORHJ8ngF .panel-title-edit {
  color: #fbc44f;
}
.cid-t2ORHJ8ngF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t2ORHJ8ngF H3 {
  color: #ffffff;
}
.cid-t2ORHJ8ngF H4 {
  color: #ffffff;
}
.cid-t2ORHJ8ngF .panel-text {
  color: #ffffff;
}
.cid-t2ORHJBg9q {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fc6381;
}
.cid-t2ORHJBg9q .mbr-text {
  color: #ffffff;
}
.cid-t2ORHJBg9q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t2ORHJPB9a {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #434c77;
}
.cid-t2ORHJPB9a .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-t2ORHJPB9a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t2ORHKdOGD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #434c77;
}
@media (max-width: 991px) {
  .cid-t2ORHKdOGD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2ORHKdOGD .row {
  flex-direction: row-reverse;
}
.cid-t2ORHKdOGD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t2ORHKdOGD .text-wrapper {
    padding: 2rem;
  }
}
.cid-t2ORHKdOGD .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t2ORHKwA0B {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #6df1da;
}
.cid-t2ORHKwA0B .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-t2ORHKwA0B .mbr-section-title,
.cid-t2ORHKwA0B .mbr-section-subtitle {
  text-align: center;
}
.cid-t2ORHKwA0B .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t2ORHKwA0B .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t2ORHKwA0B .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t2ORHKwA0B .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t2ORHKwA0B .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2ORHKwA0B .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t2ORHKwA0B .mbr-section-subtitle {
  color: #000000;
}
.cid-t2ORHKwA0B .mbr-section-title {
  color: #000000;
}
.cid-t2ORHKwA0B .card-title {
  color: #000000;
}
.cid-t2ORHKwA0B .mbr-text {
  color: #000000;
}
.cid-t2ORHKwA0B .cost {
  color: #000000;
}
.cid-t2ORHLx1X8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6df1da;
}
.cid-t2ORHLx1X8 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-t2ORHLx1X8 .mbr-section-title,
.cid-t2ORHLx1X8 .mbr-section-subtitle {
  text-align: center;
}
.cid-t2ORHLx1X8 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t2ORHLx1X8 .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-t2ORHLx1X8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t2ORHLx1X8 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t2ORHLx1X8 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2ORHLx1X8 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t2ORHLx1X8 .card-title {
  color: #000000;
}
.cid-t2ORHLx1X8 .mbr-text {
  color: #000000;
}
.cid-t2ORHLx1X8 .cost {
  color: #000000;
}
.cid-t2ORHMpasR {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #fbc44f;
}
.cid-t2ORHMpasR H2 {
  color: #000000;
}
.cid-t2ORHMMAIX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fbc44f;
}
@media (max-width: 991px) {
  .cid-t2ORHMMAIX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2ORHMMAIX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t2ORHMMAIX .text-wrapper {
    padding: 2rem;
  }
}
.cid-t2ORHMMAIX .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-t2ORHMMAIX .mbr-section-title {
  color: #000000;
}
.cid-t2ORHOdr1i {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #fbc44f;
}
.cid-t2ORHOdr1i H2 {
  color: #000000;
}
.cid-t2ORHOdr1i .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-t2ORHONRNd {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #725ea3;
}
.cid-t2ORHONRNd P {
  color: #767676;
}
.cid-t2ORHONRNd H1 {
  color: #000000;
}
.cid-t2ORHPfUjt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #725ea3;
}
@media (max-width: 991px) {
  .cid-t2ORHPfUjt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2ORHPfUjt .row {
  flex-direction: row-reverse;
}
.cid-t2ORHPfUjt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t2ORHPfUjt .text-wrapper {
    padding: 2rem;
  }
}
.cid-t2ORHPfUjt .mbr-section-title {
  color: #000000;
}
.cid-t2ORHPfUjt .mbr-text {
  color: #000000;
}
.cid-t2ORHPOkB2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #725ea3;
}
.cid-t2ORHPOkB2 H2 {
  color: #000000;
}
.cid-t2ORHPOkB2 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-t2ORHQQgpk {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #47aca6;
}
.cid-t2ORHQQgpk P {
  color: #767676;
}
.cid-t2ORHQQgpk H1 {
  color: #000000;
}
.cid-t2ORHRdb8Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #47aca6;
}
@media (max-width: 991px) {
  .cid-t2ORHRdb8Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2ORHRdb8Q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t2ORHRdb8Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-t2ORHRdb8Q .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-t2ORHRdb8Q .mbr-section-title {
  color: #000000;
}
.cid-t2ORHRvPI8 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #47aca6;
}
.cid-t2ORHRvPI8 H2 {
  color: #000000;
}
.cid-t2ORHRvPI8 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-t2ORHRXT46 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3f79dc;
}
.cid-t2ORHRXT46 P {
  color: #767676;
}
.cid-t2ORHRXT46 H1 {
  color: #000000;
}
.cid-t2ORHSjGK9 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #3f79dc;
}
@media (max-width: 991px) {
  .cid-t2ORHSjGK9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t2ORHSjGK9 .row {
  flex-direction: row-reverse;
}
.cid-t2ORHSjGK9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t2ORHSjGK9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t2ORHSjGK9 .mbr-section-title {
  color: #000000;
}
.cid-t2ORHSjGK9 .mbr-text {
  color: #000000;
}
.cid-t2ORHSSuLD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #3f79dc;
}
.cid-t2ORHSSuLD H2 {
  color: #000000;
}
.cid-t2ORHSSuLD .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-t2TP9Uv7Ax {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #fac2c3;
}
.cid-t2TP9Uv7Ax img,
.cid-t2TP9Uv7Ax .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t2TP9Uv7Ax .item:focus,
.cid-t2TP9Uv7Ax span:focus {
  outline: none;
}
.cid-t2TP9Uv7Ax .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t2TP9Uv7Ax .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t2TP9Uv7Ax .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2TP9Uv7Ax .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t2TP9Uv7Ax .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t2TP9Uv7Ax .mbr-section-title {
  color: #000000;
}
.cid-t2TP9Uv7Ax .mbr-text,
.cid-t2TP9Uv7Ax .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-t2TP9Uv7Ax .item-title {
  text-align: center;
}
.cid-t2TP9Uv7Ax .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-t2TPjPLrqf {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #fac2c3;
}
.cid-t2TPjPLrqf H2 {
  color: #000000;
}
.cid-t2TPjPLrqf .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-t2ORHU5URp {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #fc6381;
}
.cid-t2ORHU5URp .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t2ORHU5URp .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-t2ORHUANxY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #d592fc;
}
.cid-t2ORHUANxY .mbr-section-title {
  color: #000000;
}
.cid-t2ORHUANxY .mbr-section-subtitle {
  color: #000000;
}
.cid-t2ORHValBW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #d592fc;
}
.cid-t2ORHValBW .mbr-section-subtitle {
  color: #000000;
}
.cid-t2ORHValBW .mbr-text {
  color: #000000;
}
.cid-t2ORHVvYnK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #47aca6;
}
.cid-t2ORHVvYnK img,
.cid-t2ORHVvYnK .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t2ORHVvYnK .item:focus,
.cid-t2ORHVvYnK span:focus {
  outline: none;
}
.cid-t2ORHVvYnK .item-wrapper {
  position: relative;
}
.cid-t2ORHVvYnK .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t2ORHVvYnK .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t2ORHVvYnK .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-t2ORHVvYnK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t2ORHVvYnK .mbr-section-title {
  color: #000000;
}
.cid-t2ORHVvYnK .mbr-text,
.cid-t2ORHVvYnK .mbr-section-btn {
  text-align: left;
}
.cid-t2ORHVvYnK .item-title {
  text-align: left;
}
.cid-t2ORHVvYnK .item-subtitle {
  text-align: left;
}
.cid-t2ORHVvYnK .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-t2ORHVvYnK .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t2ORHVvYnK .embla__button--next,
.cid-t2ORHVvYnK .embla__button--prev {
  display: flex;
}
.cid-t2ORHVvYnK .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t2ORHVvYnK .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t2ORHVvYnK .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t2ORHVvYnK .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t2ORHVvYnK .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t2ORHVvYnK .embla__button {
    top: auto;
  }
}
.cid-t2ORHVvYnK .embla {
  position: relative;
  width: 100%;
}
.cid-t2ORHVvYnK .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t2ORHVvYnK .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t2ORHVvYnK .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t2ORHVvYnK .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t2ORHYvLxY {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #fbc44f;
}
.cid-t2ORHYvLxY P {
  color: #767676;
}
.cid-t2ORHYvLxY H1 {
  color: #000000;
}
.cid-t2ORHYvLxY H3 {
  color: #000000;
}
.cid-t2ORHYX59B {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fbc44f;
}
.cid-t2ORHYX59B .mbr-section-subtitle {
  color: #000000;
}
.cid-t2ORHYX59B .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-t2ORHZktEw {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #fbc44f;
}
.cid-t2ORHZktEw .google-map {
  height: 30rem;
  position: relative;
}
.cid-t2ORHZktEw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t2ORHZktEw .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-t2ORHZktEw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t2ORHZktEw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t2ORHZYr7i {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #6df1da;
}
.cid-t2ORHZYr7i .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t2ORHZYr7i .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t2ORHZYr7i .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2ORHZYr7i .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t2ORHZYr7i .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #000000;
}
.cid-t2ORHZYr7i .card-title {
  color: #000000;
  text-align: center;
}
.cid-t2ORHZYr7i P {
  text-align: center;
}
.cid-t2ORI0AtfY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-t2ORI0AtfY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t2ORI0AtfY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t2ORI0AtfY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t2ORI0AtfY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t2ORI0AtfY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t2ORI0AtfY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t2ORI0AtfY .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-t2ORI0AtfY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t2ORI0AtfY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t2ORI0AtfY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t2ORI0AtfY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t2ORI0AtfY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t2ORI0AtfY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t2ORI0AtfY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t2ORI0AtfY .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sQV5drU9tl .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sQV5drU9tl .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sQV5drU9tl a {
  font-style: normal;
}
.cid-sQV5drU9tl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sQV5drU9tl .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sQV5drU9tl .nav-item:focus,
.cid-sQV5drU9tl .nav-link:focus {
  outline: none;
}
.cid-sQV5drU9tl .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sQV5drU9tl .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sQV5drU9tl .menu-logo {
  margin-right: auto;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sQV5drU9tl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQV5drU9tl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sQV5drU9tl .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sQV5drU9tl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sQV5drU9tl button.navbar-toggler:focus {
  outline: none;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQV5drU9tl .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sQV5drU9tl .collapsed .btn {
  display: flex;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sQV5drU9tl .collapsed button.navbar-toggler {
  display: block;
}
.cid-sQV5drU9tl .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sQV5drU9tl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sQV5drU9tl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sQV5drU9tl .navbar-expand {
    flex-direction: column;
  }
  .cid-sQV5drU9tl img {
    height: 3.8rem !important;
  }
  .cid-sQV5drU9tl .btn {
    display: flex;
  }
  .cid-sQV5drU9tl button.navbar-toggler {
    display: block;
  }
  .cid-sQV5drU9tl .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sQV5drU9tl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sQV5drU9tl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing,
  .cid-sQV5drU9tl .navbar-collapse.show {
    display: block !important;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-nav,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-buttons,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sQV5drU9tl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sQV5drU9tl .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sQV5drU9tl .navbar-collapse {
  flex-basis: auto;
}
.cid-sQV5drU9tl .nav-link:hover,
.cid-sQV5drU9tl .dropdown-item:hover {
  color: #02876a !important;
}
.cid-sRk6Iz8vR4 {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #fbc44f;
}
.cid-sRk6Iz8vR4 .mbr-section-title {
  color: #000000;
}
.cid-sUbU968rMg {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fbc44f;
}
.cid-sUbU968rMg P {
  color: #767676;
}
.cid-sUbU968rMg H1 {
  color: #000000;
  text-align: left;
}
.cid-sU4l7QY1mB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fbc44f;
}
@media (max-width: 991px) {
  .cid-sU4l7QY1mB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sU4l7QY1mB .row {
  flex-direction: row-reverse;
}
.cid-sU4l7QY1mB img {
  width: 100%;
}
.cid-sU4eJIrZFc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbc44f;
}
.cid-sU4eJIrZFc P {
  color: #767676;
}
.cid-sU4eJIrZFc H1 {
  color: #000000;
  text-align: left;
}
.cid-sUbVc6IaSw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fbc44f;
}
@media (max-width: 991px) {
  .cid-sUbVc6IaSw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUbVc6IaSw .row {
  flex-direction: row-reverse;
}
.cid-sUbVc6IaSw img {
  width: 100%;
}
.cid-sUbUOr8yGX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fbc44f;
}
.cid-sUbUOr8yGX P {
  color: #767676;
}
.cid-sUbUOr8yGX H1 {
  color: #000000;
  text-align: left;
}
.cid-sR1K2bAnat {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-sR1K2bAnat .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sR1K2bAnat .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sR1K2bAnat .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sR1K2bAnat .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sR1K2bAnat .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sR1K2bAnat .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sR1K2bAnat .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-sR1K2bAnat .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sR1K2bAnat .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sR1K2bAnat .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sR1K2bAnat .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sR1K2bAnat .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sR1K2bAnat .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sR1K2bAnat .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sR1K2bAnat .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sSHdphFSjN .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sSHdphFSjN .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sSHdphFSjN a {
  font-style: normal;
}
.cid-sSHdphFSjN .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sSHdphFSjN .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sSHdphFSjN .nav-item:focus,
.cid-sSHdphFSjN .nav-link:focus {
  outline: none;
}
.cid-sSHdphFSjN .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sSHdphFSjN .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sSHdphFSjN .menu-logo {
  margin-right: auto;
}
.cid-sSHdphFSjN .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sSHdphFSjN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sSHdphFSjN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sSHdphFSjN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sSHdphFSjN .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sSHdphFSjN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sSHdphFSjN .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sSHdphFSjN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sSHdphFSjN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sSHdphFSjN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sSHdphFSjN .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sSHdphFSjN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sSHdphFSjN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSHdphFSjN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sSHdphFSjN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSHdphFSjN .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sSHdphFSjN .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sSHdphFSjN .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sSHdphFSjN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sSHdphFSjN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sSHdphFSjN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sSHdphFSjN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sSHdphFSjN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sSHdphFSjN button.navbar-toggler:focus {
  outline: none;
}
.cid-sSHdphFSjN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sSHdphFSjN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sSHdphFSjN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sSHdphFSjN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sSHdphFSjN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sSHdphFSjN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sSHdphFSjN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sSHdphFSjN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sSHdphFSjN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sSHdphFSjN .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sSHdphFSjN .collapsed .btn {
  display: flex;
}
.cid-sSHdphFSjN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sSHdphFSjN .collapsed .navbar-collapse.collapsing,
.cid-sSHdphFSjN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sSHdphFSjN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sSHdphFSjN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sSHdphFSjN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sSHdphFSjN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sSHdphFSjN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sSHdphFSjN .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sSHdphFSjN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sSHdphFSjN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sSHdphFSjN .collapsed button.navbar-toggler {
  display: block;
}
.cid-sSHdphFSjN .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sSHdphFSjN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sSHdphFSjN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sSHdphFSjN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sSHdphFSjN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sSHdphFSjN .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sSHdphFSjN .navbar-expand {
    flex-direction: column;
  }
  .cid-sSHdphFSjN img {
    height: 3.8rem !important;
  }
  .cid-sSHdphFSjN .btn {
    display: flex;
  }
  .cid-sSHdphFSjN button.navbar-toggler {
    display: block;
  }
  .cid-sSHdphFSjN .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sSHdphFSjN .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sSHdphFSjN .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sSHdphFSjN .navbar-collapse.collapsing,
  .cid-sSHdphFSjN .navbar-collapse.show {
    display: block !important;
  }
  .cid-sSHdphFSjN .navbar-collapse.collapsing .navbar-nav,
  .cid-sSHdphFSjN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sSHdphFSjN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sSHdphFSjN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sSHdphFSjN .navbar-collapse.collapsing .navbar-buttons,
  .cid-sSHdphFSjN .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sSHdphFSjN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sSHdphFSjN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sSHdphFSjN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sSHdphFSjN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sSHdphFSjN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sSHdphFSjN .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sSHdphFSjN .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sSHdphFSjN .navbar-collapse {
  flex-basis: auto;
}
.cid-sSHdphFSjN .nav-link:hover,
.cid-sSHdphFSjN .dropdown-item:hover {
  color: #02876a !important;
}
.cid-sSHdpgWo08 {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSHdpgWo08 .mbr-section-title {
  color: #000000;
}
.cid-sSHdDNo6nR {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sSHdpi0SPr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-sSHdpi0SPr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sSHdpi0SPr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sSHdpi0SPr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sSHdpi0SPr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sSHdpi0SPr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sSHdpi0SPr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sSHdpi0SPr .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-sSHdpi0SPr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sSHdpi0SPr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sSHdpi0SPr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sSHdpi0SPr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSHdpi0SPr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSHdpi0SPr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sSHdpi0SPr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sSHdpi0SPr .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sQV5drU9tl .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sQV5drU9tl .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sQV5drU9tl a {
  font-style: normal;
}
.cid-sQV5drU9tl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sQV5drU9tl .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sQV5drU9tl .nav-item:focus,
.cid-sQV5drU9tl .nav-link:focus {
  outline: none;
}
.cid-sQV5drU9tl .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sQV5drU9tl .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sQV5drU9tl .menu-logo {
  margin-right: auto;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sQV5drU9tl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQV5drU9tl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQV5drU9tl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sQV5drU9tl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQV5drU9tl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sQV5drU9tl .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sQV5drU9tl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sQV5drU9tl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sQV5drU9tl button.navbar-toggler:focus {
  outline: none;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQV5drU9tl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQV5drU9tl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQV5drU9tl .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sQV5drU9tl .collapsed .btn {
  display: flex;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sQV5drU9tl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sQV5drU9tl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sQV5drU9tl .collapsed button.navbar-toggler {
  display: block;
}
.cid-sQV5drU9tl .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sQV5drU9tl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sQV5drU9tl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sQV5drU9tl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sQV5drU9tl .navbar-expand {
    flex-direction: column;
  }
  .cid-sQV5drU9tl img {
    height: 3.8rem !important;
  }
  .cid-sQV5drU9tl .btn {
    display: flex;
  }
  .cid-sQV5drU9tl button.navbar-toggler {
    display: block;
  }
  .cid-sQV5drU9tl .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sQV5drU9tl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sQV5drU9tl .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing,
  .cid-sQV5drU9tl .navbar-collapse.show {
    display: block !important;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-nav,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-buttons,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sQV5drU9tl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sQV5drU9tl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sQV5drU9tl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sQV5drU9tl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sQV5drU9tl .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sQV5drU9tl .navbar-collapse {
  flex-basis: auto;
}
.cid-sQV5drU9tl .nav-link:hover,
.cid-sQV5drU9tl .dropdown-item:hover {
  color: #a288df !important;
}
.cid-sRk3CkiQxz {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #02876a;
}
.cid-sRk3CkiQxz img,
.cid-sRk3CkiQxz .item-img {
  width: 100%;
}
.cid-sRk3CkiQxz .item:focus,
.cid-sRk3CkiQxz span:focus {
  outline: none;
}
.cid-sRk3CkiQxz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sRk3CkiQxz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sRk3CkiQxz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sRk3CkiQxz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sRk3CkiQxz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sRk3CkiQxz .mbr-section-title {
  color: #ffffff;
}
.cid-sRk3CkiQxz .mbr-text,
.cid-sRk3CkiQxz .mbr-section-btn {
  text-align: left;
}
.cid-sRk3CkiQxz .item-title {
  text-align: center;
}
.cid-sRk3CkiQxz .item-subtitle {
  text-align: center;
}
.cid-sRk3CkiQxz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSHc6HWIVE {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #02876a;
}
.cid-sR1K2bAnat {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-sR1K2bAnat .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sR1K2bAnat .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sR1K2bAnat .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sR1K2bAnat .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sR1K2bAnat .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sR1K2bAnat .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sR1K2bAnat .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-sR1K2bAnat .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sR1K2bAnat .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sR1K2bAnat .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sR1K2bAnat .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sR1K2bAnat .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sR1K2bAnat .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sR1K2bAnat .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sR1K2bAnat .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uDymItsL1v .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uDymItsL1v .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uDymItsL1v a {
  font-style: normal;
}
.cid-uDymItsL1v .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uDymItsL1v .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uDymItsL1v .nav-item:focus,
.cid-uDymItsL1v .nav-link:focus {
  outline: none;
}
.cid-uDymItsL1v .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uDymItsL1v .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uDymItsL1v .menu-logo {
  margin-right: auto;
}
.cid-uDymItsL1v .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uDymItsL1v .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uDymItsL1v .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uDymItsL1v .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uDymItsL1v .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uDymItsL1v .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uDymItsL1v .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uDymItsL1v .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uDymItsL1v .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uDymItsL1v .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uDymItsL1v .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uDymItsL1v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uDymItsL1v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDymItsL1v .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uDymItsL1v .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDymItsL1v .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uDymItsL1v .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uDymItsL1v .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uDymItsL1v .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uDymItsL1v .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uDymItsL1v .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uDymItsL1v .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uDymItsL1v button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uDymItsL1v button.navbar-toggler:focus {
  outline: none;
}
.cid-uDymItsL1v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uDymItsL1v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uDymItsL1v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uDymItsL1v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uDymItsL1v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uDymItsL1v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uDymItsL1v nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uDymItsL1v nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uDymItsL1v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uDymItsL1v .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uDymItsL1v .collapsed .btn {
  display: flex;
}
.cid-uDymItsL1v .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uDymItsL1v .collapsed .navbar-collapse.collapsing,
.cid-uDymItsL1v .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uDymItsL1v .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uDymItsL1v .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uDymItsL1v .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uDymItsL1v .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uDymItsL1v .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uDymItsL1v .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uDymItsL1v .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uDymItsL1v .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uDymItsL1v .collapsed button.navbar-toggler {
  display: block;
}
.cid-uDymItsL1v .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uDymItsL1v .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uDymItsL1v .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uDymItsL1v .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uDymItsL1v .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uDymItsL1v .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uDymItsL1v .navbar-expand {
    flex-direction: column;
  }
  .cid-uDymItsL1v img {
    height: 3.8rem !important;
  }
  .cid-uDymItsL1v .btn {
    display: flex;
  }
  .cid-uDymItsL1v button.navbar-toggler {
    display: block;
  }
  .cid-uDymItsL1v .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uDymItsL1v .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uDymItsL1v .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uDymItsL1v .navbar-collapse.collapsing,
  .cid-uDymItsL1v .navbar-collapse.show {
    display: block !important;
  }
  .cid-uDymItsL1v .navbar-collapse.collapsing .navbar-nav,
  .cid-uDymItsL1v .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uDymItsL1v .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uDymItsL1v .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uDymItsL1v .navbar-collapse.collapsing .navbar-buttons,
  .cid-uDymItsL1v .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uDymItsL1v .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uDymItsL1v .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uDymItsL1v .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uDymItsL1v .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uDymItsL1v .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uDymItsL1v .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uDymItsL1v .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uDymItsL1v .navbar-collapse {
  flex-basis: auto;
}
.cid-uDymItsL1v .nav-link:hover,
.cid-uDymItsL1v .dropdown-item:hover {
  color: #02876a !important;
}
.cid-uDymItMbwd {
  background-image: url("../../../assets/images/logo-portada-2024.jpg");
}
.cid-uDymItMbwd H1 {
  color: #ffffff;
}
.cid-uDymIuhYHP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uDymIuhYHP .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uDymIuhYHP .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uDymIuhYHP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uDymIuvjVo {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uDymIuvjVo .video-wrapper iframe {
  width: 100%;
}
.cid-uDymIuvjVo .mbr-section-title,
.cid-uDymIuvjVo .mbr-section-subtitle,
.cid-uDymIuvjVo .mbr-text {
  text-align: center;
}
.cid-uDymIuvjVo .mbr-section-title {
  color: #000000;
}
.cid-uDymIuvjVo .mbr-section-subtitle {
  color: #000000;
}
.cid-uDymIuTuZu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDymIv7GPr {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uDymIv7GPr .carousel {
    min-height: 600px;
  }
  .cid-uDymIv7GPr .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uDymIv7GPr .carousel {
    min-height: 390px;
  }
  .cid-uDymIv7GPr .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uDymIv7GPr .carousel {
    min-height: 330px;
  }
  .cid-uDymIv7GPr .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-uDymIv7GPr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uDymIv7GPr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uDymIv7GPr .carousel,
.cid-uDymIv7GPr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uDymIv7GPr .item-wrapper {
  width: 100%;
}
.cid-uDymIv7GPr .carousel-caption {
  bottom: 40px;
}
.cid-uDymIv7GPr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uDymIv7GPr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uDymIv7GPr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uDymIv7GPr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uDymIv7GPr .carousel-control {
  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-uDymIv7GPr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uDymIv7GPr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uDymIv7GPr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uDymIv7GPr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uDymIv7GPr .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-uDymIv7GPr .carousel-indicators li.active,
.cid-uDymIv7GPr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uDymIv7GPr .carousel-indicators li::after,
.cid-uDymIv7GPr .carousel-indicators li::before {
  content: none;
}
.cid-uDymIv7GPr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uDymIv7GPr .carousel-indicators {
    display: none !important;
  }
}
.cid-uDymIw59AM {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDymIxg3jt {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uDymIxg3jt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDymIxg3jt .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-uDymIxg3jt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDymIxg3jt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDymIxg3jt .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDymIxg3jt .mbr-section-title {
  text-align: center;
}
.cid-uDymIxg3jt .mbr-text {
  text-align: center;
}
.cid-uDymIxzJ87 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uDymIxzJ87 .mbr-section-title {
  color: #ffffff;
}
.cid-uDymIxzJ87 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDymIxzJ87 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uDymIxOc1D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffca00;
}
@media (max-width: 991px) {
  .cid-uDymIxOc1D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDymIxOc1D .row {
  flex-direction: row-reverse;
}
.cid-uDymIxOc1D img {
  width: 100%;
}
.cid-uDymIy3dyq {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uDymIy3dyq .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-uDymIy3dyq .panel-group {
  border: none;
}
.cid-uDymIy3dyq .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uDymIy3dyq .panel-body,
.cid-uDymIy3dyq .card-header {
  padding: 1rem 0;
}
.cid-uDymIy3dyq .panel-title-edit {
  color: #ffca00;
}
.cid-uDymIy3dyq .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uDymIy3dyq H3 {
  color: #000000;
}
.cid-uDymIy3dyq H4 {
  color: #000000;
}
.cid-uDymIy3dyq .panel-text {
  color: #000000;
}
.cid-uDymIyuyPC {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uDymIyuyPC .mbr-text {
  color: #ffffff;
}
.cid-uDymIyuyPC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDymIyKwDA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDymIyKwDA .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uDymIyKwDA .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uDymIz19N5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uDymIz19N5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDymIz19N5 .row {
  flex-direction: row-reverse;
}
.cid-uDymIz19N5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDymIz19N5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDymIz19N5 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uDymIzop9f {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffca00;
}
.cid-uDymIzop9f .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uDymIzop9f .mbr-section-title,
.cid-uDymIzop9f .mbr-section-subtitle {
  text-align: center;
}
.cid-uDymIzop9f .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDymIzop9f .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uDymIzop9f .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uDymIzop9f .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDymIzop9f .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDymIzop9f .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDymIzop9f .mbr-section-subtitle {
  color: #000000;
}
.cid-uDymIzop9f .mbr-section-title {
  color: #000000;
}
.cid-uDymIzop9f .card-title {
  color: #000000;
}
.cid-uDymIzop9f .mbr-text {
  color: #000000;
}
.cid-uDymIA8GxO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffca00;
}
.cid-uDymIA8GxO .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uDymIA8GxO .mbr-section-title,
.cid-uDymIA8GxO .mbr-section-subtitle {
  text-align: center;
}
.cid-uDymIA8GxO .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDymIA8GxO .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-uDymIA8GxO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uDymIA8GxO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDymIA8GxO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDymIA8GxO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDymIA8GxO .mbr-section-subtitle {
  color: #000000;
}
.cid-uDymIA8GxO .mbr-section-title {
  color: #000000;
}
.cid-uDymIA8GxO .card-title {
  color: #000000;
}
.cid-uDymIA8GxO .mbr-text {
  color: #000000;
}
.cid-uDymIAORV8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffca00;
}
.cid-uDymIAORV8 H2 {
  color: #000000;
}
.cid-uDymIAORV8 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uDymIBcqEM {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uDymIBcqEM P {
  color: #767676;
}
.cid-uDymIBcqEM H1 {
  color: #ffffff;
}
.cid-uDymIBAuCc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-uDymIBAuCc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDymIBAuCc .row {
  flex-direction: row-reverse;
}
.cid-uDymIBAuCc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDymIBAuCc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDymIBAuCc .mbr-section-title {
  color: #000000;
}
.cid-uDymIBAuCc .mbr-text {
  color: #ffffff;
}
.cid-uDymIC4zmj {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uDymIC4zmj H2 {
  color: #000000;
}
.cid-uDymIC4zmj .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uDymICuoPq {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffca00;
}
.cid-uDymICuoPq P {
  color: #767676;
}
.cid-uDymICuoPq H1 {
  color: #000000;
}
.cid-uDymICNVoj {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffca00;
}
@media (max-width: 991px) {
  .cid-uDymICNVoj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDymICNVoj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDymICNVoj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDymICNVoj .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uDymICNVoj .mbr-section-title {
  color: #000000;
}
.cid-uDymIDebH8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffca00;
}
.cid-uDymIDebH8 H2 {
  color: #000000;
}
.cid-uDymIDebH8 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uDymIDHskn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uDymIDHskn P {
  color: #767676;
}
.cid-uDymIDHskn H1 {
  color: #000000;
}
.cid-uDymIE4wCV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uDymIE4wCV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDymIE4wCV .row {
  flex-direction: row-reverse;
}
.cid-uDymIE4wCV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDymIE4wCV .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDymIE4wCV .mbr-section-title {
  color: #000000;
}
.cid-uDymIE4wCV .mbr-text {
  color: #000000;
}
.cid-uDymIErNN5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uDymIErNN5 H2 {
  color: #000000;
}
.cid-uDymIErNN5 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uDymIwjMwZ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffca00;
}
.cid-uDymIwjMwZ img,
.cid-uDymIwjMwZ .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uDymIwjMwZ .item:focus,
.cid-uDymIwjMwZ span:focus {
  outline: none;
}
.cid-uDymIwjMwZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uDymIwjMwZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDymIwjMwZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDymIwjMwZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDymIwjMwZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDymIwjMwZ .mbr-section-title {
  color: #000000;
}
.cid-uDymIwjMwZ .mbr-text,
.cid-uDymIwjMwZ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uDymIwjMwZ .item-title {
  text-align: center;
}
.cid-uDymIwjMwZ .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uDymIEP8Nj {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uDymIEP8Nj img,
.cid-uDymIEP8Nj .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uDymIEP8Nj .item:focus,
.cid-uDymIEP8Nj span:focus {
  outline: none;
}
.cid-uDymIEP8Nj .item-wrapper {
  position: relative;
}
.cid-uDymIEP8Nj .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDymIEP8Nj .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDymIEP8Nj .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uDymIEP8Nj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDymIEP8Nj .mbr-section-title {
  color: #ffffff;
}
.cid-uDymIEP8Nj .mbr-text,
.cid-uDymIEP8Nj .mbr-section-btn {
  text-align: left;
}
.cid-uDymIEP8Nj .item-title {
  text-align: left;
}
.cid-uDymIEP8Nj .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uDymIEP8Nj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uDymIEP8Nj .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uDymIEP8Nj .embla__button--next,
.cid-uDymIEP8Nj .embla__button--prev {
  display: flex;
}
.cid-uDymIEP8Nj .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uDymIEP8Nj .embla__button {
    display: none;
  }
}
.cid-uDymIEP8Nj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uDymIEP8Nj .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uDymIEP8Nj .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uDymIEP8Nj .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uDymIEP8Nj .embla__button {
    top: auto;
  }
}
.cid-uDymIEP8Nj .embla {
  position: relative;
  width: 100%;
}
.cid-uDymIEP8Nj .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uDymIEP8Nj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uDymIEP8Nj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uDymIEP8Nj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uDymIEP8Nj .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uDymIEP8Nj .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uDymIEP8Nj .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uDymIEP8Nj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDymILeQva {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDymILeQva .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDymILeQva .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDymILEG1v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDymILEG1v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDymILEG1v .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-uDymILEG1v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uDymILEG1v .row {
  flex-direction: row-reverse;
}
.cid-uDymILEG1v img {
  width: 100%;
}
.cid-uDymIM55tp {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDymIM55tp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDymIM55tp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDymIM55tp .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uDymIM55tp .number {
  color: #ffca00;
}
.cid-uDymIM55tp .period {
  display: block;
}
.cid-uDymIM55tp .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uDymIM55tp .period {
    font-size: 0.8rem;
  }
}
.cid-uDymIM55tp .btn {
  height: 100%;
  margin: 0;
}
.cid-uDymIM55tp .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uDymIM55tp .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uDymIM55tp .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uDymIM55tp .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uDymIM55tp .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uDymIMYSRu {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffca00;
}
.cid-uDymIMYSRu P {
  color: #767676;
}
.cid-uDymIMYSRu H1 {
  color: #000000;
}
.cid-uDymIMYSRu H3 {
  color: #000000;
}
.cid-uDymINns3G {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffca00;
}
.cid-uDymINns3G .mbr-section-subtitle {
  color: #000000;
}
.cid-uDymINns3G .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uDymINNeh1 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #ffca00;
}
.cid-uDymINNeh1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uDymINNeh1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uDymINNeh1 .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-uDymINNeh1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDymINNeh1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDymIOH6JT {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uDymIOH6JT .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uDymIOH6JT .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffca00;
}
@media (max-width: 991px) {
  .cid-uDymIOH6JT .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDymIOH6JT .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uDymIOH6JT .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #000000;
}
.cid-uDymIOH6JT .card-title {
  color: #000000;
  text-align: center;
}
.cid-uDymIOH6JT P {
  text-align: center;
}
.cid-uDymIPkYge {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-uDymIPkYge .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uDymIPkYge .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uDymIPkYge .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uDymIPkYge .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDymIPkYge .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDymIPkYge .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDymIPkYge .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-uDymIPkYge .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uDymIPkYge .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uDymIPkYge .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uDymIPkYge .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDymIPkYge .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDymIPkYge .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDymIPkYge .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uDymIPkYge .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-v8KYQZqPns .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-v8KYQZqPns .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v8KYQZqPns a {
  font-style: normal;
}
.cid-v8KYQZqPns .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v8KYQZqPns .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-v8KYQZqPns .nav-item:focus,
.cid-v8KYQZqPns .nav-link:focus {
  outline: none;
}
.cid-v8KYQZqPns .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-v8KYQZqPns .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v8KYQZqPns .menu-logo {
  margin-right: auto;
}
.cid-v8KYQZqPns .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v8KYQZqPns .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v8KYQZqPns .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v8KYQZqPns .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v8KYQZqPns .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v8KYQZqPns .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v8KYQZqPns .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v8KYQZqPns .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v8KYQZqPns .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v8KYQZqPns .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v8KYQZqPns .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v8KYQZqPns .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v8KYQZqPns .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8KYQZqPns .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v8KYQZqPns .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8KYQZqPns .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v8KYQZqPns .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v8KYQZqPns .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v8KYQZqPns .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v8KYQZqPns .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v8KYQZqPns .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v8KYQZqPns .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v8KYQZqPns button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v8KYQZqPns button.navbar-toggler:focus {
  outline: none;
}
.cid-v8KYQZqPns button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v8KYQZqPns button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v8KYQZqPns button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v8KYQZqPns button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v8KYQZqPns button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v8KYQZqPns nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v8KYQZqPns nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v8KYQZqPns nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v8KYQZqPns nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v8KYQZqPns .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-v8KYQZqPns .collapsed .btn {
  display: flex;
}
.cid-v8KYQZqPns .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v8KYQZqPns .collapsed .navbar-collapse.collapsing,
.cid-v8KYQZqPns .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v8KYQZqPns .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v8KYQZqPns .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v8KYQZqPns .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v8KYQZqPns .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v8KYQZqPns .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v8KYQZqPns .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v8KYQZqPns .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v8KYQZqPns .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v8KYQZqPns .collapsed button.navbar-toggler {
  display: block;
}
.cid-v8KYQZqPns .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v8KYQZqPns .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v8KYQZqPns .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v8KYQZqPns .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v8KYQZqPns .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v8KYQZqPns .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v8KYQZqPns .navbar-expand {
    flex-direction: column;
  }
  .cid-v8KYQZqPns img {
    height: 3.8rem !important;
  }
  .cid-v8KYQZqPns .btn {
    display: flex;
  }
  .cid-v8KYQZqPns button.navbar-toggler {
    display: block;
  }
  .cid-v8KYQZqPns .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v8KYQZqPns .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v8KYQZqPns .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v8KYQZqPns .navbar-collapse.collapsing,
  .cid-v8KYQZqPns .navbar-collapse.show {
    display: block !important;
  }
  .cid-v8KYQZqPns .navbar-collapse.collapsing .navbar-nav,
  .cid-v8KYQZqPns .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v8KYQZqPns .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v8KYQZqPns .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v8KYQZqPns .navbar-collapse.collapsing .navbar-buttons,
  .cid-v8KYQZqPns .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v8KYQZqPns .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v8KYQZqPns .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v8KYQZqPns .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v8KYQZqPns .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v8KYQZqPns .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v8KYQZqPns .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v8KYQZqPns .menu-logo {
    flex-shrink: 0;
  }
}
.cid-v8KYQZqPns .navbar-collapse {
  flex-basis: auto;
}
.cid-v8KYQZqPns .nav-link:hover,
.cid-v8KYQZqPns .dropdown-item:hover {
  color: #a288df !important;
}
.cid-v8KYR04dDe {
  background-image: url("../../../assets/images/javifest-lila.png");
}
.cid-v8KYR04dDe H1 {
  color: #ffffff;
}
.cid-v8KYQio0GH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v8KYQio0GH .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-v8KYQio0GH .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-v8KYQio0GH .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v8KYQiVqSM {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #a288df;
}
.cid-v8KYQiVqSM .video-wrapper iframe {
  width: 100%;
}
.cid-v8KYQiVqSM .mbr-section-title,
.cid-v8KYQiVqSM .mbr-section-subtitle,
.cid-v8KYQiVqSM .mbr-text {
  text-align: center;
}
.cid-v8KYQiVqSM .mbr-section-title {
  color: #000000;
}
.cid-v8KYQiVqSM .mbr-section-subtitle {
  color: #000000;
}
.cid-v8KYQjE8Ep {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #a288df;
}
.cid-v8KYQkmQ68 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #a288df;
}
@media (min-width: 992px) {
  .cid-v8KYQkmQ68 .carousel {
    min-height: 600px;
  }
  .cid-v8KYQkmQ68 .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v8KYQkmQ68 .carousel {
    min-height: 390px;
  }
  .cid-v8KYQkmQ68 .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v8KYQkmQ68 .carousel {
    min-height: 330px;
  }
  .cid-v8KYQkmQ68 .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-v8KYQkmQ68 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v8KYQkmQ68 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v8KYQkmQ68 .carousel,
.cid-v8KYQkmQ68 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v8KYQkmQ68 .item-wrapper {
  width: 100%;
}
.cid-v8KYQkmQ68 .carousel-caption {
  bottom: 40px;
}
.cid-v8KYQkmQ68 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v8KYQkmQ68 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v8KYQkmQ68 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v8KYQkmQ68 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v8KYQkmQ68 .carousel-control {
  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-v8KYQkmQ68 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8KYQkmQ68 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v8KYQkmQ68 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v8KYQkmQ68 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v8KYQkmQ68 .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-v8KYQkmQ68 .carousel-indicators li.active,
.cid-v8KYQkmQ68 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v8KYQkmQ68 .carousel-indicators li::after,
.cid-v8KYQkmQ68 .carousel-indicators li::before {
  content: none;
}
.cid-v8KYQkmQ68 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v8KYQkmQ68 .carousel-indicators {
    display: none !important;
  }
}
.cid-v8KYQo2A70 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #a288df;
}
.cid-v8KYQoWiay {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-v8KYQoWiay .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8KYQoWiay .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-v8KYQoWiay .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQoWiay img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8KYQoWiay .text-wrapper {
    padding: 2rem;
  }
}
.cid-v8KYQoWiay .mbr-section-title {
  text-align: center;
}
.cid-v8KYQoWiay .mbr-text {
  text-align: center;
}
.cid-v8KYQqpLXC {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v8KYQqpLXC .mbr-section-title {
  color: #ffffff;
}
.cid-v8KYQqpLXC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v8KYQqpLXC .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-v8KYQsAV0h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a288df;
}
@media (max-width: 991px) {
  .cid-v8KYQsAV0h .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQsAV0h .row {
  flex-direction: row-reverse;
}
.cid-v8KYQsAV0h img {
  width: 100%;
}
.cid-v8KYQtaNlD {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v8KYQtaNlD .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-v8KYQtaNlD .panel-group {
  border: none;
}
.cid-v8KYQtaNlD .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v8KYQtaNlD .panel-body,
.cid-v8KYQtaNlD .card-header {
  padding: 1rem 0;
}
.cid-v8KYQtaNlD .panel-title-edit {
  color: #a288df;
}
.cid-v8KYQtaNlD .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v8KYQtaNlD H3 {
  color: #000000;
}
.cid-v8KYQtaNlD H4 {
  color: #000000;
}
.cid-v8KYQtaNlD .panel-text {
  color: #000000;
}
.cid-v8KYQu0T5f {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v8KYQu0T5f .mbr-text {
  color: #ffffff;
}
.cid-v8KYQu0T5f .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v8KYQurswt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v8KYQurswt .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-v8KYQurswt .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v8KYQv206o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v8KYQv206o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQv206o .row {
  flex-direction: row-reverse;
}
.cid-v8KYQv206o img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8KYQv206o .text-wrapper {
    padding: 2rem;
  }
}
.cid-v8KYQv206o .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v8KYQvyEUi {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #a288df;
}
.cid-v8KYQvyEUi .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-v8KYQvyEUi .mbr-section-title,
.cid-v8KYQvyEUi .mbr-section-subtitle {
  text-align: center;
}
.cid-v8KYQvyEUi .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v8KYQvyEUi .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-v8KYQvyEUi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-v8KYQvyEUi .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v8KYQvyEUi .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8KYQvyEUi .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v8KYQvyEUi .mbr-section-subtitle {
  color: #000000;
}
.cid-v8KYQvyEUi .mbr-section-title {
  color: #000000;
}
.cid-v8KYQvyEUi .card-title {
  color: #000000;
}
.cid-v8KYQvyEUi .mbr-text {
  color: #000000;
}
.cid-v8KYQwKjwQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #a288df;
}
.cid-v8KYQwKjwQ .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-v8KYQwKjwQ .mbr-section-title,
.cid-v8KYQwKjwQ .mbr-section-subtitle {
  text-align: center;
}
.cid-v8KYQwKjwQ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v8KYQwKjwQ .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-v8KYQwKjwQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-v8KYQwKjwQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v8KYQwKjwQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8KYQwKjwQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v8KYQwKjwQ .mbr-section-subtitle {
  color: #000000;
}
.cid-v8KYQwKjwQ .mbr-section-title {
  color: #000000;
}
.cid-v8KYQwKjwQ .card-title {
  color: #000000;
}
.cid-v8KYQwKjwQ .mbr-text {
  color: #000000;
}
.cid-v8KYR214wY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a288df;
}
.cid-v8KYR214wY H2 {
  color: #000000;
}
.cid-v8KYR214wY .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-v8KYR2vLrL {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8KYR2vLrL P {
  color: #767676;
}
.cid-v8KYR2vLrL H1 {
  color: #000000;
}
.cid-v8KYQy1lOv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v8KYQy1lOv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQy1lOv .row {
  flex-direction: row-reverse;
}
.cid-v8KYQy1lOv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8KYQy1lOv .text-wrapper {
    padding: 2rem;
  }
}
.cid-v8KYQy1lOv .mbr-section-title {
  color: #000000;
}
.cid-v8KYQy1lOv .mbr-text {
  color: #000000;
}
.cid-v8KYR38Mco {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v8KYR38Mco H2 {
  color: #000000;
}
.cid-v8KYR38Mco .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-v8KYR3AL8b {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-v8KYR3AL8b P {
  color: #767676;
}
.cid-v8KYR3AL8b H1 {
  color: #ffffff;
}
.cid-v8KYQyHDrt {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-v8KYQyHDrt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQyHDrt .row {
  flex-direction: row-reverse;
}
.cid-v8KYQyHDrt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8KYQyHDrt .text-wrapper {
    padding: 2rem;
  }
}
.cid-v8KYQyHDrt .mbr-section-title {
  color: #000000;
}
.cid-v8KYQyHDrt .mbr-text {
  color: #ffffff;
}
.cid-v8KYR4oGl9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-v8KYR4oGl9 H2 {
  color: #000000;
}
.cid-v8KYR4oGl9 .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-v8KYR4WgFS {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #a288df;
}
.cid-v8KYR4WgFS P {
  color: #767676;
}
.cid-v8KYR4WgFS H1 {
  color: #000000;
}
.cid-v8KYQzg4Pc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #a288df;
}
@media (max-width: 991px) {
  .cid-v8KYQzg4Pc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQzg4Pc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8KYQzg4Pc .text-wrapper {
    padding: 2rem;
  }
}
.cid-v8KYQzg4Pc .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-v8KYQzg4Pc .mbr-section-title {
  color: #000000;
}
.cid-v8KYR5tCWy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #a288df;
}
.cid-v8KYR5tCWy H2 {
  color: #000000;
}
.cid-v8KYR5tCWy .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-v8KYR5IbLW {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8KYR5IbLW P {
  color: #767676;
}
.cid-v8KYR5IbLW H1 {
  color: #000000;
}
.cid-v8KYQzPybW {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v8KYQzPybW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQzPybW .row {
  flex-direction: row-reverse;
}
.cid-v8KYQzPybW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v8KYQzPybW .text-wrapper {
    padding: 2rem;
  }
}
.cid-v8KYQzPybW .mbr-section-title {
  color: #000000;
}
.cid-v8KYQzPybW .mbr-text {
  color: #000000;
}
.cid-v8KYR60clB {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v8KYR60clB H2 {
  color: #000000;
}
.cid-v8KYR60clB .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-v8KYQAueQl {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #a288df;
}
.cid-v8KYQAueQl img,
.cid-v8KYQAueQl .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v8KYQAueQl .item:focus,
.cid-v8KYQAueQl span:focus {
  outline: none;
}
.cid-v8KYQAueQl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8KYQAueQl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8KYQAueQl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8KYQAueQl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8KYQAueQl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8KYQAueQl .mbr-section-title {
  color: #000000;
}
.cid-v8KYQAueQl .mbr-text,
.cid-v8KYQAueQl .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v8KYQAueQl .item-title {
  text-align: center;
}
.cid-v8KYQAueQl .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-v8KYQDrffj {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v8KYQDrffj img,
.cid-v8KYQDrffj .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v8KYQDrffj .item:focus,
.cid-v8KYQDrffj span:focus {
  outline: none;
}
.cid-v8KYQDrffj .item-wrapper {
  position: relative;
}
.cid-v8KYQDrffj .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8KYQDrffj .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8KYQDrffj .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-v8KYQDrffj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8KYQDrffj .mbr-section-title {
  color: #ffffff;
}
.cid-v8KYQDrffj .mbr-text,
.cid-v8KYQDrffj .mbr-section-btn {
  text-align: left;
}
.cid-v8KYQDrffj .item-title {
  text-align: left;
}
.cid-v8KYQDrffj .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v8KYQDrffj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-v8KYQDrffj .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v8KYQDrffj .embla__button--next,
.cid-v8KYQDrffj .embla__button--prev {
  display: flex;
}
.cid-v8KYQDrffj .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-v8KYQDrffj .embla__button {
    display: none;
  }
}
.cid-v8KYQDrffj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v8KYQDrffj .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v8KYQDrffj .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8KYQDrffj .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v8KYQDrffj .embla__button {
    top: auto;
  }
}
.cid-v8KYQDrffj .embla {
  position: relative;
  width: 100%;
}
.cid-v8KYQDrffj .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v8KYQDrffj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v8KYQDrffj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v8KYQDrffj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-v8KYQDrffj .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-v8KYQDrffj .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-v8KYQDrffj .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-v8KYQDrffj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v8KYQSnWYF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v8KYQSnWYF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8KYQSnWYF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8KYQSnWYF .mbr-section-title {
  color: #a288df;
}
.cid-v8KYQTir0D {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v8KYQTir0D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8KYQTir0D .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-v8KYQTir0D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v8KYQTir0D .row {
  flex-direction: row-reverse;
}
.cid-v8KYQTir0D img {
  width: 100%;
}
.cid-v8KYQUe8j1 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v8KYQUe8j1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8KYQUe8j1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8KYQUe8j1 .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-v8KYQUe8j1 .number {
  color: #a288df;
}
.cid-v8KYQUe8j1 .period {
  display: block;
}
.cid-v8KYQUe8j1 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v8KYQUe8j1 .period {
    font-size: 0.8rem;
  }
}
.cid-v8KYQUe8j1 .btn {
  height: 100%;
  margin: 0;
}
.cid-v8KYQUe8j1 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v8KYQUe8j1 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v8KYQUe8j1 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v8KYQUe8j1 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v8KYQUe8j1 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-v8KYR6KRVs {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #a288df;
}
.cid-v8KYR6KRVs P {
  color: #767676;
}
.cid-v8KYR6KRVs H1 {
  color: #000000;
}
.cid-v8KYR6KRVs H3 {
  color: #000000;
}
.cid-v8KYQVjtKa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #a288df;
}
.cid-v8KYQVjtKa .mbr-section-subtitle {
  color: #000000;
}
.cid-v8KYQVjtKa .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v8KYQW63Uv {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #a288df;
}
.cid-v8KYQW63Uv .google-map {
  height: 30rem;
  position: relative;
}
.cid-v8KYQW63Uv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v8KYQW63Uv .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-v8KYQW63Uv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v8KYQW63Uv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v8KYQX8IhW {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v8KYQX8IhW .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-v8KYQX8IhW .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #a288df;
}
@media (max-width: 991px) {
  .cid-v8KYQX8IhW .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v8KYQX8IhW .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-v8KYQX8IhW .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #000000;
}
.cid-v8KYQX8IhW .card-title {
  color: #000000;
  text-align: center;
}
.cid-v8KYQX8IhW P {
  text-align: center;
}
.cid-v8KYQYkSzQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/logopeque2-1701x567.jpg");
}
.cid-v8KYQYkSzQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v8KYQYkSzQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v8KYQYkSzQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v8KYQYkSzQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v8KYQYkSzQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v8KYQYkSzQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v8KYQYkSzQ .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-v8KYQYkSzQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v8KYQYkSzQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v8KYQYkSzQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v8KYQYkSzQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v8KYQYkSzQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v8KYQYkSzQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v8KYQYkSzQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v8KYQYkSzQ .media-container-row .mbr-text {
  color: #ffffff;
}
