.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Baloo 2', display;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Baloo 2', display;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Baloo 2', display;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Baloo 2', display;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Baloo 2', display;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #09529f !important;
}
.bg-success {
  background-color: #f09609 !important;
}
.bg-info {
  background-color: #6bc8f0 !important;
}
.bg-warning {
  background-color: #f38906 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #09529f !important;
  border-color: #09529f !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: #04284d !important;
  border-color: #04284d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #04284d !important;
  border-color: #04284d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #09529f !important;
  border-color: #09529f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #04284d !important;
  border-color: #04284d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #04284d !important;
  border-color: #04284d !important;
}
.btn-info,
.btn-info:active {
  background-color: #6bc8f0 !important;
  border-color: #6bc8f0 !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: #1cabe8 !important;
  border-color: #1cabe8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1cabe8 !important;
  border-color: #1cabe8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f09609 !important;
  border-color: #f09609 !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: #9c6206 !important;
  border-color: #9c6206 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9c6206 !important;
  border-color: #9c6206 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f38906 !important;
  border-color: #f38906 !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: #9e5904 !important;
  border-color: #9e5904 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9e5904 !important;
  border-color: #9e5904 !important;
}
.btn-danger,
.btn-danger: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-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.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-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #09529f;
  color: #09529f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #04284d !important;
  background-color: transparent!important;
  border-color: #04284d !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #09529f !important;
  border-color: #09529f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #09529f;
  color: #09529f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #04284d !important;
  background-color: transparent!important;
  border-color: #04284d !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #09529f !important;
  border-color: #09529f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #6bc8f0;
  color: #6bc8f0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1cabe8 !important;
  background-color: transparent!important;
  border-color: #1cabe8 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6bc8f0 !important;
  border-color: #6bc8f0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #f09609;
  color: #f09609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #9c6206 !important;
  background-color: transparent!important;
  border-color: #9c6206 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f09609 !important;
  border-color: #f09609 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #f38906;
  color: #f38906;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9e5904 !important;
  background-color: transparent!important;
  border-color: #9e5904 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f38906 !important;
  border-color: #f38906 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #09529f !important;
}
.text-secondary {
  color: #09529f !important;
}
.text-success {
  color: #f09609 !important;
}
.text-info {
  color: #6bc8f0 !important;
}
.text-warning {
  color: #f38906 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #04203e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #04203e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #8e5905 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #17a2de !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8f5104 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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: #09529f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6bc8f0;
}
.alert-warning {
  background-color: #f38906;
}
.alert-danger {
  background-color: #ffffff;
}
.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: #09529f;
  border-color: #09529f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #09529f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3491f4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fde8c8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fee5c7;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Baloo 2', display;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #09529f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Baloo 2', display;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #09529f;
}
/* 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: #09529f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #09529f;
}
.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: #09529f;
  border-bottom-color: #09529f;
}
.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: #09529f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #09529f !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='%2309529f' %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-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-us8pdjCzsD {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/header-comunidad-2000x640.jpg");
}
.cid-us8pdjCzsD .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-us8pdjCzsD .mbr-text,
.cid-us8pdjCzsD .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-us8pdjCzsD .mbr-section-title,
  .cid-us8pdjCzsD .mbr-section-btn,
  .cid-us8pdjCzsD .mbr-text {
    text-align: center;
  }
}
.cid-uE8MueqTGO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uE8MueqTGO .mbr-section-title {
  text-align: center;
}
.cid-uE8MueqTGO .mbr-section-text {
  text-align: center;
}
.cid-uE8MueqTGO button[type="submit"] {
  border-radius: 100px;
}
.cid-uE8MueqTGO a[type="submit"],
.cid-uE8MueqTGO button[type="submit"] {
  margin-top: 0;
}
.cid-uE8MueqTGO .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-uE8MueqTGO mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-uE8MueqTGO .row .spinner-border,
.cid-uE8MueqTGO .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-uE8MueqTGO .gdpr-block {
  display: none;
}
.cid-us8pe0vTfR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/body-th-1-2000x1034.jpg");
}
.cid-us8pe0vTfR .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-us8pe0vTfR img,
.cid-us8pe0vTfR .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-us8pe0vTfR .item:focus,
.cid-us8pe0vTfR span:focus {
  outline: none;
}
.cid-us8pe0vTfR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8pe0vTfR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8pe0vTfR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8pe0vTfR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8pe0vTfR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8pe0vTfR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8pe0vTfR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8pe0vTfR .mbr-section-title {
  color: #09529f;
}
.cid-us8pe0vTfR .mbr-text,
.cid-us8pe0vTfR .mbr-section-btn {
  text-align: center;
}
.cid-us8pe0vTfR .item-title {
  text-align: center;
  color: #00b2ec;
}
.cid-us8pe0vTfR .item-subtitle {
  text-align: center;
  color: #9b9b9b;
}
@media (max-width: 767px) {
  .cid-us8pe0vTfR .row {
    margin-left: 0;
    margin-right: 0;
  }
  .cid-us8pe0vTfR .btn-info {
    font-size: 11px;
  }
  .cid-us8pe0vTfR .item-title {
    font-size: 18px;
  }
}
.cid-us8periVau {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8periVau img,
.cid-us8periVau .item-img {
  width: 100%;
}
.cid-us8periVau .item:focus,
.cid-us8periVau span:focus {
  outline: none;
}
.cid-us8periVau .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8periVau .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8periVau .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8periVau .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8periVau .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8periVau .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8periVau .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8periVau .mbr-section-title {
  color: #09529f;
}
.cid-us8periVau .mbr-text,
.cid-us8periVau .mbr-section-btn {
  text-align: center;
}
.cid-us8periVau .item-title {
  text-align: center;
  color: #00b2ec;
}
.cid-us8periVau .item-subtitle {
  text-align: center;
  color: #9b9b9b;
}
@media (max-width: 767px) {
  .cid-us8periVau .btn-info {
    font-size: 11px;
  }
  .cid-us8periVau .item-title {
    font-size: 18px;
  }
}
.cid-us8peRzVmr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-us8peRzVmr .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-us8peRzVmr form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-us8peRzVmr form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-us8peRzVmr form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-us8peRzVmr .mbr-section-title {
  color: #6bc8f0;
}
.cid-us8peRzVmr .mbr-section-subtitle {
  color: #9b9b9b;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-t8EBUpenkP {
  background-image: url("../../../assets/images/happy-man-showing-results-of-blood-pressure-on-electric-tonometer-2000x1429.jpg");
}
.cid-t8EBUpenkP .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8EBUpenkP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8EBUpenkP .mbr-section-title {
  color: #f38906;
  text-align: left;
}
.cid-t8EBUpenkP .mbr-section-subtitle {
  color: #093790;
}
.cid-t8EBUppwxi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8EBUppwxi .mbr-section-title {
  color: #f09609;
}
.cid-t8EBUpyT0A {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8EBUpyT0A img,
.cid-t8EBUpyT0A .item-img {
  width: 100%;
}
.cid-t8EBUpyT0A .item:focus,
.cid-t8EBUpyT0A span:focus {
  outline: none;
}
.cid-t8EBUpyT0A .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8EBUpyT0A .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8EBUpyT0A .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8EBUpyT0A .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8EBUpyT0A .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8EBUpyT0A .mbr-section-title {
  color: #6bc8f0;
  text-align: left;
}
.cid-t8EBUpyT0A .mbr-text,
.cid-t8EBUpyT0A .mbr-section-btn {
  text-align: center;
}
.cid-t8EBUpyT0A .item-title {
  text-align: left;
}
.cid-t8EBUpyT0A .item-subtitle {
  text-align: center;
}
.cid-t8Ne2hG7o0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8Ne2hG7o0 .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8Ne1pvLHw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t8Ne1pvLHw img,
.cid-t8Ne1pvLHw .item-img {
  width: 100%;
}
.cid-t8Ne1pvLHw .item:focus,
.cid-t8Ne1pvLHw span:focus {
  outline: none;
}
.cid-t8Ne1pvLHw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8Ne1pvLHw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8Ne1pvLHw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8Ne1pvLHw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8Ne1pvLHw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8Ne1pvLHw .mbr-section-title {
  color: #232323;
}
.cid-t8Ne1pvLHw .mbr-text,
.cid-t8Ne1pvLHw .mbr-section-btn {
  text-align: left;
}
.cid-t8Ne1pvLHw .item-title {
  text-align: left;
}
.cid-t8Ne1pvLHw .item-subtitle {
  text-align: center;
}
.cid-t8NgMuOUkz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8NgMuOUkz .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8NdFgaKvW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8NdFgaKvW .mbr-section-title {
  color: #f09609;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-t7HOTJOFgr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/cancer-de-estomago-2-min-scaled-2000x975.jpg");
}
.cid-t7HOTJOFgr .mbr-fallback-image.disabled {
  display: none;
}
.cid-t7HOTJOFgr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t7HOTJOFgr .mbr-section-title {
  color: #ffffff;
}
.cid-t7HOTJOFgr .mbr-section-subtitle {
  color: #093790;
}
.cid-t80M7mQo3n {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t80M7mQo3n .mbr-section-title {
  color: #f09609;
}
.cid-t80BgsWq6Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t80BgsWq6Z img,
.cid-t80BgsWq6Z .item-img {
  width: 100%;
}
.cid-t80BgsWq6Z .item:focus,
.cid-t80BgsWq6Z span:focus {
  outline: none;
}
.cid-t80BgsWq6Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t80BgsWq6Z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t80BgsWq6Z .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t80BgsWq6Z .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t80BgsWq6Z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t80BgsWq6Z .mbr-section-title {
  color: #6bc8f0;
  text-align: left;
}
.cid-t80BgsWq6Z .mbr-text,
.cid-t80BgsWq6Z .mbr-section-btn {
  text-align: center;
}
.cid-t80BgsWq6Z .item-title {
  text-align: left;
}
.cid-t80BgsWq6Z .item-subtitle {
  text-align: center;
}
.cid-t816RS7Jsn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t816RS7Jsn .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8MQHoRGdW {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t8MQHoRGdW img,
.cid-t8MQHoRGdW .item-img {
  width: 100%;
}
.cid-t8MQHoRGdW .item:focus,
.cid-t8MQHoRGdW span:focus {
  outline: none;
}
.cid-t8MQHoRGdW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8MQHoRGdW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8MQHoRGdW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8MQHoRGdW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8MQHoRGdW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8MQHoRGdW .mbr-section-title {
  color: #232323;
}
.cid-t8MQHoRGdW .mbr-text,
.cid-t8MQHoRGdW .mbr-section-btn {
  text-align: left;
}
.cid-t8MQHoRGdW .item-title {
  text-align: left;
}
.cid-t8MQHoRGdW .item-subtitle {
  text-align: center;
}
.cid-t80ztFoJh1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t8MS2DZ5Lw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t8MS2DZ5Lw .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8MS2DZ5Lw .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-t8MS2DZ5Lw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8MS2DZ5Lw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8MS2DZ5Lw .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8MS2DZ5Lw .mbr-text {
  text-align: left;
}
.cid-t8MS2DZ5Lw .mbr-section-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-t8MTrzmyjU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8MTrzmyjU .mbr-section-title {
  color: #f09609;
}
.cid-t8MZTf4zO2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8MZTf4zO2 .mbr-section-title {
  color: #6bc8f0;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-t8EC117LlA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/close-up-of-doctor-s-hand-758x505.jpg");
}
.cid-t8EC117LlA .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8EC117LlA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8EC117LlA .mbr-section-title {
  color: #f09609;
}
.cid-t8EC117LlA .mbr-section-subtitle {
  color: #093790;
}
.cid-t8NntwA0yG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8NntwA0yG .mbr-section-title {
  color: #f09609;
}
.cid-t8EC11zbbk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8EC11zbbk .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8EC11M2kz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8EC11M2kz img,
.cid-t8EC11M2kz .item-img {
  width: 100%;
}
.cid-t8EC11M2kz .item:focus,
.cid-t8EC11M2kz span:focus {
  outline: none;
}
.cid-t8EC11M2kz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8EC11M2kz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8EC11M2kz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8EC11M2kz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8EC11M2kz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8EC11M2kz .mbr-section-title {
  color: #6bc8f0;
  text-align: left;
}
.cid-t8EC11M2kz .mbr-text,
.cid-t8EC11M2kz .mbr-section-btn {
  text-align: center;
}
.cid-t8EC11M2kz .item-title {
  text-align: left;
}
.cid-t8EC11M2kz .item-subtitle {
  text-align: center;
}
.cid-t8NiSJZfmj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8NiSJZfmj .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8Nncm5z16 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8Nncm5z16 img,
.cid-t8Nncm5z16 .item-img {
  width: 100%;
}
.cid-t8Nncm5z16 .item:focus,
.cid-t8Nncm5z16 span:focus {
  outline: none;
}
.cid-t8Nncm5z16 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8Nncm5z16 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8Nncm5z16 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8Nncm5z16 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8Nncm5z16 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8Nncm5z16 .mbr-section-title {
  color: #6bc8f0;
  text-align: left;
}
.cid-t8Nncm5z16 .mbr-text,
.cid-t8Nncm5z16 .mbr-section-btn {
  text-align: center;
}
.cid-t8Nncm5z16 .item-title {
  text-align: left;
}
.cid-t8Nncm5z16 .item-subtitle {
  text-align: center;
}
.cid-t8NndEkSBq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8NndEkSBq .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8PERtPXNE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8PERtPXNE img,
.cid-t8PERtPXNE .item-img {
  width: 100%;
}
.cid-t8PERtPXNE .item:focus,
.cid-t8PERtPXNE span:focus {
  outline: none;
}
.cid-t8PERtPXNE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8PERtPXNE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8PERtPXNE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8PERtPXNE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8PERtPXNE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8PERtPXNE .mbr-section-title {
  color: #6bc8f0;
  text-align: left;
}
.cid-t8PERtPXNE .mbr-text,
.cid-t8PERtPXNE .mbr-section-btn {
  text-align: center;
}
.cid-t8PERtPXNE .item-title {
  text-align: left;
}
.cid-t8PERtPXNE .item-subtitle {
  text-align: center;
}
.cid-t8EC1267Mi {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t8EC1267Mi .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8EC131cLu {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t8EC131cLu .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8PQJeiocM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t8PQJeiocM .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8PRQwHe4w {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t8PRQwHe4w .mbr-section-title {
  color: #6bc8f0;
}
.cid-t8NiuueIdD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8NiuueIdD .mbr-section-title {
  color: #6bc8f0;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uaY1LFJU8e {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-cursos-2000x564.jpg");
}
.cid-uaY1LFJU8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaY1LFJU8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaY1LFJU8e H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uaY1LFJU8e .mbr-text,
.cid-uaY1LFJU8e .mbr-section-btn {
  text-align: center;
}
.cid-uaY1CsjzVM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-web1-1920x1080.jpg");
}
.cid-uaY1CsjzVM .mobi-mbri-right:before {
  font-size: small;
}
.cid-uaY1CsjzVM .mbr-iconfont {
  width: 50%;
  margin: 0 auto;
}
.cid-uaY1CsjzVM .mbr-overlay {
  background: #fafafa;
  opacity: 0;
}
.cid-uaY1CsjzVM img,
.cid-uaY1CsjzVM .item-img {
  width: 100%;
}
.cid-uaY1CsjzVM .item:focus,
.cid-uaY1CsjzVM span:focus {
  outline: none;
}
.cid-uaY1CsjzVM .item-wrapper {
  position: relative;
}
.cid-uaY1CsjzVM .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-uaY1CsjzVM .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uaY1CsjzVM .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaY1CsjzVM .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uaY1CsjzVM .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uaY1CsjzVM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaY1CsjzVM .mbr-section-title {
  color: #6bc8f0;
}
.cid-uaY1CsjzVM .mbr-text,
.cid-uaY1CsjzVM .mbr-section-btn {
  text-align: left;
  color: #f09609;
}
.cid-uaY1CsjzVM .item-title {
  text-align: left;
  color: #353535;
}
.cid-uaY1CsjzVM .item-subtitle {
  text-align: left;
  color: #f09609;
}
.cid-uaY1CsjzVM .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uaY1CsjzVM .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uaY1CsjzVM .embla__button--next,
.cid-uaY1CsjzVM .embla__button--prev {
  display: flex;
}
.cid-uaY1CsjzVM .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #F1940A;
  border: 2px solid #F1940A;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uaY1CsjzVM .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uaY1CsjzVM .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uaY1CsjzVM .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-uaY1CsjzVM .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-uaY1CsjzVM .embla__button {
    top: auto;
  }
}
.cid-uaY1CsjzVM .embla {
  position: relative;
  width: 100%;
}
.cid-uaY1CsjzVM .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uaY1CsjzVM .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uaY1CsjzVM .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uaY1CsjzVM .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-uaY1CsjzVM .embla__container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .cid-uaY1CsjzVM .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uaY1CsjzVM .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tLftx5pppb {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-educacin-fi-2000x564.jpg");
}
.cid-tLftx5pppb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLftx5pppb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLftx5pppb H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tLftx5pppb .mbr-text,
.cid-tLftx5pppb .mbr-section-btn {
  text-align: center;
}
.cid-tNjGHRkO7x {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNjGHRkO7x img,
.cid-tNjGHRkO7x .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-tNjGHRkO7x .item:focus,
.cid-tNjGHRkO7x span:focus {
  outline: none;
}
.cid-tNjGHRkO7x .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNjGHRkO7x .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNjGHRkO7x .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNjGHRkO7x .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tNjGHRkO7x .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNjGHRkO7x .mbr-section-title {
  color: #232323;
}
.cid-tNjGHRkO7x .mbr-text,
.cid-tNjGHRkO7x .mbr-section-btn {
  text-align: center;
}
.cid-tNjGHRkO7x .item-title {
  text-align: center;
}
.cid-tNjGHRkO7x .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tOseZYyQmT {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/banner-pyp-f-1-2000x564.jpg");
}
.cid-tOseZYyQmT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOseZYyQmT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOseZYyQmT H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOseZYyQmT .mbr-text,
.cid-tOseZYyQmT .mbr-section-btn {
  text-align: center;
}
.cid-u6Kwuk5eI9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6Kwuk5eI9 img,
.cid-u6Kwuk5eI9 .item-img {
  width: 100%;
}
.cid-u6Kwuk5eI9 .item:focus,
.cid-u6Kwuk5eI9 span:focus {
  outline: none;
}
.cid-u6Kwuk5eI9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6Kwuk5eI9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6Kwuk5eI9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6Kwuk5eI9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6Kwuk5eI9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6Kwuk5eI9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6Kwuk5eI9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6Kwuk5eI9 .mbr-section-title {
  color: #09529f;
}
.cid-u6Kwuk5eI9 .mbr-text,
.cid-u6Kwuk5eI9 .mbr-section-btn {
  text-align: left;
}
.cid-u6Kwuk5eI9 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-u6Kwuk5eI9 .item-subtitle {
  text-align: left;
}
.cid-u6KJAxn1tW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6KJAxn1tW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6KJAxn1tW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6KJAxn1tW .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u6KJAxn1tW .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u6KJAxn1tW .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6KJAxn1tW .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6KJAxn1tW .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6KJAxn1tW .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u6KJAxn1tW .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u6KJAxn1tW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u6KJAxn1tW .mbr-text,
.cid-u6KJAxn1tW .mbr-section-btn {
  color: #575757;
}
.cid-u6KJAxn1tW .card-title {
  color: #5cd3f3;
}
.cid-u6mhxl0poF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fondo-web1-1920x1080.jpg");
}
.cid-u6mhxl0poF .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-u6mhxl0poF img,
.cid-u6mhxl0poF .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-u6mhxl0poF .item:focus,
.cid-u6mhxl0poF span:focus {
  outline: none;
}
.cid-u6mhxl0poF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6mhxl0poF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6mhxl0poF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6mhxl0poF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6mhxl0poF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6mhxl0poF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6mhxl0poF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6mhxl0poF .mbr-section-title {
  color: #09529f;
}
.cid-u6mhxl0poF .mbr-text,
.cid-u6mhxl0poF .mbr-section-btn {
  text-align: center;
}
.cid-u6mhxl0poF .item-title {
  text-align: center;
  color: #353535;
}
.cid-u6mhxl0poF .item-subtitle {
  text-align: center;
}
.cid-u6KJFBscgK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6KJFBscgK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6KJFBscgK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6KJFBscgK .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u6KJFBscgK .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u6KJFBscgK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6KJFBscgK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6KJFBscgK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6KJFBscgK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u6KJFBscgK .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u6KJFBscgK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u6KJFBscgK .mbr-text,
.cid-u6KJFBscgK .mbr-section-btn {
  color: #575757;
}
.cid-u6KJFBscgK .card-title {
  color: #5cd3f3;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tOsfak1thQ {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/banner-pyp-fi-1-2000x564.jpg");
}
.cid-tOsfak1thQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOsfak1thQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOsfak1thQ H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOsfak1thQ .mbr-text,
.cid-tOsfak1thQ .mbr-section-btn {
  text-align: center;
}
.cid-ucQvo9jq0R {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucQvo9jq0R img,
.cid-ucQvo9jq0R .item-img {
  width: 100%;
}
.cid-ucQvo9jq0R .item:focus,
.cid-ucQvo9jq0R span:focus {
  outline: none;
}
.cid-ucQvo9jq0R .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ucQvo9jq0R .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ucQvo9jq0R .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ucQvo9jq0R .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucQvo9jq0R .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ucQvo9jq0R .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ucQvo9jq0R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ucQvo9jq0R .mbr-section-title {
  color: #09529f;
}
.cid-ucQvo9jq0R .mbr-text,
.cid-ucQvo9jq0R .mbr-section-btn {
  text-align: left;
}
.cid-ucQvo9jq0R .item-title {
  text-align: center;
  color: #09529f;
}
.cid-ucQvo9jq0R .item-subtitle {
  text-align: left;
}
.cid-u6KPmBfdTO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u6KPmBfdTO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6KPmBfdTO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6KPmBfdTO .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u6KPmBfdTO .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u6KPmBfdTO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6KPmBfdTO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6KPmBfdTO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6KPmBfdTO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u6KPmBfdTO .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u6KPmBfdTO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u6KPmBfdTO .mbr-text,
.cid-u6KPmBfdTO .mbr-section-btn {
  color: #575757;
}
.cid-u6KPmBfdTO .card-title {
  color: #5cd3f3;
}
.cid-u9EmUTztBC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fondo-web1-1920x1080.jpg");
}
.cid-u9EmUTztBC .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-u9EmUTztBC img,
.cid-u9EmUTztBC .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-u9EmUTztBC .item:focus,
.cid-u9EmUTztBC span:focus {
  outline: none;
}
.cid-u9EmUTztBC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u9EmUTztBC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u9EmUTztBC .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u9EmUTztBC .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u9EmUTztBC .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u9EmUTztBC .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u9EmUTztBC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u9EmUTztBC .mbr-section-title {
  color: #09529f;
}
.cid-u9EmUTztBC .mbr-text,
.cid-u9EmUTztBC .mbr-section-btn {
  text-align: center;
}
.cid-u9EmUTztBC .item-title {
  text-align: center;
  color: #353535;
}
.cid-u9EmUTztBC .item-subtitle {
  text-align: center;
}
.cid-u6KPnMglgK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6KPnMglgK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6KPnMglgK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6KPnMglgK .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u6KPnMglgK .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u6KPnMglgK .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6KPnMglgK .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6KPnMglgK .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6KPnMglgK .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u6KPnMglgK .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u6KPnMglgK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u6KPnMglgK .mbr-text,
.cid-u6KPnMglgK .mbr-section-btn {
  color: #575757;
}
.cid-u6KPnMglgK .card-title {
  color: #5cd3f3;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tOshvOP6uD {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/uci-f-2000x564.jpg");
}
.cid-tOshvOP6uD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOshvOP6uD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOshvOP6uD H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOshvOP6uD .mbr-text,
.cid-tOshvOP6uD .mbr-section-btn {
  text-align: center;
}
.cid-ub5vvQa7U9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ub5vvQa7U9 img,
.cid-ub5vvQa7U9 .item-img {
  width: 100%;
}
.cid-ub5vvQa7U9 .item:focus,
.cid-ub5vvQa7U9 span:focus {
  outline: none;
}
.cid-ub5vvQa7U9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ub5vvQa7U9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ub5vvQa7U9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ub5vvQa7U9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ub5vvQa7U9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ub5vvQa7U9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ub5vvQa7U9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ub5vvQa7U9 .mbr-section-title {
  color: #09529f;
}
.cid-ub5vvQa7U9 .mbr-text,
.cid-ub5vvQa7U9 .mbr-section-btn {
  text-align: left;
}
.cid-ub5vvQa7U9 .item-title {
  text-align: left;
  color: #09529f;
}
.cid-ub5vvQa7U9 .item-subtitle {
  text-align: left;
}
.cid-uSsR1VlCB8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSsR1VlCB8 img,
.cid-uSsR1VlCB8 .item-img {
  width: 100%;
}
.cid-uSsR1VlCB8 .item:focus,
.cid-uSsR1VlCB8 span:focus {
  outline: none;
}
.cid-uSsR1VlCB8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSsR1VlCB8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSsR1VlCB8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uSsR1VlCB8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSsR1VlCB8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uSsR1VlCB8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uSsR1VlCB8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSsR1VlCB8 .mbr-section-title {
  color: #09529f;
}
.cid-uSsR1VlCB8 .mbr-text,
.cid-uSsR1VlCB8 .mbr-section-btn {
  text-align: left;
}
.cid-uSsR1VlCB8 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uSsR1VlCB8 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tQUpas3671 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-partos-fi-2000x539.jpg");
}
.cid-tQUpas3671 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQUpas3671 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQUpas3671 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tQUpas3671 .mbr-text,
.cid-tQUpas3671 .mbr-section-btn {
  text-align: center;
}
.cid-tQVkY7sTv5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQVkY7sTv5 img,
.cid-tQVkY7sTv5 .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-tQVkY7sTv5 .item:focus,
.cid-tQVkY7sTv5 span:focus {
  outline: none;
}
.cid-tQVkY7sTv5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tQVkY7sTv5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQVkY7sTv5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQVkY7sTv5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tQVkY7sTv5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQVkY7sTv5 .mbr-section-title {
  color: #093790;
}
.cid-tQVkY7sTv5 .mbr-text,
.cid-tQVkY7sTv5 .mbr-section-btn {
  text-align: center;
}
.cid-tQVkY7sTv5 .item-title {
  text-align: center;
}
.cid-tQVkY7sTv5 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tQVkY7sTv5 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tQVkY7sTv5 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uR7D57ECJ3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR7D57ECJ3 img,
.cid-uR7D57ECJ3 .item-img {
  width: 100%;
}
.cid-uR7D57ECJ3 .item:focus,
.cid-uR7D57ECJ3 span:focus {
  outline: none;
}
.cid-uR7D57ECJ3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uR7D57ECJ3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uR7D57ECJ3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uR7D57ECJ3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uR7D57ECJ3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uR7D57ECJ3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uR7D57ECJ3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uR7D57ECJ3 .mbr-section-title {
  color: #09529f;
}
.cid-uR7D57ECJ3 .mbr-text,
.cid-uR7D57ECJ3 .mbr-section-btn {
  text-align: left;
}
.cid-uR7D57ECJ3 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uR7D57ECJ3 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tQUp4xmONf {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-partos-fp-2000x539.jpg");
}
.cid-tQUp4xmONf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQUp4xmONf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQUp4xmONf H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tQUp4xmONf .mbr-text,
.cid-tQUp4xmONf .mbr-section-btn {
  text-align: center;
}
.cid-tQUp4xCOPG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tQUp4xCOPG .item:focus,
.cid-tQUp4xCOPG span:focus {
  outline: none;
}
.cid-tQUp4xCOPG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tQUp4xCOPG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQUp4xCOPG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tQUp4xCOPG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQUp4xCOPG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tQUp4xCOPG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tQUp4xCOPG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQUp4xCOPG .mbr-section-title {
  color: #093790;
}
.cid-tQUp4xCOPG .mbr-text,
.cid-tQUp4xCOPG .mbr-section-btn {
  text-align: center;
}
.cid-tQUp4xCOPG .item-title {
  text-align: center;
}
.cid-tQUp4xCOPG .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tQUp4xCOPG .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tQUp4xCOPG .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uT27PIZTN2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uT27PIZTN2 img,
.cid-uT27PIZTN2 .item-img {
  width: 100%;
}
.cid-uT27PIZTN2 .item:focus,
.cid-uT27PIZTN2 span:focus {
  outline: none;
}
.cid-uT27PIZTN2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uT27PIZTN2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uT27PIZTN2 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uT27PIZTN2 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uT27PIZTN2 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uT27PIZTN2 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uT27PIZTN2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uT27PIZTN2 .mbr-section-title {
  color: #09529f;
}
.cid-uT27PIZTN2 .mbr-text,
.cid-uT27PIZTN2 .mbr-section-btn {
  text-align: left;
}
.cid-uT27PIZTN2 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uT27PIZTN2 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tQUtFePzNs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-partos-fp-2000x539.jpg");
}
.cid-tQUtFePzNs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQUtFePzNs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQUtFePzNs H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tQUtFePzNs .mbr-text,
.cid-tQUtFePzNs .mbr-section-btn {
  text-align: center;
}
.cid-tQUtFfqdka H1 {
  color: #fafafa;
  font-family: "Montserrat-bold";
  font-weight: bold;
}
.cid-tQUtFfqdka DIV {
  text-align: center;
}
.cid-tQUtFfqdka .delimitador {
  width: 560px;
  margin: auto;
}
.cid-tQUtFfqdka .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tQUu0zRAZr {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-partos-fp-2000x539.jpg");
}
.cid-tQUu0zRAZr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQUu0zRAZr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQUu0zRAZr H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tQUu0zRAZr .mbr-text,
.cid-tQUu0zRAZr .mbr-section-btn {
  text-align: center;
}
.cid-tQUCxSurXw H1 {
  color: #fafafa;
  font-family: "Montserrat-bold";
  font-weight: bold;
}
.cid-tQUCxSurXw DIV {
  text-align: center;
}
.cid-tQUCxSurXw .delimitador {
  width: 560px;
  margin: auto;
}
.cid-tQUCxSurXw .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tQUu2M4mTw {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-partos-fp-2000x539.jpg");
}
.cid-tQUu2M4mTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQUu2M4mTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQUu2M4mTw H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tQUu2M4mTw .mbr-text,
.cid-tQUu2M4mTw .mbr-section-btn {
  text-align: center;
}
.cid-tQUCBhwZAt H1 {
  color: #fafafa;
  font-family: "Montserrat-bold";
  font-weight: bold;
}
.cid-tQUCBhwZAt DIV {
  text-align: center;
}
.cid-tQUCBhwZAt .delimitador {
  width: 560px;
  margin: auto;
}
.cid-tQUCBhwZAt .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tTI5NVOPcw {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-centro-de-cncer-f-2000x564.jpg");
}
.cid-tTI5NVOPcw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTI5NVOPcw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTI5NVOPcw H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tTI5NVOPcw .mbr-text,
.cid-tTI5NVOPcw .mbr-section-btn {
  text-align: center;
}
.cid-uuA63qjRKb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuA63qjRKb .item:focus,
.cid-uuA63qjRKb span:focus {
  outline: none;
}
.cid-uuA63qjRKb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuA63qjRKb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuA63qjRKb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuA63qjRKb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuA63qjRKb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuA63qjRKb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuA63qjRKb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuA63qjRKb .mbr-section-title {
  color: #093790;
}
.cid-uuA63qjRKb .mbr-text,
.cid-uuA63qjRKb .mbr-section-btn {
  text-align: center;
}
.cid-uuA63qjRKb .item-title {
  text-align: center;
}
.cid-uuA63qjRKb .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uuA63qjRKb .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uuA63qjRKb .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-tTIchXhQec {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tTIchXhQec .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTIchXhQec .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTIchXhQec .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tTIchXhQec .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tTIchXhQec .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tTIchXhQec .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tTIchXhQec .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tTIchXhQec .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tTIchXhQec .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tTIchXhQec .card-title {
  color: #6bc8f0;
}
.cid-uSs9V9GsPT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSs9V9GsPT img,
.cid-uSs9V9GsPT .item-img {
  width: 100%;
}
.cid-uSs9V9GsPT .item:focus,
.cid-uSs9V9GsPT span:focus {
  outline: none;
}
.cid-uSs9V9GsPT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSs9V9GsPT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSs9V9GsPT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uSs9V9GsPT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSs9V9GsPT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uSs9V9GsPT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uSs9V9GsPT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSs9V9GsPT .mbr-section-title {
  color: #09529f;
}
.cid-uSs9V9GsPT .mbr-text,
.cid-uSs9V9GsPT .mbr-section-btn {
  text-align: left;
}
.cid-uSs9V9GsPT .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uSs9V9GsPT .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tTI6otoHEe {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-centro-de-cncer-fi-2000x564.jpg");
}
.cid-tTI6otoHEe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTI6otoHEe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTI6otoHEe H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tTI6otoHEe .mbr-text,
.cid-tTI6otoHEe .mbr-section-btn {
  text-align: center;
}
.cid-uuAffeKLfm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uuAffeKLfm .item:focus,
.cid-uuAffeKLfm span:focus {
  outline: none;
}
.cid-uuAffeKLfm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuAffeKLfm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuAffeKLfm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuAffeKLfm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuAffeKLfm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuAffeKLfm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuAffeKLfm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuAffeKLfm .mbr-section-title {
  color: #093790;
}
.cid-uuAffeKLfm .mbr-text,
.cid-uuAffeKLfm .mbr-section-btn {
  text-align: center;
}
.cid-uuAffeKLfm .item-title {
  text-align: center;
}
.cid-uuAffeKLfm .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uuAffeKLfm .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uuAffeKLfm .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPPstapmum {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPstapmum img,
.cid-uPPstapmum .item-img {
  width: 100%;
}
.cid-uPPstapmum .item:focus,
.cid-uPPstapmum span:focus {
  outline: none;
}
.cid-uPPstapmum .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPstapmum .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPstapmum .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPstapmum .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPstapmum .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPstapmum .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPstapmum .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPstapmum .mbr-section-title {
  color: #09529f;
}
.cid-uPPstapmum .mbr-text,
.cid-uPPstapmum .mbr-section-btn {
  text-align: left;
}
.cid-uPPstapmum .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPstapmum .item-subtitle {
  text-align: left;
}
.cid-ub3JrygdSu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ub3JrygdSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub3JrygdSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub3JrygdSu .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ub3JrygdSu .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ub3JrygdSu .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ub3JrygdSu .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ub3JrygdSu .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ub3JrygdSu .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-ub3JrygdSu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ub3JrygdSu .card-title {
  color: #6bc8f0;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tYP9EtPM0u {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-soporte-nutricional-fp-2000x564.jpg");
}
.cid-tYP9EtPM0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYP9EtPM0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYP9EtPM0u H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tYP9EtPM0u .mbr-text,
.cid-tYP9EtPM0u .mbr-section-btn {
  text-align: center;
}
.cid-uqOlGSyph8 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqOlGSyph8 .item:focus,
.cid-uqOlGSyph8 span:focus {
  outline: none;
}
.cid-uqOlGSyph8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uqOlGSyph8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uqOlGSyph8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uqOlGSyph8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqOlGSyph8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uqOlGSyph8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uqOlGSyph8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uqOlGSyph8 .mbr-section-title {
  color: #093790;
}
.cid-uqOlGSyph8 .mbr-text,
.cid-uqOlGSyph8 .mbr-section-btn {
  text-align: center;
}
.cid-uqOlGSyph8 .item-title {
  text-align: center;
}
.cid-uqOlGSyph8 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uqOlGSyph8 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uqOlGSyph8 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uUrIOxmpD1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uUrIOxmpD1 img,
.cid-uUrIOxmpD1 .item-img {
  width: 100%;
}
.cid-uUrIOxmpD1 .item:focus,
.cid-uUrIOxmpD1 span:focus {
  outline: none;
}
.cid-uUrIOxmpD1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uUrIOxmpD1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUrIOxmpD1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uUrIOxmpD1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUrIOxmpD1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uUrIOxmpD1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uUrIOxmpD1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUrIOxmpD1 .mbr-section-title {
  color: #09529f;
}
.cid-uUrIOxmpD1 .mbr-text,
.cid-uUrIOxmpD1 .mbr-section-btn {
  text-align: left;
}
.cid-uUrIOxmpD1 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uUrIOxmpD1 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tYPmePdlkI {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-soporte-nutricional-fi-2000x564.jpg");
}
.cid-tYPmePdlkI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYPmePdlkI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYPmePdlkI H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tYPmePdlkI .mbr-text,
.cid-tYPmePdlkI .mbr-section-btn {
  text-align: center;
}
.cid-tYPmePx8pj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYPmePx8pj .item:focus,
.cid-tYPmePx8pj span:focus {
  outline: none;
}
.cid-tYPmePx8pj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYPmePx8pj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYPmePx8pj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tYPmePx8pj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYPmePx8pj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tYPmePx8pj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tYPmePx8pj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYPmePx8pj .mbr-section-title {
  color: #093790;
}
.cid-tYPmePx8pj .mbr-text,
.cid-tYPmePx8pj .mbr-section-btn {
  text-align: center;
}
.cid-tYPmePx8pj .item-title {
  text-align: center;
}
.cid-tYPmePx8pj .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tYPmePx8pj .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tYPmePx8pj .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPOq43qXWs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPOq43qXWs img,
.cid-uPOq43qXWs .item-img {
  width: 100%;
}
.cid-uPOq43qXWs .item:focus,
.cid-uPOq43qXWs span:focus {
  outline: none;
}
.cid-uPOq43qXWs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPOq43qXWs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPOq43qXWs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPOq43qXWs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPOq43qXWs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPOq43qXWs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPOq43qXWs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPOq43qXWs .mbr-section-title {
  color: #09529f;
}
.cid-uPOq43qXWs .mbr-text,
.cid-uPOq43qXWs .mbr-section-btn {
  text-align: left;
}
.cid-uPOq43qXWs .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPOq43qXWs .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tYPola2i17 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/banner-heridas-fp-1-2000x564.jpg");
}
.cid-tYPola2i17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYPola2i17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYPola2i17 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tYPola2i17 .mbr-text,
.cid-tYPola2i17 .mbr-section-btn {
  text-align: center;
}
.cid-tYPolagZBg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYPolagZBg .item:focus,
.cid-tYPolagZBg span:focus {
  outline: none;
}
.cid-tYPolagZBg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYPolagZBg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYPolagZBg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tYPolagZBg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYPolagZBg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tYPolagZBg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tYPolagZBg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYPolagZBg .mbr-section-title {
  color: #093790;
}
.cid-tYPolagZBg .mbr-text,
.cid-tYPolagZBg .mbr-section-btn {
  text-align: center;
}
.cid-tYPolagZBg .item-title {
  text-align: center;
}
.cid-tYPolagZBg .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tYPolagZBg .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tYPolagZBg .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uT25j59R4e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uT25j59R4e img,
.cid-uT25j59R4e .item-img {
  width: 100%;
}
.cid-uT25j59R4e .item:focus,
.cid-uT25j59R4e span:focus {
  outline: none;
}
.cid-uT25j59R4e .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uT25j59R4e .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uT25j59R4e .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uT25j59R4e .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uT25j59R4e .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uT25j59R4e .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uT25j59R4e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uT25j59R4e .mbr-section-title {
  color: #09529f;
}
.cid-uT25j59R4e .mbr-text,
.cid-uT25j59R4e .mbr-section-btn {
  text-align: left;
}
.cid-uT25j59R4e .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uT25j59R4e .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tYPtRj0HRl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-heridas-fi-2000x564.jpg");
}
.cid-tYPtRj0HRl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYPtRj0HRl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYPtRj0HRl H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tYPtRj0HRl .mbr-text,
.cid-tYPtRj0HRl .mbr-section-btn {
  text-align: center;
}
.cid-u1D6YAH0Pd {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u1D6YAH0Pd .item:focus,
.cid-u1D6YAH0Pd span:focus {
  outline: none;
}
.cid-u1D6YAH0Pd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u1D6YAH0Pd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u1D6YAH0Pd .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u1D6YAH0Pd .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u1D6YAH0Pd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u1D6YAH0Pd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u1D6YAH0Pd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u1D6YAH0Pd .mbr-section-title {
  color: #093790;
}
.cid-u1D6YAH0Pd .mbr-text,
.cid-u1D6YAH0Pd .mbr-section-btn {
  text-align: center;
}
.cid-u1D6YAH0Pd .item-title {
  text-align: center;
}
.cid-u1D6YAH0Pd .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-u1D6YAH0Pd .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-u1D6YAH0Pd .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPOr817vJM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPOr817vJM img,
.cid-uPOr817vJM .item-img {
  width: 100%;
}
.cid-uPOr817vJM .item:focus,
.cid-uPOr817vJM span:focus {
  outline: none;
}
.cid-uPOr817vJM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPOr817vJM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPOr817vJM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPOr817vJM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPOr817vJM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPOr817vJM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPOr817vJM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPOr817vJM .mbr-section-title {
  color: #09529f;
}
.cid-uPOr817vJM .mbr-text,
.cid-uPOr817vJM .mbr-section-btn {
  text-align: left;
}
.cid-uPOr817vJM .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPOr817vJM .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tYPE2o3RQP {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/banner-salud-oral-f-2000x564.jpg");
}
.cid-tYPE2o3RQP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYPE2o3RQP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYPE2o3RQP H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tYPE2o3RQP .mbr-text,
.cid-tYPE2o3RQP .mbr-section-btn {
  text-align: center;
}
.cid-tYPE2ooAXj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYPE2ooAXj .item:focus,
.cid-tYPE2ooAXj span:focus {
  outline: none;
}
.cid-tYPE2ooAXj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYPE2ooAXj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYPE2ooAXj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tYPE2ooAXj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYPE2ooAXj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tYPE2ooAXj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tYPE2ooAXj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYPE2ooAXj .mbr-section-title {
  color: #093790;
}
.cid-tYPE2ooAXj .mbr-text,
.cid-tYPE2ooAXj .mbr-section-btn {
  text-align: center;
}
.cid-tYPE2ooAXj .item-title {
  text-align: center;
}
.cid-tYPE2ooAXj .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tYPE2ooAXj .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tYPE2ooAXj .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ugCCHZZjrh {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ugCCHZZjrh img,
.cid-ugCCHZZjrh .item-img {
  width: 100%;
}
.cid-ugCCHZZjrh .item:focus,
.cid-ugCCHZZjrh span:focus {
  outline: none;
}
.cid-ugCCHZZjrh .item-wrapper {
  position: relative;
}
.cid-ugCCHZZjrh .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugCCHZZjrh .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ugCCHZZjrh .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugCCHZZjrh .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ugCCHZZjrh .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ugCCHZZjrh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugCCHZZjrh .mbr-section-title {
  color: #093790;
}
.cid-ugCCHZZjrh .mbr-text,
.cid-ugCCHZZjrh .mbr-section-btn {
  text-align: left;
}
.cid-ugCCHZZjrh .item-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-ugCCHZZjrh .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugCCHZZjrh .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ugCCHZZjrh .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ugCCHZZjrh .embla__button--next,
.cid-ugCCHZZjrh .embla__button--prev {
  display: flex;
}
.cid-ugCCHZZjrh .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #1E3878;
  border: 2px solid #1E3878;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ugCCHZZjrh .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugCCHZZjrh .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugCCHZZjrh .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-ugCCHZZjrh .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-ugCCHZZjrh .embla__button {
    top: auto;
  }
}
.cid-ugCCHZZjrh .embla {
  position: relative;
  width: 100%;
}
.cid-ugCCHZZjrh .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugCCHZZjrh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugCCHZZjrh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugCCHZZjrh .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-ugCCHZZjrh .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-ugCCHZZjrh .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ugCCHZZjrh .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uR7Igfl2Z4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR7Igfl2Z4 img,
.cid-uR7Igfl2Z4 .item-img {
  width: 100%;
}
.cid-uR7Igfl2Z4 .item:focus,
.cid-uR7Igfl2Z4 span:focus {
  outline: none;
}
.cid-uR7Igfl2Z4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uR7Igfl2Z4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uR7Igfl2Z4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uR7Igfl2Z4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uR7Igfl2Z4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uR7Igfl2Z4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uR7Igfl2Z4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uR7Igfl2Z4 .mbr-section-title {
  color: #09529f;
}
.cid-uR7Igfl2Z4 .mbr-text,
.cid-uR7Igfl2Z4 .mbr-section-btn {
  text-align: left;
}
.cid-uR7Igfl2Z4 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uR7Igfl2Z4 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tYPGVBMiT6 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/banner-salud-oral-fi-2000x564.jpg");
}
.cid-tYPGVBMiT6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYPGVBMiT6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYPGVBMiT6 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tYPGVBMiT6 .mbr-text,
.cid-tYPGVBMiT6 .mbr-section-btn {
  text-align: center;
}
.cid-tYPGVC8Apb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYPGVC8Apb .item:focus,
.cid-tYPGVC8Apb span:focus {
  outline: none;
}
.cid-tYPGVC8Apb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYPGVC8Apb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYPGVC8Apb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tYPGVC8Apb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYPGVC8Apb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tYPGVC8Apb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tYPGVC8Apb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYPGVC8Apb .mbr-section-title {
  color: #093790;
}
.cid-tYPGVC8Apb .mbr-text,
.cid-tYPGVC8Apb .mbr-section-btn {
  text-align: center;
}
.cid-tYPGVC8Apb .item-title {
  text-align: center;
}
.cid-tYPGVC8Apb .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tYPGVC8Apb .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tYPGVC8Apb .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ugCENEKJ5X {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ugCENEKJ5X img,
.cid-ugCENEKJ5X .item-img {
  width: 100%;
}
.cid-ugCENEKJ5X .item:focus,
.cid-ugCENEKJ5X span:focus {
  outline: none;
}
.cid-ugCENEKJ5X .item-wrapper {
  position: relative;
}
.cid-ugCENEKJ5X .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugCENEKJ5X .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ugCENEKJ5X .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugCENEKJ5X .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ugCENEKJ5X .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ugCENEKJ5X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugCENEKJ5X .mbr-section-title {
  color: #093790;
}
.cid-ugCENEKJ5X .mbr-text,
.cid-ugCENEKJ5X .mbr-section-btn {
  text-align: left;
}
.cid-ugCENEKJ5X .item-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-ugCENEKJ5X .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugCENEKJ5X .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ugCENEKJ5X .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ugCENEKJ5X .embla__button--next,
.cid-ugCENEKJ5X .embla__button--prev {
  display: flex;
}
.cid-ugCENEKJ5X .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #1E3878;
  border: 2px solid #1E3878;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ugCENEKJ5X .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugCENEKJ5X .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugCENEKJ5X .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-ugCENEKJ5X .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-ugCENEKJ5X .embla__button {
    top: auto;
  }
}
.cid-ugCENEKJ5X .embla {
  position: relative;
  width: 100%;
}
.cid-ugCENEKJ5X .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugCENEKJ5X .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugCENEKJ5X .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugCENEKJ5X .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-ugCENEKJ5X .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-ugCENEKJ5X .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ugCENEKJ5X .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uPOqTEGm8a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPOqTEGm8a img,
.cid-uPOqTEGm8a .item-img {
  width: 100%;
}
.cid-uPOqTEGm8a .item:focus,
.cid-uPOqTEGm8a span:focus {
  outline: none;
}
.cid-uPOqTEGm8a .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPOqTEGm8a .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPOqTEGm8a .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPOqTEGm8a .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPOqTEGm8a .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPOqTEGm8a .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPOqTEGm8a .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPOqTEGm8a .mbr-section-title {
  color: #09529f;
}
.cid-uPOqTEGm8a .mbr-text,
.cid-uPOqTEGm8a .mbr-section-btn {
  text-align: left;
}
.cid-uPOqTEGm8a .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPOqTEGm8a .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tZNbJh2UC8 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-gastroenterologa-fi-2000x564.jpg");
}
.cid-tZNbJh2UC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZNbJh2UC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZNbJh2UC8 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tZNbJh2UC8 .mbr-text,
.cid-tZNbJh2UC8 .mbr-section-btn {
  text-align: center;
}
.cid-tZNbJhiPDb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tZNbJhiPDb .item:focus,
.cid-tZNbJhiPDb span:focus {
  outline: none;
}
.cid-tZNbJhiPDb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZNbJhiPDb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZNbJhiPDb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tZNbJhiPDb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZNbJhiPDb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tZNbJhiPDb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tZNbJhiPDb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZNbJhiPDb .mbr-section-title {
  color: #093790;
}
.cid-tZNbJhiPDb .mbr-text,
.cid-tZNbJhiPDb .mbr-section-btn {
  text-align: center;
}
.cid-tZNbJhiPDb .item-title {
  text-align: center;
}
.cid-tZNbJhiPDb .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tZNbJhiPDb .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tZNbJhiPDb .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPPm6Q6dZt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPm6Q6dZt img,
.cid-uPPm6Q6dZt .item-img {
  width: 100%;
}
.cid-uPPm6Q6dZt .item:focus,
.cid-uPPm6Q6dZt span:focus {
  outline: none;
}
.cid-uPPm6Q6dZt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPm6Q6dZt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPm6Q6dZt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPm6Q6dZt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPm6Q6dZt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPm6Q6dZt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPm6Q6dZt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPm6Q6dZt .mbr-section-title {
  color: #09529f;
}
.cid-uPPm6Q6dZt .mbr-text,
.cid-uPPm6Q6dZt .mbr-section-btn {
  text-align: left;
}
.cid-uPPm6Q6dZt .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPm6Q6dZt .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ub5CyYLVef {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/uci-f-2000x564.jpg");
}
.cid-ub5CyYLVef .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5CyYLVef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5CyYLVef H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ub5CyYLVef .mbr-text,
.cid-ub5CyYLVef .mbr-section-btn {
  text-align: center;
}
.cid-ua3mSNc1u0 H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ua3mSNc1u0 DIV {
  text-align: center;
}
.cid-ua3mSNc1u0 .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ua3mSNc1u0 .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ub5CLj0MA2 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/uci-fi-2000x564.jpg");
}
.cid-ub5CLj0MA2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5CLj0MA2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5CLj0MA2 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ub5CLj0MA2 .mbr-text,
.cid-ub5CLj0MA2 .mbr-section-btn {
  text-align: center;
}
.cid-ub5DgNGPmK H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ub5DgNGPmK DIV {
  text-align: center;
}
.cid-ub5DgNGPmK .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ub5DgNGPmK .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ub5CUXacSD {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/uci-f-2000x564.jpg");
}
.cid-ub5CUXacSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5CUXacSD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5CUXacSD H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ub5CUXacSD .mbr-text,
.cid-ub5CUXacSD .mbr-section-btn {
  text-align: center;
}
.cid-ub5J9VqsZP H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ub5J9VqsZP DIV {
  text-align: center;
}
.cid-ub5J9VqsZP .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ub5J9VqsZP .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ub5DrCSuJ1 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/uci-fi-2000x564.jpg");
}
.cid-ub5DrCSuJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5DrCSuJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5DrCSuJ1 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ub5DrCSuJ1 .mbr-text,
.cid-ub5DrCSuJ1 .mbr-section-btn {
  text-align: center;
}
.cid-ub5JgA1UJr H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ub5JgA1UJr DIV {
  text-align: center;
}
.cid-ub5JgA1UJr .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ub5JgA1UJr .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uaY285UAmR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-actividades-2000x564.jpg");
}
.cid-uaY285UAmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaY285UAmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaY285UAmR H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uaY285UAmR .mbr-text,
.cid-uaY285UAmR .mbr-section-btn {
  text-align: center;
}
.cid-uEu7hrfo3Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uEu7hrfo3Q .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-uaY2hu00Fe {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uaY2hu00Fe img,
.cid-uaY2hu00Fe .item-img {
  width: 100%;
}
.cid-uaY2hu00Fe .item:focus,
.cid-uaY2hu00Fe span:focus {
  outline: none;
}
.cid-uaY2hu00Fe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaY2hu00Fe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaY2hu00Fe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uaY2hu00Fe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaY2hu00Fe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uaY2hu00Fe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uaY2hu00Fe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaY2hu00Fe .mbr-section-title {
  color: #09529f;
}
.cid-uaY2hu00Fe .mbr-text,
.cid-uaY2hu00Fe .mbr-section-btn {
  text-align: center;
}
.cid-uaY2hu00Fe .item-title {
  text-align: left;
}
.cid-uaY2hu00Fe .item-subtitle {
  text-align: center;
  color: #09529f;
}
.cid-uEu61b61Kb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uEu61b61Kb img,
.cid-uEu61b61Kb .item-img {
  width: 100%;
}
.cid-uEu61b61Kb .item:focus,
.cid-uEu61b61Kb span:focus {
  outline: none;
}
.cid-uEu61b61Kb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uEu61b61Kb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uEu61b61Kb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEu61b61Kb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uEu61b61Kb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uEu61b61Kb .mbr-section-title {
  color: #09529f;
}
.cid-uEu61b61Kb .mbr-text,
.cid-uEu61b61Kb .mbr-section-btn {
  text-align: center;
}
.cid-uEu61b61Kb .item-title {
  text-align: left;
}
.cid-uEu61b61Kb .item-subtitle {
  text-align: center;
  color: #09529f;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uaY5JZNfw9 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/banner-educacin-para-px-2000x564.jpg");
}
.cid-uaY5JZNfw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaY5JZNfw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaY5JZNfw9 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uaY5JZNfw9 .mbr-text,
.cid-uaY5JZNfw9 .mbr-section-btn {
  text-align: center;
}
.cid-uaY5VRYami {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uaY5VRYami img,
.cid-uaY5VRYami .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uaY5VRYami .item:focus,
.cid-uaY5VRYami span:focus {
  outline: none;
}
.cid-uaY5VRYami .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaY5VRYami .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaY5VRYami .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaY5VRYami .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaY5VRYami .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaY5VRYami .mbr-section-title {
  color: #5cd3f3;
}
.cid-uaY5VRYami .mbr-text,
.cid-uaY5VRYami .mbr-section-btn {
  text-align: center;
}
.cid-uaY5VRYami .item-title {
  text-align: center;
}
.cid-uaY5VRYami .item-subtitle {
  text-align: left;
}
.cid-uaY5VRYami .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tNjRCTmDRt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-educacin-fp-2000x564.jpg");
}
.cid-tNjRCTmDRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNjRCTmDRt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNjRCTmDRt H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tNjRCTmDRt .mbr-text,
.cid-tNjRCTmDRt .mbr-section-btn {
  text-align: center;
}
.cid-tNjRJxNYio {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tNjRJxNYio img,
.cid-tNjRJxNYio .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-tNjRJxNYio .item:focus,
.cid-tNjRJxNYio span:focus {
  outline: none;
}
.cid-tNjRJxNYio .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNjRJxNYio .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNjRJxNYio .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNjRJxNYio .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tNjRJxNYio .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNjRJxNYio .mbr-section-title {
  color: #232323;
}
.cid-tNjRJxNYio .mbr-text,
.cid-tNjRJxNYio .mbr-section-btn {
  text-align: center;
}
.cid-tNjRJxNYio .item-title {
  text-align: center;
}
.cid-tNjRJxNYio .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ub4AkA4BK3 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/banner-educacin-para-px-2000x564.jpg");
}
.cid-ub4AkA4BK3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4AkA4BK3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub4AkA4BK3 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ub4AkA4BK3 .mbr-text,
.cid-ub4AkA4BK3 .mbr-section-btn {
  text-align: center;
}
.cid-ub4Avj0LLy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ub4Avj0LLy img,
.cid-ub4Avj0LLy .item-img {
  width: 100%;
}
.cid-ub4Avj0LLy .item:focus,
.cid-ub4Avj0LLy span:focus {
  outline: none;
}
.cid-ub4Avj0LLy .item-wrapper {
  position: relative;
}
.cid-ub4Avj0LLy .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ub4Avj0LLy .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ub4Avj0LLy .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ub4Avj0LLy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ub4Avj0LLy .mbr-section-title {
  color: #09529f;
}
.cid-ub4Avj0LLy .mbr-text,
.cid-ub4Avj0LLy .mbr-section-btn {
  text-align: left;
}
.cid-ub4Avj0LLy .item-title {
  text-align: left;
}
.cid-ub4Avj0LLy .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ub4Avj0LLy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ub4Avj0LLy .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ub4Avj0LLy .embla__button--next,
.cid-ub4Avj0LLy .embla__button--prev {
  display: flex;
}
.cid-ub4Avj0LLy .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-ub4Avj0LLy .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ub4Avj0LLy .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ub4Avj0LLy .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ub4Avj0LLy .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ub4Avj0LLy .embla__button {
    top: auto;
  }
}
.cid-ub4Avj0LLy .embla {
  position: relative;
  width: 100%;
}
.cid-ub4Avj0LLy .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ub4Avj0LLy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ub4Avj0LLy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ub4Avj0LLy .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-ub4Avj0LLy .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-ub4Avj0LLy .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ub4Avj0LLy .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ub5B4hYfi1 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/uci-f-1-2000x564.jpg");
}
.cid-ub5B4hYfi1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5B4hYfi1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5B4hYfi1 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ub5B4hYfi1 .mbr-text,
.cid-ub5B4hYfi1 .mbr-section-btn {
  text-align: center;
}
.cid-ub5B4iBOkd H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ub5B4iBOkd DIV {
  text-align: center;
}
.cid-ub5B4iBOkd .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ub5B4iBOkd .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ub5BkyLZAY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/uci-fi-1-2000x564.jpg");
}
.cid-ub5BkyLZAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub5BkyLZAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub5BkyLZAY H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ub5BkyLZAY .mbr-text,
.cid-ub5BkyLZAY .mbr-section-btn {
  text-align: center;
}
.cid-ub5BkzmGIa H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ub5BkzmGIa DIV {
  text-align: center;
}
.cid-ub5BkzmGIa .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ub5BkzmGIa .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-udCcnRWd8o {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-experiencia-de-servicio-fp-2000x564.jpg");
}
.cid-udCcnRWd8o .mbr-fallback-image.disabled {
  display: none;
}
.cid-udCcnRWd8o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udCcnRWd8o H3 {
  text-align: center;
  color: #ffffff;
}
.cid-udCcnRWd8o .mbr-text,
.cid-udCcnRWd8o .mbr-section-btn {
  text-align: center;
}
.cid-ueb6WIjXeD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ueb6WIjXeD img,
.cid-ueb6WIjXeD .item-img {
  width: 100%;
}
.cid-ueb6WIjXeD .item:focus,
.cid-ueb6WIjXeD span:focus {
  outline: none;
}
.cid-ueb6WIjXeD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ueb6WIjXeD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ueb6WIjXeD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ueb6WIjXeD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ueb6WIjXeD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ueb6WIjXeD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ueb6WIjXeD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ueb6WIjXeD .mbr-section-title {
  color: #09529f;
}
.cid-ueb6WIjXeD .mbr-text,
.cid-ueb6WIjXeD .mbr-section-btn {
  text-align: left;
}
.cid-ueb6WIjXeD .item-title {
  text-align: left;
  color: #09529f;
}
.cid-ueb6WIjXeD .item-subtitle {
  text-align: left;
}
.cid-uQ0VZYQ501 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQ0VZYQ501 img,
.cid-uQ0VZYQ501 .item-img {
  width: 100%;
}
.cid-uQ0VZYQ501 .item:focus,
.cid-uQ0VZYQ501 span:focus {
  outline: none;
}
.cid-uQ0VZYQ501 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uQ0VZYQ501 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQ0VZYQ501 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uQ0VZYQ501 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQ0VZYQ501 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uQ0VZYQ501 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uQ0VZYQ501 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQ0VZYQ501 .mbr-section-title {
  color: #09529f;
}
.cid-uQ0VZYQ501 .mbr-text,
.cid-uQ0VZYQ501 .mbr-section-btn {
  text-align: left;
}
.cid-uQ0VZYQ501 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uQ0VZYQ501 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ue4VZCEpzf {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-control-infecciones-fp-2000x564.jpg");
}
.cid-ue4VZCEpzf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue4VZCEpzf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue4VZCEpzf H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ue4VZCEpzf .mbr-text,
.cid-ue4VZCEpzf .mbr-section-btn {
  text-align: center;
}
.cid-ueaJjRLhtg {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ueaJjRLhtg img,
.cid-ueaJjRLhtg .item-img {
  width: 100%;
}
.cid-ueaJjRLhtg .item:focus,
.cid-ueaJjRLhtg span:focus {
  outline: none;
}
.cid-ueaJjRLhtg .item-wrapper {
  position: relative;
}
.cid-ueaJjRLhtg .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ueaJjRLhtg .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ueaJjRLhtg .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ueaJjRLhtg .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ueaJjRLhtg .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ueaJjRLhtg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ueaJjRLhtg .mbr-section-title {
  color: #09529f;
}
.cid-ueaJjRLhtg .mbr-text,
.cid-ueaJjRLhtg .mbr-section-btn {
  text-align: left;
}
.cid-ueaJjRLhtg .item-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-ueaJjRLhtg .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ueaJjRLhtg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ueaJjRLhtg .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ueaJjRLhtg .embla__button--next,
.cid-ueaJjRLhtg .embla__button--prev {
  display: flex;
}
.cid-ueaJjRLhtg .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #1E3878;
  border: 2px solid #1E3878;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ueaJjRLhtg .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ueaJjRLhtg .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ueaJjRLhtg .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-ueaJjRLhtg .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-ueaJjRLhtg .embla__button {
    top: auto;
  }
}
.cid-ueaJjRLhtg .embla {
  position: relative;
  width: 100%;
}
.cid-ueaJjRLhtg .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ueaJjRLhtg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ueaJjRLhtg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ueaJjRLhtg .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-ueaJjRLhtg .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-ueaJjRLhtg .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ueaJjRLhtg .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uBL10tKI1W {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uBL10tKI1W img,
.cid-uBL10tKI1W .item-img {
  width: 100%;
}
.cid-uBL10tKI1W .item:focus,
.cid-uBL10tKI1W span:focus {
  outline: none;
}
.cid-uBL10tKI1W .item-wrapper {
  position: relative;
}
.cid-uBL10tKI1W .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBL10tKI1W .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uBL10tKI1W .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBL10tKI1W .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uBL10tKI1W .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uBL10tKI1W .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBL10tKI1W .mbr-section-title {
  color: #09529f;
}
.cid-uBL10tKI1W .mbr-text,
.cid-uBL10tKI1W .mbr-section-btn {
  text-align: left;
}
.cid-uBL10tKI1W .item-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-uBL10tKI1W .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uBL10tKI1W .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uBL10tKI1W .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uBL10tKI1W .embla__button--next,
.cid-uBL10tKI1W .embla__button--prev {
  display: flex;
}
.cid-uBL10tKI1W .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #1E3878;
  border: 2px solid #1E3878;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uBL10tKI1W .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uBL10tKI1W .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uBL10tKI1W .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-uBL10tKI1W .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-uBL10tKI1W .embla__button {
    top: auto;
  }
}
.cid-uBL10tKI1W .embla {
  position: relative;
  width: 100%;
}
.cid-uBL10tKI1W .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uBL10tKI1W .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBL10tKI1W .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBL10tKI1W .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-uBL10tKI1W .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uBL10tKI1W .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uBL10tKI1W .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uR7FnShC4t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR7FnShC4t img,
.cid-uR7FnShC4t .item-img {
  width: 100%;
}
.cid-uR7FnShC4t .item:focus,
.cid-uR7FnShC4t span:focus {
  outline: none;
}
.cid-uR7FnShC4t .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uR7FnShC4t .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uR7FnShC4t .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uR7FnShC4t .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uR7FnShC4t .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uR7FnShC4t .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uR7FnShC4t .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uR7FnShC4t .mbr-section-title {
  color: #09529f;
}
.cid-uR7FnShC4t .mbr-text,
.cid-uR7FnShC4t .mbr-section-btn {
  text-align: left;
}
.cid-uR7FnShC4t .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uR7FnShC4t .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ue5qCjyfOl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-control-infecciones-fi-2000x564.jpg");
}
.cid-ue5qCjyfOl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5qCjyfOl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5qCjyfOl H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ue5qCjyfOl .mbr-text,
.cid-ue5qCjyfOl .mbr-section-btn {
  text-align: center;
}
.cid-ueR2dqfgNw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-ueR2dqfgNw img,
.cid-ueR2dqfgNw .item-img {
  width: 100%;
}
.cid-ueR2dqfgNw .item:focus,
.cid-ueR2dqfgNw span:focus {
  outline: none;
}
.cid-ueR2dqfgNw .item-wrapper {
  position: relative;
}
.cid-ueR2dqfgNw .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ueR2dqfgNw .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ueR2dqfgNw .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ueR2dqfgNw .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ueR2dqfgNw .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ueR2dqfgNw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ueR2dqfgNw .mbr-section-title {
  color: #032259;
}
.cid-ueR2dqfgNw .mbr-text,
.cid-ueR2dqfgNw .mbr-section-btn {
  text-align: left;
}
.cid-ueR2dqfgNw .item-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-ueR2dqfgNw .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ueR2dqfgNw .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ueR2dqfgNw .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ueR2dqfgNw .embla__button--next,
.cid-ueR2dqfgNw .embla__button--prev {
  display: flex;
}
.cid-ueR2dqfgNw .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #1E3878;
  border: 2px solid #1E3878;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ueR2dqfgNw .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ueR2dqfgNw .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ueR2dqfgNw .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-ueR2dqfgNw .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-ueR2dqfgNw .embla__button {
    top: auto;
  }
}
.cid-ueR2dqfgNw .embla {
  position: relative;
  width: 100%;
}
.cid-ueR2dqfgNw .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ueR2dqfgNw .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ueR2dqfgNw .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ueR2dqfgNw .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-ueR2dqfgNw .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-ueR2dqfgNw .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ueR2dqfgNw .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uPPqkUh0tk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPqkUh0tk img,
.cid-uPPqkUh0tk .item-img {
  width: 100%;
}
.cid-uPPqkUh0tk .item:focus,
.cid-uPPqkUh0tk span:focus {
  outline: none;
}
.cid-uPPqkUh0tk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPqkUh0tk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPqkUh0tk .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPqkUh0tk .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPqkUh0tk .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPqkUh0tk .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPqkUh0tk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPqkUh0tk .mbr-section-title {
  color: #09529f;
}
.cid-uPPqkUh0tk .mbr-text,
.cid-uPPqkUh0tk .mbr-section-btn {
  text-align: left;
}
.cid-uPPqkUh0tk .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPqkUh0tk .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ueb65bfYUL {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/banner-experiencia-de-servicio-fi-2000x564.jpg");
}
.cid-ueb65bfYUL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueb65bfYUL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueb65bfYUL H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ueb65bfYUL .mbr-text,
.cid-ueb65bfYUL .mbr-section-btn {
  text-align: center;
}
.cid-uebogcs3it {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uebogcs3it img,
.cid-uebogcs3it .item-img {
  width: 100%;
}
.cid-uebogcs3it .item:focus,
.cid-uebogcs3it span:focus {
  outline: none;
}
.cid-uebogcs3it .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uebogcs3it .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uebogcs3it .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uebogcs3it .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uebogcs3it .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uebogcs3it .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uebogcs3it .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uebogcs3it .mbr-section-title {
  color: #09529f;
}
.cid-uebogcs3it .mbr-text,
.cid-uebogcs3it .mbr-section-btn {
  text-align: left;
}
.cid-uebogcs3it .item-title {
  text-align: left;
  color: #09529f;
}
.cid-uebogcs3it .item-subtitle {
  text-align: left;
}
.cid-uPPof53Rrv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPof53Rrv img,
.cid-uPPof53Rrv .item-img {
  width: 100%;
}
.cid-uPPof53Rrv .item:focus,
.cid-uPPof53Rrv span:focus {
  outline: none;
}
.cid-uPPof53Rrv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPof53Rrv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPof53Rrv .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPof53Rrv .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPof53Rrv .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPof53Rrv .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPof53Rrv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPof53Rrv .mbr-section-title {
  color: #09529f;
}
.cid-uPPof53Rrv .mbr-text,
.cid-uPPof53Rrv .mbr-section-btn {
  text-align: left;
}
.cid-uPPof53Rrv .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPof53Rrv .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ueQkIklRPi {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-uci-pediatrica-f-2000x564.jpg");
}
.cid-ueQkIklRPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueQkIklRPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueQkIklRPi H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ueQkIklRPi .mbr-text,
.cid-ueQkIklRPi .mbr-section-btn {
  text-align: center;
}
.cid-ueQkIkDoeQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ueQkIkDoeQ img,
.cid-ueQkIkDoeQ .item-img {
  width: 100%;
}
.cid-ueQkIkDoeQ .item:focus,
.cid-ueQkIkDoeQ span:focus {
  outline: none;
}
.cid-ueQkIkDoeQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ueQkIkDoeQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ueQkIkDoeQ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ueQkIkDoeQ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ueQkIkDoeQ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ueQkIkDoeQ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ueQkIkDoeQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ueQkIkDoeQ .mbr-section-title {
  color: #09529f;
}
.cid-ueQkIkDoeQ .mbr-text,
.cid-ueQkIkDoeQ .mbr-section-btn {
  text-align: left;
}
.cid-ueQkIkDoeQ .item-title {
  text-align: left;
  color: #09529f;
}
.cid-ueQkIkDoeQ .item-subtitle {
  text-align: left;
}
.cid-uSsR8A1AOi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSsR8A1AOi img,
.cid-uSsR8A1AOi .item-img {
  width: 100%;
}
.cid-uSsR8A1AOi .item:focus,
.cid-uSsR8A1AOi span:focus {
  outline: none;
}
.cid-uSsR8A1AOi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSsR8A1AOi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSsR8A1AOi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uSsR8A1AOi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSsR8A1AOi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uSsR8A1AOi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uSsR8A1AOi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSsR8A1AOi .mbr-section-title {
  color: #09529f;
}
.cid-uSsR8A1AOi .mbr-text,
.cid-uSsR8A1AOi .mbr-section-btn {
  text-align: left;
}
.cid-uSsR8A1AOi .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uSsR8A1AOi .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ueRq1xBlBh {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-uci-pediatrica-f-2000x564.jpg");
}
.cid-ueRq1xBlBh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueRq1xBlBh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueRq1xBlBh H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ueRq1xBlBh .mbr-text,
.cid-ueRq1xBlBh .mbr-section-btn {
  text-align: center;
}
.cid-ueRpKNFAnH H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ueRpKNFAnH DIV {
  text-align: center;
}
.cid-ueRpKNFAnH .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ueRpKNFAnH .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ueRqF392Wk {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-uci-pediatrica-f-2000x564.jpg");
}
.cid-ueRqF392Wk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueRqF392Wk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueRqF392Wk H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ueRqF392Wk .mbr-text,
.cid-ueRqF392Wk .mbr-section-btn {
  text-align: center;
}
.cid-ueRqF3qpZX H1 {
  color: #fafafa;
  font-family: "Muli-Regular";
  font-weight: bold;
}
.cid-ueRqF3qpZX DIV {
  text-align: center;
}
.cid-ueRqF3qpZX .delimitador {
  width: 560px;
  margin: auto;
}
.cid-ueRqF3qpZX .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-unke5dtLen {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-hospitalizacin-fi-2000x564.jpg");
}
.cid-unke5dtLen .mbr-fallback-image.disabled {
  display: none;
}
.cid-unke5dtLen .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unke5dtLen H3 {
  text-align: center;
  color: #ffffff;
}
.cid-unke5dtLen .mbr-text,
.cid-unke5dtLen .mbr-section-btn {
  text-align: center;
}
.cid-unke5dIk3B {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-unke5dIk3B img,
.cid-unke5dIk3B .item-img {
  width: 100%;
}
.cid-unke5dIk3B .item:focus,
.cid-unke5dIk3B span:focus {
  outline: none;
}
.cid-unke5dIk3B .item-wrapper {
  position: relative;
}
.cid-unke5dIk3B .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-unke5dIk3B .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-unke5dIk3B .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-unke5dIk3B .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-unke5dIk3B .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-unke5dIk3B .mbr-section-btn {
  margin-top: auto !important;
}
.cid-unke5dIk3B .mbr-section-title {
  color: #093790;
}
.cid-unke5dIk3B .mbr-text,
.cid-unke5dIk3B .mbr-section-btn {
  text-align: left;
}
.cid-unke5dIk3B .item-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-unke5dIk3B .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-unke5dIk3B .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-unke5dIk3B .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-unke5dIk3B .embla__button--next,
.cid-unke5dIk3B .embla__button--prev {
  display: flex;
}
.cid-unke5dIk3B .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #1E3878;
  border: 2px solid #1E3878;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-unke5dIk3B .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-unke5dIk3B .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-unke5dIk3B .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-unke5dIk3B .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-unke5dIk3B .embla__button {
    top: auto;
  }
}
.cid-unke5dIk3B .embla {
  position: relative;
  width: 100%;
}
.cid-unke5dIk3B .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-unke5dIk3B .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-unke5dIk3B .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-unke5dIk3B .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-unke5dIk3B .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-unke5dIk3B .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-unke5dIk3B .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uOiDi10TmR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uOiDi10TmR .item:focus,
.cid-uOiDi10TmR span:focus {
  outline: none;
}
.cid-uOiDi10TmR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOiDi10TmR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOiDi10TmR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOiDi10TmR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOiDi10TmR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOiDi10TmR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOiDi10TmR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOiDi10TmR .mbr-section-title {
  color: #093790;
}
.cid-uOiDi10TmR .mbr-text,
.cid-uOiDi10TmR .mbr-section-btn {
  text-align: center;
}
.cid-uOiDi10TmR .item-title {
  text-align: center;
}
.cid-uOiDi10TmR .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uOiDi10TmR .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uOiDi10TmR .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-urneOheohI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urneOheohI .item:focus,
.cid-urneOheohI span:focus {
  outline: none;
}
.cid-urneOheohI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urneOheohI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urneOheohI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-urneOheohI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urneOheohI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-urneOheohI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-urneOheohI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urneOheohI .mbr-section-title {
  color: #093790;
}
.cid-urneOheohI .mbr-text,
.cid-urneOheohI .mbr-section-btn {
  text-align: center;
}
.cid-urneOheohI .item-title {
  text-align: center;
}
.cid-urneOheohI .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-urneOheohI .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-urneOheohI .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPPk8QUoC7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPk8QUoC7 img,
.cid-uPPk8QUoC7 .item-img {
  width: 100%;
}
.cid-uPPk8QUoC7 .item:focus,
.cid-uPPk8QUoC7 span:focus {
  outline: none;
}
.cid-uPPk8QUoC7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPk8QUoC7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPk8QUoC7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPk8QUoC7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPk8QUoC7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPk8QUoC7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPk8QUoC7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPk8QUoC7 .mbr-section-title {
  color: #09529f;
}
.cid-uPPk8QUoC7 .mbr-text,
.cid-uPPk8QUoC7 .mbr-section-btn {
  text-align: left;
}
.cid-uPPk8QUoC7 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPk8QUoC7 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-unkiOg43po {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-hospitalizacin-fp-2000x564.jpg");
}
.cid-unkiOg43po .mbr-fallback-image.disabled {
  display: none;
}
.cid-unkiOg43po .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unkiOg43po H3 {
  text-align: center;
  color: #ffffff;
}
.cid-unkiOg43po .mbr-text,
.cid-unkiOg43po .mbr-section-btn {
  text-align: center;
}
.cid-unkiOgppJt {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-unkiOgppJt img,
.cid-unkiOgppJt .item-img {
  width: 100%;
}
.cid-unkiOgppJt .item:focus,
.cid-unkiOgppJt span:focus {
  outline: none;
}
.cid-unkiOgppJt .item-wrapper {
  position: relative;
}
.cid-unkiOgppJt .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-unkiOgppJt .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-unkiOgppJt .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-unkiOgppJt .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-unkiOgppJt .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-unkiOgppJt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-unkiOgppJt .mbr-section-title {
  color: #093790;
}
.cid-unkiOgppJt .mbr-text,
.cid-unkiOgppJt .mbr-section-btn {
  text-align: left;
}
.cid-unkiOgppJt .item-title {
  text-align: left;
  color: #6bc8f0;
}
.cid-unkiOgppJt .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-unkiOgppJt .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-unkiOgppJt .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-unkiOgppJt .embla__button--next,
.cid-unkiOgppJt .embla__button--prev {
  display: flex;
}
.cid-unkiOgppJt .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(240, 240, 240, 0.5);
  color: #1E3878;
  border: 2px solid #1E3878;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-unkiOgppJt .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-unkiOgppJt .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-unkiOgppJt .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
.cid-unkiOgppJt .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
  background-color: rgba(240, 240, 240, 0.5);
}
@media (max-width: 767px) {
  .cid-unkiOgppJt .embla__button {
    top: auto;
  }
}
.cid-unkiOgppJt .embla {
  position: relative;
  width: 100%;
}
.cid-unkiOgppJt .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-unkiOgppJt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-unkiOgppJt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-unkiOgppJt .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-unkiOgppJt .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-unkiOgppJt .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-unkiOgppJt .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uwSl7IkcDj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uwSl7IkcDj .item:focus,
.cid-uwSl7IkcDj span:focus {
  outline: none;
}
.cid-uwSl7IkcDj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwSl7IkcDj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwSl7IkcDj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uwSl7IkcDj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwSl7IkcDj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uwSl7IkcDj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uwSl7IkcDj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwSl7IkcDj .mbr-section-title {
  color: #093790;
}
.cid-uwSl7IkcDj .mbr-text,
.cid-uwSl7IkcDj .mbr-section-btn {
  text-align: center;
}
.cid-uwSl7IkcDj .item-title {
  text-align: center;
}
.cid-uwSl7IkcDj .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uwSl7IkcDj .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uwSl7IkcDj .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uMBVLiO8dI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMBVLiO8dI .item:focus,
.cid-uMBVLiO8dI span:focus {
  outline: none;
}
.cid-uMBVLiO8dI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMBVLiO8dI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMBVLiO8dI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uMBVLiO8dI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMBVLiO8dI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uMBVLiO8dI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uMBVLiO8dI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMBVLiO8dI .mbr-section-title {
  color: #093790;
}
.cid-uMBVLiO8dI .mbr-text,
.cid-uMBVLiO8dI .mbr-section-btn {
  text-align: center;
}
.cid-uMBVLiO8dI .item-title {
  text-align: center;
}
.cid-uMBVLiO8dI .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uMBVLiO8dI .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uMBVLiO8dI .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uQ1sBGoVkN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQ1sBGoVkN img,
.cid-uQ1sBGoVkN .item-img {
  width: 100%;
}
.cid-uQ1sBGoVkN .item:focus,
.cid-uQ1sBGoVkN span:focus {
  outline: none;
}
.cid-uQ1sBGoVkN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uQ1sBGoVkN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQ1sBGoVkN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uQ1sBGoVkN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQ1sBGoVkN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uQ1sBGoVkN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uQ1sBGoVkN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQ1sBGoVkN .mbr-section-title {
  color: #09529f;
}
.cid-uQ1sBGoVkN .mbr-text,
.cid-uQ1sBGoVkN .mbr-section-btn {
  text-align: left;
}
.cid-uQ1sBGoVkN .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uQ1sBGoVkN .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uePZZZW3Bc {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-urgencias-fp-1-2000x564.jpg");
}
.cid-uePZZZW3Bc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uePZZZW3Bc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uePZZZW3Bc H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uePZZZW3Bc .mbr-text,
.cid-uePZZZW3Bc .mbr-section-btn {
  text-align: center;
}
.cid-ueQ01u3sGF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ueQ01u3sGF .item:focus,
.cid-ueQ01u3sGF span:focus {
  outline: none;
}
.cid-ueQ01u3sGF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ueQ01u3sGF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ueQ01u3sGF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ueQ01u3sGF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ueQ01u3sGF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ueQ01u3sGF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ueQ01u3sGF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ueQ01u3sGF .mbr-section-title {
  color: #093790;
}
.cid-ueQ01u3sGF .mbr-text,
.cid-ueQ01u3sGF .mbr-section-btn {
  text-align: center;
}
.cid-ueQ01u3sGF .item-title {
  text-align: center;
}
.cid-ueQ01u3sGF .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ueQ01u3sGF .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ueQ01u3sGF .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uUrIXzKHW6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uUrIXzKHW6 img,
.cid-uUrIXzKHW6 .item-img {
  width: 100%;
}
.cid-uUrIXzKHW6 .item:focus,
.cid-uUrIXzKHW6 span:focus {
  outline: none;
}
.cid-uUrIXzKHW6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uUrIXzKHW6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUrIXzKHW6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uUrIXzKHW6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUrIXzKHW6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uUrIXzKHW6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uUrIXzKHW6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUrIXzKHW6 .mbr-section-title {
  color: #09529f;
}
.cid-uUrIXzKHW6 .mbr-text,
.cid-uUrIXzKHW6 .mbr-section-btn {
  text-align: left;
}
.cid-uUrIXzKHW6 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uUrIXzKHW6 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-unr9nRijKb {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-hospitalizacin-pediatrica-fp-2000x564.jpg");
}
.cid-unr9nRijKb .mbr-fallback-image.disabled {
  display: none;
}
.cid-unr9nRijKb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unr9nRijKb H3 {
  text-align: center;
  color: #ffffff;
}
.cid-unr9nRijKb .mbr-text,
.cid-unr9nRijKb .mbr-section-btn {
  text-align: center;
}
.cid-urp3clUcif {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urp3clUcif .item:focus,
.cid-urp3clUcif span:focus {
  outline: none;
}
.cid-urp3clUcif .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urp3clUcif .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urp3clUcif .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-urp3clUcif .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urp3clUcif .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-urp3clUcif .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-urp3clUcif .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urp3clUcif .mbr-section-title {
  color: #093790;
}
.cid-urp3clUcif .mbr-text,
.cid-urp3clUcif .mbr-section-btn {
  text-align: center;
}
.cid-urp3clUcif .item-title {
  text-align: center;
}
.cid-urp3clUcif .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-urp3clUcif .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-urp3clUcif .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uHpxq5KFaF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHpxq5KFaF img,
.cid-uHpxq5KFaF .item-img {
  width: 100%;
}
.cid-uHpxq5KFaF .item:focus,
.cid-uHpxq5KFaF span:focus {
  outline: none;
}
.cid-uHpxq5KFaF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uHpxq5KFaF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHpxq5KFaF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uHpxq5KFaF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHpxq5KFaF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uHpxq5KFaF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uHpxq5KFaF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHpxq5KFaF .mbr-section-title {
  color: #09529f;
}
.cid-uHpxq5KFaF .mbr-text,
.cid-uHpxq5KFaF .mbr-section-btn {
  text-align: left;
}
.cid-uHpxq5KFaF .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uHpxq5KFaF .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uo5nIDYThb {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/cancer-de-estomago-2-min-scaled-2000x975.jpg");
}
.cid-uo5nIDYThb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo5nIDYThb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo5nIDYThb .mbr-section-title {
  color: #ffffff;
}
.cid-uo5nIDYThb .mbr-section-subtitle {
  color: #093790;
}
.cid-uR7SwpJIjg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uR7SwpJIjg .item:focus,
.cid-uR7SwpJIjg span:focus {
  outline: none;
}
.cid-uR7SwpJIjg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uR7SwpJIjg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uR7SwpJIjg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uR7SwpJIjg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uR7SwpJIjg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uR7SwpJIjg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uR7SwpJIjg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uR7SwpJIjg .mbr-section-title {
  color: #093790;
}
.cid-uR7SwpJIjg .mbr-text,
.cid-uR7SwpJIjg .mbr-section-btn {
  text-align: center;
}
.cid-uR7SwpJIjg .item-title {
  text-align: center;
}
.cid-uR7SwpJIjg .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uR7SwpJIjg .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uR7SwpJIjg .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uR91th24dW {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uR91th24dW .item:focus,
.cid-uR91th24dW span:focus {
  outline: none;
}
.cid-uR91th24dW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uR91th24dW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uR91th24dW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uR91th24dW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uR91th24dW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uR91th24dW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uR91th24dW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uR91th24dW .mbr-section-title {
  color: #093790;
}
.cid-uR91th24dW .mbr-text,
.cid-uR91th24dW .mbr-section-btn {
  text-align: center;
}
.cid-uR91th24dW .item-title {
  text-align: center;
}
.cid-uR91th24dW .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uR91th24dW .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uR91th24dW .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uqONp4TNqF {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-soporte-nutricional-fp-1-2000x564.jpg");
}
.cid-uqONp4TNqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqONp4TNqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqONp4TNqF H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uqONp4TNqF .mbr-text,
.cid-uqONp4TNqF .mbr-section-btn {
  text-align: center;
}
.cid-uqONp5bO7W H1 {
  color: #fafafa;
  font-family: "Montserrat-bold";
  font-weight: bold;
}
.cid-uqONp5bO7W DIV {
  text-align: center;
}
.cid-uqONp5bO7W .delimitador {
  width: 560px;
  margin: auto;
}
.cid-uqONp5bO7W .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uqPzw1p28N {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-soporte-nutricional-fp-1-2000x564.jpg");
}
.cid-uqPzw1p28N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPzw1p28N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqPzw1p28N H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uqPzw1p28N .mbr-text,
.cid-uqPzw1p28N .mbr-section-btn {
  text-align: center;
}
.cid-uqPzw1zpSW H1 {
  color: #fafafa;
  font-family: "Montserrat-bold";
  font-weight: bold;
}
.cid-uqPzw1zpSW DIV {
  text-align: center;
}
.cid-uqPzw1zpSW .delimitador {
  width: 560px;
  margin: auto;
}
.cid-uqPzw1zpSW .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uqOX7Tkf8K {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-soporte-nutricional-fi-1-2000x564.jpg");
}
.cid-uqOX7Tkf8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqOX7Tkf8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqOX7Tkf8K H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uqOX7Tkf8K .mbr-text,
.cid-uqOX7Tkf8K .mbr-section-btn {
  text-align: center;
}
.cid-uqOX7TPZKg H1 {
  color: #fafafa;
  font-family: "Montserrat-bold";
  font-weight: bold;
}
.cid-uqOX7TPZKg DIV {
  text-align: center;
}
.cid-uqOX7TPZKg .delimitador {
  width: 560px;
  margin: auto;
}
.cid-uqOX7TPZKg .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uqPDbFCi9N {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-soporte-nutricional-fi-1-2000x564.jpg");
}
.cid-uqPDbFCi9N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPDbFCi9N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqPDbFCi9N H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uqPDbFCi9N .mbr-text,
.cid-uqPDbFCi9N .mbr-section-btn {
  text-align: center;
}
.cid-uqPDbFNeJo H1 {
  color: #fafafa;
  font-family: "Montserrat-bold";
  font-weight: bold;
}
.cid-uqPDbFNeJo DIV {
  text-align: center;
}
.cid-uqPDbFNeJo .delimitador {
  width: 560px;
  margin: auto;
}
.cid-uqPDbFNeJo .contenedor {
  height: 0px;
  width: 100%;
  max-width: 560px;
  padding-top: 56.25%;
  position: relative;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-us8C5RJ5AM {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/banner-ciruga-fp-2000x564.jpg");
}
.cid-us8C5RJ5AM .mbr-fallback-image.disabled {
  display: none;
}
.cid-us8C5RJ5AM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us8C5RJ5AM H3 {
  text-align: center;
  color: #ffffff;
}
.cid-us8C5RJ5AM .mbr-text,
.cid-us8C5RJ5AM .mbr-section-btn {
  text-align: center;
}
.cid-us8C6zMC5Z {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8C6zMC5Z .item:focus,
.cid-us8C6zMC5Z span:focus {
  outline: none;
}
.cid-us8C6zMC5Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8C6zMC5Z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8C6zMC5Z .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8C6zMC5Z .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8C6zMC5Z .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8C6zMC5Z .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8C6zMC5Z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8C6zMC5Z .mbr-section-title {
  color: #093790;
}
.cid-us8C6zMC5Z .mbr-text,
.cid-us8C6zMC5Z .mbr-section-btn {
  text-align: center;
}
.cid-us8C6zMC5Z .item-title {
  text-align: center;
}
.cid-us8C6zMC5Z .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8C6zMC5Z .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8C6zMC5Z .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8C77c7jk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8C77c7jk img,
.cid-us8C77c7jk .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-us8C77c7jk .item:focus,
.cid-us8C77c7jk span:focus {
  outline: none;
}
.cid-us8C77c7jk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8C77c7jk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8C77c7jk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8C77c7jk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-us8C77c7jk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8C77c7jk .mbr-section-title {
  color: #093790;
}
.cid-us8C77c7jk .mbr-text,
.cid-us8C77c7jk .mbr-section-btn {
  text-align: center;
}
.cid-us8C77c7jk .item-title {
  text-align: center;
}
.cid-us8C77c7jk .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8C77c7jk .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8C77c7jk .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8C7qpvZe {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8C7qpvZe .item:focus,
.cid-us8C7qpvZe span:focus {
  outline: none;
}
.cid-us8C7qpvZe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8C7qpvZe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8C7qpvZe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8C7qpvZe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8C7qpvZe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8C7qpvZe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8C7qpvZe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8C7qpvZe .mbr-section-title {
  color: #093790;
}
.cid-us8C7qpvZe .mbr-text,
.cid-us8C7qpvZe .mbr-section-btn {
  text-align: center;
}
.cid-us8C7qpvZe .item-title {
  text-align: center;
}
.cid-us8C7qpvZe .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8C7qpvZe .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8C7qpvZe .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8C7L7jbR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8C7L7jbR .item:focus,
.cid-us8C7L7jbR span:focus {
  outline: none;
}
.cid-us8C7L7jbR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8C7L7jbR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8C7L7jbR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8C7L7jbR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8C7L7jbR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8C7L7jbR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8C7L7jbR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8C7L7jbR .mbr-section-title {
  color: #093790;
}
.cid-us8C7L7jbR .mbr-text,
.cid-us8C7L7jbR .mbr-section-btn {
  text-align: center;
}
.cid-us8C7L7jbR .item-title {
  text-align: center;
}
.cid-us8C7L7jbR .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8C7L7jbR .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8C7L7jbR .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8C8amQ9h {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8C8amQ9h .item:focus,
.cid-us8C8amQ9h span:focus {
  outline: none;
}
.cid-us8C8amQ9h .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8C8amQ9h .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8C8amQ9h .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8C8amQ9h .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8C8amQ9h .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8C8amQ9h .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8C8amQ9h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8C8amQ9h .mbr-section-title {
  color: #093790;
}
.cid-us8C8amQ9h .mbr-text,
.cid-us8C8amQ9h .mbr-section-btn {
  text-align: center;
}
.cid-us8C8amQ9h .item-title {
  text-align: center;
}
.cid-us8C8amQ9h .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8C8amQ9h .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8C8amQ9h .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8C8zIbeG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8C8zIbeG .item:focus,
.cid-us8C8zIbeG span:focus {
  outline: none;
}
.cid-us8C8zIbeG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8C8zIbeG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8C8zIbeG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8C8zIbeG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8C8zIbeG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8C8zIbeG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8C8zIbeG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8C8zIbeG .mbr-section-title {
  color: #093790;
}
.cid-us8C8zIbeG .mbr-text,
.cid-us8C8zIbeG .mbr-section-btn {
  text-align: center;
}
.cid-us8C8zIbeG .item-title {
  text-align: center;
}
.cid-us8C8zIbeG .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8C8zIbeG .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8C8zIbeG .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8C9m9Aoo {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8C9m9Aoo .item:focus,
.cid-us8C9m9Aoo span:focus {
  outline: none;
}
.cid-us8C9m9Aoo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8C9m9Aoo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8C9m9Aoo .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8C9m9Aoo .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8C9m9Aoo .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8C9m9Aoo .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8C9m9Aoo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8C9m9Aoo .mbr-section-title {
  color: #093790;
}
.cid-us8C9m9Aoo .mbr-text,
.cid-us8C9m9Aoo .mbr-section-btn {
  text-align: center;
}
.cid-us8C9m9Aoo .item-title {
  text-align: center;
}
.cid-us8C9m9Aoo .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8C9m9Aoo .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8C9m9Aoo .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8CavcyLb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8CavcyLb .item:focus,
.cid-us8CavcyLb span:focus {
  outline: none;
}
.cid-us8CavcyLb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8CavcyLb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8CavcyLb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8CavcyLb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8CavcyLb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8CavcyLb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8CavcyLb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8CavcyLb .mbr-section-title {
  color: #093790;
}
.cid-us8CavcyLb .mbr-text,
.cid-us8CavcyLb .mbr-section-btn {
  text-align: center;
}
.cid-us8CavcyLb .item-title {
  text-align: center;
}
.cid-us8CavcyLb .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8CavcyLb .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8CavcyLb .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8CbfFF14 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8CbfFF14 .item:focus,
.cid-us8CbfFF14 span:focus {
  outline: none;
}
.cid-us8CbfFF14 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8CbfFF14 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8CbfFF14 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8CbfFF14 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8CbfFF14 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8CbfFF14 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8CbfFF14 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8CbfFF14 .mbr-section-title {
  color: #093790;
}
.cid-us8CbfFF14 .mbr-text,
.cid-us8CbfFF14 .mbr-section-btn {
  text-align: center;
}
.cid-us8CbfFF14 .item-title {
  text-align: center;
}
.cid-us8CbfFF14 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8CbfFF14 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8CbfFF14 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8CbX9YI1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8CbX9YI1 .item:focus,
.cid-us8CbX9YI1 span:focus {
  outline: none;
}
.cid-us8CbX9YI1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8CbX9YI1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8CbX9YI1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8CbX9YI1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8CbX9YI1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8CbX9YI1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8CbX9YI1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8CbX9YI1 .mbr-section-title {
  color: #093790;
}
.cid-us8CbX9YI1 .mbr-text,
.cid-us8CbX9YI1 .mbr-section-btn {
  text-align: center;
}
.cid-us8CbX9YI1 .item-title {
  text-align: center;
}
.cid-us8CbX9YI1 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8CbX9YI1 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8CbX9YI1 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8Cd4FMsz {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8Cd4FMsz .item:focus,
.cid-us8Cd4FMsz span:focus {
  outline: none;
}
.cid-us8Cd4FMsz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8Cd4FMsz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8Cd4FMsz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8Cd4FMsz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8Cd4FMsz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8Cd4FMsz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8Cd4FMsz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8Cd4FMsz .mbr-section-title {
  color: #093790;
}
.cid-us8Cd4FMsz .mbr-text,
.cid-us8Cd4FMsz .mbr-section-btn {
  text-align: center;
}
.cid-us8Cd4FMsz .item-title {
  text-align: center;
}
.cid-us8Cd4FMsz .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8Cd4FMsz .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8Cd4FMsz .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8CdMgwKP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8CdMgwKP .item:focus,
.cid-us8CdMgwKP span:focus {
  outline: none;
}
.cid-us8CdMgwKP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8CdMgwKP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8CdMgwKP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8CdMgwKP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8CdMgwKP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8CdMgwKP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8CdMgwKP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8CdMgwKP .mbr-section-title {
  color: #093790;
}
.cid-us8CdMgwKP .mbr-text,
.cid-us8CdMgwKP .mbr-section-btn {
  text-align: center;
}
.cid-us8CdMgwKP .item-title {
  text-align: center;
}
.cid-us8CdMgwKP .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8CdMgwKP .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8CdMgwKP .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8CeuT5L9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8CeuT5L9 .item:focus,
.cid-us8CeuT5L9 span:focus {
  outline: none;
}
.cid-us8CeuT5L9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8CeuT5L9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8CeuT5L9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8CeuT5L9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8CeuT5L9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8CeuT5L9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8CeuT5L9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8CeuT5L9 .mbr-section-title {
  color: #093790;
}
.cid-us8CeuT5L9 .mbr-text,
.cid-us8CeuT5L9 .mbr-section-btn {
  text-align: center;
}
.cid-us8CeuT5L9 .item-title {
  text-align: center;
}
.cid-us8CeuT5L9 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8CeuT5L9 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8CeuT5L9 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-us8Cfjhzs5 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-us8Cfjhzs5 .item:focus,
.cid-us8Cfjhzs5 span:focus {
  outline: none;
}
.cid-us8Cfjhzs5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-us8Cfjhzs5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us8Cfjhzs5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us8Cfjhzs5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us8Cfjhzs5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us8Cfjhzs5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us8Cfjhzs5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us8Cfjhzs5 .mbr-section-title {
  color: #093790;
}
.cid-us8Cfjhzs5 .mbr-text,
.cid-us8Cfjhzs5 .mbr-section-btn {
  text-align: center;
}
.cid-us8Cfjhzs5 .item-title {
  text-align: center;
}
.cid-us8Cfjhzs5 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-us8Cfjhzs5 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-us8Cfjhzs5 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uTXHDUCj15 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uTXHDUCj15 img,
.cid-uTXHDUCj15 .item-img {
  width: 100%;
}
.cid-uTXHDUCj15 .item:focus,
.cid-uTXHDUCj15 span:focus {
  outline: none;
}
.cid-uTXHDUCj15 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uTXHDUCj15 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uTXHDUCj15 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uTXHDUCj15 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uTXHDUCj15 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uTXHDUCj15 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uTXHDUCj15 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uTXHDUCj15 .mbr-section-title {
  color: #09529f;
}
.cid-uTXHDUCj15 .mbr-text,
.cid-uTXHDUCj15 .mbr-section-btn {
  text-align: left;
}
.cid-uTXHDUCj15 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uTXHDUCj15 .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-usD7im47F5 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-hospitalizacin-pediatrica-fi-2000x564.jpg");
}
.cid-usD7im47F5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usD7im47F5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usD7im47F5 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-usD7im47F5 .mbr-text,
.cid-usD7im47F5 .mbr-section-btn {
  text-align: center;
}
.cid-usD7imeyr7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-usD7imeyr7 .item:focus,
.cid-usD7imeyr7 span:focus {
  outline: none;
}
.cid-usD7imeyr7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-usD7imeyr7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-usD7imeyr7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-usD7imeyr7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usD7imeyr7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-usD7imeyr7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-usD7imeyr7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usD7imeyr7 .mbr-section-title {
  color: #093790;
}
.cid-usD7imeyr7 .mbr-text,
.cid-usD7imeyr7 .mbr-section-btn {
  text-align: center;
}
.cid-usD7imeyr7 .item-title {
  text-align: center;
}
.cid-usD7imeyr7 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-usD7imeyr7 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-usD7imeyr7 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPPgoblv1a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPgoblv1a img,
.cid-uPPgoblv1a .item-img {
  width: 100%;
}
.cid-uPPgoblv1a .item:focus,
.cid-uPPgoblv1a span:focus {
  outline: none;
}
.cid-uPPgoblv1a .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPgoblv1a .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPgoblv1a .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPgoblv1a .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPgoblv1a .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPgoblv1a .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPgoblv1a .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPgoblv1a .mbr-section-title {
  color: #09529f;
}
.cid-uPPgoblv1a .mbr-text,
.cid-uPPgoblv1a .mbr-section-btn {
  text-align: left;
}
.cid-uPPgoblv1a .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPgoblv1a .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uwEt6eXMdx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-centro-de-cncer-f-2000x564.jpg");
}
.cid-uwEt6eXMdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEt6eXMdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwEt6eXMdx H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uwEt6eXMdx .mbr-text,
.cid-uwEt6eXMdx .mbr-section-btn {
  text-align: center;
}
.cid-uwEt6f9wm9 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uwEt6f9wm9 .item:focus,
.cid-uwEt6f9wm9 span:focus {
  outline: none;
}
.cid-uwEt6f9wm9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwEt6f9wm9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwEt6f9wm9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uwEt6f9wm9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEt6f9wm9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uwEt6f9wm9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uwEt6f9wm9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwEt6f9wm9 .mbr-section-title {
  color: #093790;
}
.cid-uwEt6f9wm9 .mbr-text,
.cid-uwEt6f9wm9 .mbr-section-btn {
  text-align: center;
}
.cid-uwEt6f9wm9 .item-title {
  text-align: center;
}
.cid-uwEt6f9wm9 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uwEt6f9wm9 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uwEt6f9wm9 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uwEt6gmuqo {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uwEt6gmuqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEt6gmuqo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwEt6gmuqo .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uwEt6gmuqo .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uwEt6gmuqo .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uwEt6gmuqo .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwEt6gmuqo .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uwEt6gmuqo .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uwEt6gmuqo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwEt6gmuqo .card-title {
  color: #6bc8f0;
}
.cid-uwEt6gzgIz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-uwEt6gzgIz .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwEt6gzgIz .social-row .soc-item {
  margin: 8px;
}
.cid-uwEt6gzgIz .social-row .soc-item a:hover .mbr-iconfont,
.cid-uwEt6gzgIz .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uwEt6gzgIz .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-uwEt6gzgIz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uwEt6gzgIz .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uwEt6gzgIz .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uwEt6gzgIz .header-menu li p {
  margin: 0;
}
.cid-uwEt6gzgIz .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwEt6gzgIz .mbr-section-title {
  color: #ffffff;
}
.cid-uwEt6gzgIz .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uwEt6gzgIz .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-uwEt6gzgIz .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-uwEt6gzgIz .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-uwEt6gzgIz .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-uwEunyDiYs {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-centro-de-cncer-fi-2000x564.jpg");
}
.cid-uwEunyDiYs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEunyDiYs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwEunyDiYs H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uwEunyDiYs .mbr-text,
.cid-uwEunyDiYs .mbr-section-btn {
  text-align: center;
}
.cid-uwEunyMS5B {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uwEunyMS5B .item:focus,
.cid-uwEunyMS5B span:focus {
  outline: none;
}
.cid-uwEunyMS5B .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwEunyMS5B .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwEunyMS5B .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uwEunyMS5B .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwEunyMS5B .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uwEunyMS5B .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uwEunyMS5B .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwEunyMS5B .mbr-section-title {
  color: #093790;
}
.cid-uwEunyMS5B .mbr-text,
.cid-uwEunyMS5B .mbr-section-btn {
  text-align: center;
}
.cid-uwEunyMS5B .item-title {
  text-align: center;
}
.cid-uwEunyMS5B .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uwEunyMS5B .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uwEunyMS5B .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uwEunzGUj2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uwEunzGUj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwEunzGUj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwEunzGUj2 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uwEunzGUj2 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uwEunzGUj2 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uwEunzGUj2 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwEunzGUj2 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uwEunzGUj2 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uwEunzGUj2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwEunzGUj2 .card-title {
  color: #6bc8f0;
}
.cid-uwEunzVpRq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-uwEunzVpRq .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwEunzVpRq .social-row .soc-item {
  margin: 8px;
}
.cid-uwEunzVpRq .social-row .soc-item a:hover .mbr-iconfont,
.cid-uwEunzVpRq .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uwEunzVpRq .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-uwEunzVpRq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uwEunzVpRq .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uwEunzVpRq .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uwEunzVpRq .header-menu li p {
  margin: 0;
}
.cid-uwEunzVpRq .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwEunzVpRq .mbr-section-title {
  color: #ffffff;
}
.cid-uwEunzVpRq .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uwEunzVpRq .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-uwEunzVpRq .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-uwEunzVpRq .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-uwEunzVpRq .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ux8gPKhFQP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-centro-de-cncer-f-2000x564.jpg");
}
.cid-ux8gPKhFQP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8gPKhFQP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8gPKhFQP H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ux8gPKhFQP .mbr-text,
.cid-ux8gPKhFQP .mbr-section-btn {
  text-align: center;
}
.cid-ux8gPKuSm1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ux8gPKuSm1 .item:focus,
.cid-ux8gPKuSm1 span:focus {
  outline: none;
}
.cid-ux8gPKuSm1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ux8gPKuSm1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ux8gPKuSm1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ux8gPKuSm1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8gPKuSm1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ux8gPKuSm1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ux8gPKuSm1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ux8gPKuSm1 .mbr-section-title {
  color: #093790;
}
.cid-ux8gPKuSm1 .mbr-text,
.cid-ux8gPKuSm1 .mbr-section-btn {
  text-align: center;
}
.cid-ux8gPKuSm1 .item-title {
  text-align: center;
}
.cid-ux8gPKuSm1 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ux8gPKuSm1 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ux8gPKuSm1 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ux8gPLb7SW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ux8gPLb7SW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8gPLb7SW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8gPLb7SW .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ux8gPLb7SW .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ux8gPLb7SW .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ux8gPLb7SW .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ux8gPLb7SW .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ux8gPLb7SW .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-ux8gPLb7SW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ux8gPLb7SW .card-title {
  color: #6bc8f0;
}
.cid-ux8gPLmWTi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-ux8gPLmWTi .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ux8gPLmWTi .social-row .soc-item {
  margin: 8px;
}
.cid-ux8gPLmWTi .social-row .soc-item a:hover .mbr-iconfont,
.cid-ux8gPLmWTi .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-ux8gPLmWTi .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-ux8gPLmWTi .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ux8gPLmWTi .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ux8gPLmWTi .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ux8gPLmWTi .header-menu li p {
  margin: 0;
}
.cid-ux8gPLmWTi .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-ux8gPLmWTi .mbr-section-title {
  color: #ffffff;
}
.cid-ux8gPLmWTi .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ux8gPLmWTi .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-ux8gPLmWTi .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-ux8gPLmWTi .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-ux8gPLmWTi .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ux8hV71OpT {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/banner-centro-de-cncer-f-2000x564.jpg");
}
.cid-ux8hV71OpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8hV71OpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8hV71OpT H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ux8hV71OpT .mbr-text,
.cid-ux8hV71OpT .mbr-section-btn {
  text-align: center;
}
.cid-ux8hV7etTs {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ux8hV7etTs .item:focus,
.cid-ux8hV7etTs span:focus {
  outline: none;
}
.cid-ux8hV7etTs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ux8hV7etTs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ux8hV7etTs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ux8hV7etTs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ux8hV7etTs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ux8hV7etTs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ux8hV7etTs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ux8hV7etTs .mbr-section-title {
  color: #093790;
}
.cid-ux8hV7etTs .mbr-text,
.cid-ux8hV7etTs .mbr-section-btn {
  text-align: center;
}
.cid-ux8hV7etTs .item-title {
  text-align: center;
}
.cid-ux8hV7etTs .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ux8hV7etTs .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ux8hV7etTs .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ux8hV7ur4n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ux8hV7ur4n .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8hV7ur4n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux8hV7ur4n .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ux8hV7ur4n .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ux8hV7ur4n .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ux8hV7ur4n .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ux8hV7ur4n .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ux8hV7ur4n .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-ux8hV7ur4n .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ux8hV7ur4n .card-title {
  color: #6bc8f0;
}
.cid-ux8hV7IeHm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-ux8hV7IeHm .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ux8hV7IeHm .social-row .soc-item {
  margin: 8px;
}
.cid-ux8hV7IeHm .social-row .soc-item a:hover .mbr-iconfont,
.cid-ux8hV7IeHm .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-ux8hV7IeHm .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-ux8hV7IeHm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ux8hV7IeHm .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ux8hV7IeHm .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ux8hV7IeHm .header-menu li p {
  margin: 0;
}
.cid-ux8hV7IeHm .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-ux8hV7IeHm .mbr-section-title {
  color: #ffffff;
}
.cid-ux8hV7IeHm .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ux8hV7IeHm .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-ux8hV7IeHm .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-ux8hV7IeHm .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-ux8hV7IeHm .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tOsgfYGm3I {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-donacin-f-2000x564.jpg");
}
.cid-tOsgfYGm3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOsgfYGm3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOsgfYGm3I H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOsgfYGm3I .mbr-text,
.cid-tOsgfYGm3I .mbr-section-btn {
  text-align: center;
}
.cid-tPRYrMcS4L {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPRYrMcS4L .item:focus,
.cid-tPRYrMcS4L span:focus {
  outline: none;
}
.cid-tPRYrMcS4L .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tPRYrMcS4L .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tPRYrMcS4L .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tPRYrMcS4L .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPRYrMcS4L .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tPRYrMcS4L .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tPRYrMcS4L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tPRYrMcS4L .mbr-section-title {
  color: #093790;
}
.cid-tPRYrMcS4L .mbr-text,
.cid-tPRYrMcS4L .mbr-section-btn {
  text-align: center;
}
.cid-tPRYrMcS4L .item-title {
  text-align: center;
}
.cid-tPRYrMcS4L .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tPRYrMcS4L .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tPRYrMcS4L .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uxlcJNn0fH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxlcJNn0fH .item:focus,
.cid-uxlcJNn0fH span:focus {
  outline: none;
}
.cid-uxlcJNn0fH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uxlcJNn0fH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uxlcJNn0fH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uxlcJNn0fH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uxlcJNn0fH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uxlcJNn0fH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uxlcJNn0fH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uxlcJNn0fH .mbr-section-title {
  color: #093790;
}
.cid-uxlcJNn0fH .mbr-text,
.cid-uxlcJNn0fH .mbr-section-btn {
  text-align: center;
}
.cid-uxlcJNn0fH .item-title {
  text-align: center;
}
.cid-uxlcJNn0fH .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uxlcJNn0fH .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uxlcJNn0fH .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uxe7HHzQ28 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxe7HHzQ28 .item:focus,
.cid-uxe7HHzQ28 span:focus {
  outline: none;
}
.cid-uxe7HHzQ28 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uxe7HHzQ28 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uxe7HHzQ28 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uxe7HHzQ28 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uxe7HHzQ28 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uxe7HHzQ28 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uxe7HHzQ28 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uxe7HHzQ28 .mbr-section-title {
  color: #093790;
}
.cid-uxe7HHzQ28 .mbr-text,
.cid-uxe7HHzQ28 .mbr-section-btn {
  text-align: center;
}
.cid-uxe7HHzQ28 .item-title {
  text-align: center;
}
.cid-uxe7HHzQ28 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uxe7HHzQ28 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uxe7HHzQ28 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPPoPw9Ykw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPoPw9Ykw img,
.cid-uPPoPw9Ykw .item-img {
  width: 100%;
}
.cid-uPPoPw9Ykw .item:focus,
.cid-uPPoPw9Ykw span:focus {
  outline: none;
}
.cid-uPPoPw9Ykw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPoPw9Ykw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPoPw9Ykw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPoPw9Ykw .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPoPw9Ykw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPoPw9Ykw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPoPw9Ykw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPoPw9Ykw .mbr-section-title {
  color: #09529f;
}
.cid-uPPoPw9Ykw .mbr-text,
.cid-uPPoPw9Ykw .mbr-section-btn {
  text-align: left;
}
.cid-uPPoPw9Ykw .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPoPw9Ykw .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tOsgFXt9SO {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-donacin-fi-2000x564.jpg");
}
.cid-tOsgFXt9SO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOsgFXt9SO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOsgFXt9SO H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOsgFXt9SO .mbr-text,
.cid-tOsgFXt9SO .mbr-section-btn {
  text-align: center;
}
.cid-tPS08EU27o {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPS08EU27o .item:focus,
.cid-tPS08EU27o span:focus {
  outline: none;
}
.cid-tPS08EU27o .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tPS08EU27o .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tPS08EU27o .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tPS08EU27o .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPS08EU27o .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tPS08EU27o .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tPS08EU27o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tPS08EU27o .mbr-section-title {
  color: #093790;
}
.cid-tPS08EU27o .mbr-text,
.cid-tPS08EU27o .mbr-section-btn {
  text-align: center;
}
.cid-tPS08EU27o .item-title {
  text-align: center;
}
.cid-tPS08EU27o .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-tPS08EU27o .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-tPS08EU27o .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uHdXnrnNtH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHdXnrnNtH .item:focus,
.cid-uHdXnrnNtH span:focus {
  outline: none;
}
.cid-uHdXnrnNtH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uHdXnrnNtH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHdXnrnNtH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uHdXnrnNtH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHdXnrnNtH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uHdXnrnNtH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uHdXnrnNtH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHdXnrnNtH .mbr-section-title {
  color: #093790;
}
.cid-uHdXnrnNtH .mbr-text,
.cid-uHdXnrnNtH .mbr-section-btn {
  text-align: center;
}
.cid-uHdXnrnNtH .item-title {
  text-align: center;
}
.cid-uHdXnrnNtH .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uHdXnrnNtH .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uHdXnrnNtH .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uxk0qlJefj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxk0qlJefj .item:focus,
.cid-uxk0qlJefj span:focus {
  outline: none;
}
.cid-uxk0qlJefj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uxk0qlJefj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uxk0qlJefj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uxk0qlJefj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uxk0qlJefj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uxk0qlJefj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uxk0qlJefj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uxk0qlJefj .mbr-section-title {
  color: #093790;
}
.cid-uxk0qlJefj .mbr-text,
.cid-uxk0qlJefj .mbr-section-btn {
  text-align: center;
}
.cid-uxk0qlJefj .item-title {
  text-align: center;
}
.cid-uxk0qlJefj .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uxk0qlJefj .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uxk0qlJefj .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPPp7DnEDB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPp7DnEDB img,
.cid-uPPp7DnEDB .item-img {
  width: 100%;
}
.cid-uPPp7DnEDB .item:focus,
.cid-uPPp7DnEDB span:focus {
  outline: none;
}
.cid-uPPp7DnEDB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPp7DnEDB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPp7DnEDB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPp7DnEDB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPp7DnEDB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPp7DnEDB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPp7DnEDB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPp7DnEDB .mbr-section-title {
  color: #09529f;
}
.cid-uPPp7DnEDB .mbr-text,
.cid-uPPp7DnEDB .mbr-section-btn {
  text-align: left;
}
.cid-uPPp7DnEDB .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPp7DnEDB .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tOsgWZ2M9Q {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/uci-fi-2000x564.jpg");
}
.cid-tOsgWZ2M9Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOsgWZ2M9Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOsgWZ2M9Q H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tOsgWZ2M9Q .mbr-text,
.cid-tOsgWZ2M9Q .mbr-section-btn {
  text-align: center;
}
.cid-ub5BAnZiIe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ub5BAnZiIe img,
.cid-ub5BAnZiIe .item-img {
  width: 100%;
}
.cid-ub5BAnZiIe .item:focus,
.cid-ub5BAnZiIe span:focus {
  outline: none;
}
.cid-ub5BAnZiIe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ub5BAnZiIe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ub5BAnZiIe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ub5BAnZiIe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ub5BAnZiIe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ub5BAnZiIe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ub5BAnZiIe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ub5BAnZiIe .mbr-section-title {
  color: #09529f;
}
.cid-ub5BAnZiIe .mbr-text,
.cid-ub5BAnZiIe .mbr-section-btn {
  text-align: left;
}
.cid-ub5BAnZiIe .item-title {
  text-align: left;
  color: #09529f;
}
.cid-ub5BAnZiIe .item-subtitle {
  text-align: left;
}
.cid-uPOmuSmKMl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPOmuSmKMl img,
.cid-uPOmuSmKMl .item-img {
  width: 100%;
}
.cid-uPOmuSmKMl .item:focus,
.cid-uPOmuSmKMl span:focus {
  outline: none;
}
.cid-uPOmuSmKMl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPOmuSmKMl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPOmuSmKMl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPOmuSmKMl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPOmuSmKMl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPOmuSmKMl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPOmuSmKMl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPOmuSmKMl .mbr-section-title {
  color: #09529f;
}
.cid-uPOmuSmKMl .mbr-text,
.cid-uPOmuSmKMl .mbr-section-btn {
  text-align: left;
}
.cid-uPOmuSmKMl .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPOmuSmKMl .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ujtCxtOtpm {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-iamii-fp-2000x564.jpg");
}
.cid-ujtCxtOtpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujtCxtOtpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujtCxtOtpm H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ujtCxtOtpm .mbr-text,
.cid-ujtCxtOtpm .mbr-section-btn {
  text-align: center;
}
.cid-ujtCxu6OSW {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujtCxu6OSW .item:focus,
.cid-ujtCxu6OSW span:focus {
  outline: none;
}
.cid-ujtCxu6OSW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujtCxu6OSW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujtCxu6OSW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ujtCxu6OSW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujtCxu6OSW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ujtCxu6OSW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ujtCxu6OSW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujtCxu6OSW .mbr-section-title {
  color: #093790;
}
.cid-ujtCxu6OSW .mbr-text,
.cid-ujtCxu6OSW .mbr-section-btn {
  text-align: center;
}
.cid-ujtCxu6OSW .item-title {
  text-align: center;
}
.cid-ujtCxu6OSW .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujtCxu6OSW .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujtCxu6OSW .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uT22XPOHRr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uT22XPOHRr img,
.cid-uT22XPOHRr .item-img {
  width: 100%;
}
.cid-uT22XPOHRr .item:focus,
.cid-uT22XPOHRr span:focus {
  outline: none;
}
.cid-uT22XPOHRr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uT22XPOHRr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uT22XPOHRr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uT22XPOHRr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uT22XPOHRr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uT22XPOHRr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uT22XPOHRr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uT22XPOHRr .mbr-section-title {
  color: #09529f;
}
.cid-uT22XPOHRr .mbr-text,
.cid-uT22XPOHRr .mbr-section-btn {
  text-align: left;
}
.cid-uT22XPOHRr .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uT22XPOHRr .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-ujFui9nohT {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/banner-iamii-fi-2000x564.jpg");
}
.cid-ujFui9nohT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujFui9nohT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujFui9nohT H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ujFui9nohT .mbr-text,
.cid-ujFui9nohT .mbr-section-btn {
  text-align: center;
}
.cid-uJesQ1VWSG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJesQ1VWSG .item:focus,
.cid-uJesQ1VWSG span:focus {
  outline: none;
}
.cid-uJesQ1VWSG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uJesQ1VWSG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJesQ1VWSG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uJesQ1VWSG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJesQ1VWSG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uJesQ1VWSG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uJesQ1VWSG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJesQ1VWSG .mbr-section-title {
  color: #093790;
}
.cid-uJesQ1VWSG .mbr-text,
.cid-uJesQ1VWSG .mbr-section-btn {
  text-align: center;
}
.cid-uJesQ1VWSG .item-title {
  text-align: center;
}
.cid-uJesQ1VWSG .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uJesQ1VWSG .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uJesQ1VWSG .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPPe8EsqxW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPPe8EsqxW img,
.cid-uPPe8EsqxW .item-img {
  width: 100%;
}
.cid-uPPe8EsqxW .item:focus,
.cid-uPPe8EsqxW span:focus {
  outline: none;
}
.cid-uPPe8EsqxW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPPe8EsqxW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPPe8EsqxW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPPe8EsqxW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPPe8EsqxW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPPe8EsqxW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPPe8EsqxW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPPe8EsqxW .mbr-section-title {
  color: #09529f;
}
.cid-uPPe8EsqxW .mbr-text,
.cid-uPPe8EsqxW .mbr-section-btn {
  text-align: left;
}
.cid-uPPe8EsqxW .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPPe8EsqxW .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uCGJjcF1DY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCGJjcF1DY .carousel-indicators {
  background: #09529f;
}
.cid-uCGJjcF1DY nav.navbar {
  position: fixed;
}
.cid-uCGJjcF1DY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown-menu {
  padding: 0;
}
.cid-uCGJjcF1DY .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .dropdown-item:hover,
.cid-uCGJjcF1DY .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCGJjcF1DY .nav-link {
  position: relative;
}
.cid-uCGJjcF1DY .container {
  display: flex;
  margin: auto;
}
.cid-uCGJjcF1DY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCGJjcF1DY .navbar-caption {
  padding-right: 4rem;
}
.cid-uCGJjcF1DY .dropdown-menu,
.cid-uCGJjcF1DY .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uCGJjcF1DY .nav-item:focus,
.cid-uCGJjcF1DY .nav-link:focus {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uCGJjcF1DY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCGJjcF1DY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCGJjcF1DY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCGJjcF1DY .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uCGJjcF1DY .navbar.opened {
  transition: all .3s;
}
.cid-uCGJjcF1DY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uCGJjcF1DY .navbar .navbar-logo img {
  width: auto;
}
.cid-uCGJjcF1DY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCGJjcF1DY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCGJjcF1DY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCGJjcF1DY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCGJjcF1DY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uCGJjcF1DY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uCGJjcF1DY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCGJjcF1DY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCGJjcF1DY .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uCGJjcF1DY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCGJjcF1DY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCGJjcF1DY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCGJjcF1DY .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uCGJjcF1DY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uCGJjcF1DY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCGJjcF1DY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uCGJjcF1DY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCGJjcF1DY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCGJjcF1DY .dropdown-item.active,
.cid-uCGJjcF1DY .dropdown-item:active {
  background-color: transparent;
}
.cid-uCGJjcF1DY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCGJjcF1DY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uCGJjcF1DY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCGJjcF1DY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCGJjcF1DY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCGJjcF1DY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCGJjcF1DY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCGJjcF1DY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uCGJjcF1DY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCGJjcF1DY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uCGJjcF1DY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCGJjcF1DY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCGJjcF1DY .navbar {
    height: 77px;
  }
  .cid-uCGJjcF1DY .navbar.opened {
    height: auto;
  }
  .cid-uCGJjcF1DY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uCGJjcF1DY .navbar-collapse {
    display: right;
  }
}
.cid-uCGJjcF1DY H3 {
  text-align: right;
}
.cid-tLfFo3Dl7E {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/banner-ciruga-fi-2000x564.jpg");
}
.cid-tLfFo3Dl7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLfFo3Dl7E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLfFo3Dl7E H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tLfFo3Dl7E .mbr-text,
.cid-tLfFo3Dl7E .mbr-section-btn {
  text-align: center;
}
.cid-uoaQoaJjDR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uoaQoaJjDR .item:focus,
.cid-uoaQoaJjDR span:focus {
  outline: none;
}
.cid-uoaQoaJjDR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uoaQoaJjDR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uoaQoaJjDR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uoaQoaJjDR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uoaQoaJjDR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uoaQoaJjDR .mbr-section-title {
  color: #093790;
}
.cid-uoaQoaJjDR .mbr-text,
.cid-uoaQoaJjDR .mbr-section-btn {
  text-align: center;
}
.cid-uoaQoaJjDR .item-title {
  text-align: center;
}
.cid-uoaQoaJjDR .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uoaQoaJjDR .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uoaQoaJjDR .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uoaQoaJjDR H6 {
  color: #00b2ec;
}
.cid-uebATmUtrd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uebATmUtrd img,
.cid-uebATmUtrd .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-uebATmUtrd .item:focus,
.cid-uebATmUtrd span:focus {
  outline: none;
}
.cid-uebATmUtrd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uebATmUtrd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uebATmUtrd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uebATmUtrd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uebATmUtrd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uebATmUtrd .mbr-section-title {
  color: #093790;
}
.cid-uebATmUtrd .mbr-text,
.cid-uebATmUtrd .mbr-section-btn {
  text-align: center;
}
.cid-uebATmUtrd .item-title {
  text-align: center;
}
.cid-uebATmUtrd .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uebATmUtrd .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uebATmUtrd .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uogT8zKrob {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uogT8zKrob .item:focus,
.cid-uogT8zKrob span:focus {
  outline: none;
}
.cid-uogT8zKrob .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uogT8zKrob .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uogT8zKrob .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uogT8zKrob .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uogT8zKrob .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uogT8zKrob .mbr-section-title {
  color: #093790;
}
.cid-uogT8zKrob .mbr-text,
.cid-uogT8zKrob .mbr-section-btn {
  text-align: center;
}
.cid-uogT8zKrob .item-title {
  text-align: center;
}
.cid-uogT8zKrob .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uogT8zKrob .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uogT8zKrob .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uogT8zKrob H6 {
  color: #00b2ec;
}
.cid-uoh13ehMf7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uoh13ehMf7 .item:focus,
.cid-uoh13ehMf7 span:focus {
  outline: none;
}
.cid-uoh13ehMf7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uoh13ehMf7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uoh13ehMf7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uoh13ehMf7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uoh13ehMf7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uoh13ehMf7 .mbr-section-title {
  color: #093790;
}
.cid-uoh13ehMf7 .mbr-text,
.cid-uoh13ehMf7 .mbr-section-btn {
  text-align: center;
}
.cid-uoh13ehMf7 .item-title {
  text-align: center;
}
.cid-uoh13ehMf7 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uoh13ehMf7 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uoh13ehMf7 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uoh13ehMf7 H6 {
  color: #00b2ec;
}
.cid-ujWHVXDiPD {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWHVXDiPD img,
.cid-ujWHVXDiPD .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWHVXDiPD .item:focus,
.cid-ujWHVXDiPD span:focus {
  outline: none;
}
.cid-ujWHVXDiPD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWHVXDiPD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWHVXDiPD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWHVXDiPD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWHVXDiPD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWHVXDiPD .mbr-section-title {
  color: #093790;
}
.cid-ujWHVXDiPD .mbr-text,
.cid-ujWHVXDiPD .mbr-section-btn {
  text-align: center;
}
.cid-ujWHVXDiPD .item-title {
  text-align: center;
}
.cid-ujWHVXDiPD .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWHVXDiPD .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWHVXDiPD .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWHWkONHV {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWHWkONHV img,
.cid-ujWHWkONHV .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWHWkONHV .item:focus,
.cid-ujWHWkONHV span:focus {
  outline: none;
}
.cid-ujWHWkONHV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWHWkONHV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWHWkONHV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWHWkONHV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWHWkONHV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWHWkONHV .mbr-section-title {
  color: #093790;
}
.cid-ujWHWkONHV .mbr-text,
.cid-ujWHWkONHV .mbr-section-btn {
  text-align: center;
}
.cid-ujWHWkONHV .item-title {
  text-align: center;
}
.cid-ujWHWkONHV .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWHWkONHV .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWHWkONHV .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWHXAWOgQ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWHXAWOgQ img,
.cid-ujWHXAWOgQ .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWHXAWOgQ .item:focus,
.cid-ujWHXAWOgQ span:focus {
  outline: none;
}
.cid-ujWHXAWOgQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWHXAWOgQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWHXAWOgQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWHXAWOgQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWHXAWOgQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWHXAWOgQ .mbr-section-title {
  color: #093790;
}
.cid-ujWHXAWOgQ .mbr-text,
.cid-ujWHXAWOgQ .mbr-section-btn {
  text-align: center;
}
.cid-ujWHXAWOgQ .item-title {
  text-align: center;
}
.cid-ujWHXAWOgQ .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWHXAWOgQ .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWHXAWOgQ .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWHYcL4mG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWHYcL4mG img,
.cid-ujWHYcL4mG .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWHYcL4mG .item:focus,
.cid-ujWHYcL4mG span:focus {
  outline: none;
}
.cid-ujWHYcL4mG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWHYcL4mG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWHYcL4mG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWHYcL4mG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWHYcL4mG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWHYcL4mG .mbr-section-title {
  color: #093790;
}
.cid-ujWHYcL4mG .mbr-text,
.cid-ujWHYcL4mG .mbr-section-btn {
  text-align: center;
}
.cid-ujWHYcL4mG .item-title {
  text-align: center;
}
.cid-ujWHYcL4mG .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWHYcL4mG .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWHYcL4mG .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWHYIeDR7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWHYIeDR7 img,
.cid-ujWHYIeDR7 .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWHYIeDR7 .item:focus,
.cid-ujWHYIeDR7 span:focus {
  outline: none;
}
.cid-ujWHYIeDR7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWHYIeDR7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWHYIeDR7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWHYIeDR7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWHYIeDR7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWHYIeDR7 .mbr-section-title {
  color: #093790;
}
.cid-ujWHYIeDR7 .mbr-text,
.cid-ujWHYIeDR7 .mbr-section-btn {
  text-align: center;
}
.cid-ujWHYIeDR7 .item-title {
  text-align: center;
}
.cid-ujWHYIeDR7 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWHYIeDR7 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWHYIeDR7 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWHZkqQw1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWHZkqQw1 img,
.cid-ujWHZkqQw1 .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWHZkqQw1 .item:focus,
.cid-ujWHZkqQw1 span:focus {
  outline: none;
}
.cid-ujWHZkqQw1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWHZkqQw1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWHZkqQw1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWHZkqQw1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWHZkqQw1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWHZkqQw1 .mbr-section-title {
  color: #093790;
}
.cid-ujWHZkqQw1 .mbr-text,
.cid-ujWHZkqQw1 .mbr-section-btn {
  text-align: center;
}
.cid-ujWHZkqQw1 .item-title {
  text-align: center;
}
.cid-ujWHZkqQw1 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWHZkqQw1 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWHZkqQw1 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWI0wPqTd {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWI0wPqTd img,
.cid-ujWI0wPqTd .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWI0wPqTd .item:focus,
.cid-ujWI0wPqTd span:focus {
  outline: none;
}
.cid-ujWI0wPqTd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWI0wPqTd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWI0wPqTd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWI0wPqTd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWI0wPqTd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWI0wPqTd .mbr-section-title {
  color: #093790;
}
.cid-ujWI0wPqTd .mbr-text,
.cid-ujWI0wPqTd .mbr-section-btn {
  text-align: center;
}
.cid-ujWI0wPqTd .item-title {
  text-align: center;
}
.cid-ujWI0wPqTd .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWI0wPqTd .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWI0wPqTd .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWI1c2iz0 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWI1c2iz0 img,
.cid-ujWI1c2iz0 .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWI1c2iz0 .item:focus,
.cid-ujWI1c2iz0 span:focus {
  outline: none;
}
.cid-ujWI1c2iz0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWI1c2iz0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWI1c2iz0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWI1c2iz0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWI1c2iz0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWI1c2iz0 .mbr-section-title {
  color: #093790;
}
.cid-ujWI1c2iz0 .mbr-text,
.cid-ujWI1c2iz0 .mbr-section-btn {
  text-align: center;
}
.cid-ujWI1c2iz0 .item-title {
  text-align: center;
}
.cid-ujWI1c2iz0 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWI1c2iz0 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWI1c2iz0 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-ujWI1ZsMSI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujWI1ZsMSI img,
.cid-ujWI1ZsMSI .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-ujWI1ZsMSI .item:focus,
.cid-ujWI1ZsMSI span:focus {
  outline: none;
}
.cid-ujWI1ZsMSI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujWI1ZsMSI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujWI1ZsMSI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujWI1ZsMSI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujWI1ZsMSI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujWI1ZsMSI .mbr-section-title {
  color: #093790;
}
.cid-ujWI1ZsMSI .mbr-text,
.cid-ujWI1ZsMSI .mbr-section-btn {
  text-align: center;
}
.cid-ujWI1ZsMSI .item-title {
  text-align: center;
}
.cid-ujWI1ZsMSI .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-ujWI1ZsMSI .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-ujWI1ZsMSI .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uE8SQQ9PkZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uE8SQQ9PkZ img,
.cid-uE8SQQ9PkZ .item-img {
  width: 100%;
}
.cid-uE8SQQ9PkZ .item:focus,
.cid-uE8SQQ9PkZ span:focus {
  outline: none;
}
.cid-uE8SQQ9PkZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uE8SQQ9PkZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uE8SQQ9PkZ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uE8SQQ9PkZ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uE8SQQ9PkZ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uE8SQQ9PkZ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uE8SQQ9PkZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uE8SQQ9PkZ .mbr-section-title {
  color: #09529f;
}
.cid-uE8SQQ9PkZ .mbr-text,
.cid-uE8SQQ9PkZ .mbr-section-btn {
  text-align: left;
}
.cid-uE8SQQ9PkZ .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uE8SQQ9PkZ .item-subtitle {
  text-align: left;
}
.cid-usDe4DsZ9B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-usDe4DsZ9B .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-usDe4DsZ9B .social-row .soc-item {
  margin: 8px;
}
.cid-usDe4DsZ9B .social-row .soc-item a:hover .mbr-iconfont,
.cid-usDe4DsZ9B .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-usDe4DsZ9B .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-usDe4DsZ9B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usDe4DsZ9B .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usDe4DsZ9B .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usDe4DsZ9B .header-menu li p {
  margin: 0;
}
.cid-usDe4DsZ9B .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-usDe4DsZ9B .mbr-section-title {
  color: #ffffff;
}
.cid-usDe4DsZ9B .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usDe4DsZ9B .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-usDe4DsZ9B .image-container img {
    max-width: 20%;
  }
}
.cid-uPVw4xrEal {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uPVw4xrEal .carousel-indicators {
  background: #09529f;
}
.cid-uPVw4xrEal nav.navbar {
  position: fixed;
}
.cid-uPVw4xrEal .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPVw4xrEal .dropdown-menu {
  padding: 0;
}
.cid-uPVw4xrEal .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uPVw4xrEal .dropdown-item:hover,
.cid-uPVw4xrEal .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uPVw4xrEal .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uPVw4xrEal .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPVw4xrEal .nav-link {
  position: relative;
}
.cid-uPVw4xrEal .container {
  display: flex;
  margin: auto;
}
.cid-uPVw4xrEal .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uPVw4xrEal .navbar-caption {
  padding-right: 4rem;
}
.cid-uPVw4xrEal .dropdown-menu,
.cid-uPVw4xrEal .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uPVw4xrEal .nav-item:focus,
.cid-uPVw4xrEal .nav-link:focus {
  outline: none;
}
.cid-uPVw4xrEal .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPVw4xrEal .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPVw4xrEal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPVw4xrEal .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPVw4xrEal .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPVw4xrEal .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPVw4xrEal .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uPVw4xrEal .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uPVw4xrEal .navbar.opened {
  transition: all .3s;
}
.cid-uPVw4xrEal .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uPVw4xrEal .navbar .navbar-logo img {
  width: auto;
}
.cid-uPVw4xrEal .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPVw4xrEal .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPVw4xrEal .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPVw4xrEal .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uPVw4xrEal .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPVw4xrEal .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPVw4xrEal .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uPVw4xrEal .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPVw4xrEal .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uPVw4xrEal .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uPVw4xrEal .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPVw4xrEal .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPVw4xrEal .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPVw4xrEal .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPVw4xrEal .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uPVw4xrEal .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uPVw4xrEal .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPVw4xrEal .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPVw4xrEal .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPVw4xrEal .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uPVw4xrEal .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uPVw4xrEal .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPVw4xrEal .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uPVw4xrEal .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPVw4xrEal .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPVw4xrEal .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPVw4xrEal .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPVw4xrEal .dropdown-item.active,
.cid-uPVw4xrEal .dropdown-item:active {
  background-color: transparent;
}
.cid-uPVw4xrEal .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPVw4xrEal .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPVw4xrEal .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPVw4xrEal .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uPVw4xrEal .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPVw4xrEal .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPVw4xrEal ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPVw4xrEal .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPVw4xrEal button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uPVw4xrEal button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uPVw4xrEal button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uPVw4xrEal button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uPVw4xrEal button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uPVw4xrEal button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uPVw4xrEal nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPVw4xrEal nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uPVw4xrEal nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uPVw4xrEal nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uPVw4xrEal .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uPVw4xrEal a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPVw4xrEal .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPVw4xrEal .navbar {
    height: 77px;
  }
  .cid-uPVw4xrEal .navbar.opened {
    height: auto;
  }
  .cid-uPVw4xrEal .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uPVw4xrEal .navbar-collapse {
    display: right;
  }
}
.cid-uPVw4xrEal H3 {
  text-align: right;
}
.cid-uPVw4xLp0z {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/banner-ciruga-fi-2000x564.jpg");
}
.cid-uPVw4xLp0z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVw4xLp0z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPVw4xLp0z H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uPVw4xLp0z .mbr-text,
.cid-uPVw4xLp0z .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4xYJWd {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4xYJWd .item:focus,
.cid-uPVw4xYJWd span:focus {
  outline: none;
}
.cid-uPVw4xYJWd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4xYJWd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4xYJWd .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4xYJWd .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4xYJWd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4xYJWd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4xYJWd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4xYJWd .mbr-section-title {
  color: #093790;
}
.cid-uPVw4xYJWd .mbr-text,
.cid-uPVw4xYJWd .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4xYJWd .item-title {
  text-align: center;
}
.cid-uPVw4xYJWd .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4xYJWd .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4xYJWd .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4yktIn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4yktIn img,
.cid-uPVw4yktIn .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-uPVw4yktIn .item:focus,
.cid-uPVw4yktIn span:focus {
  outline: none;
}
.cid-uPVw4yktIn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4yktIn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4yktIn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4yktIn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPVw4yktIn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4yktIn .mbr-section-title {
  color: #093790;
}
.cid-uPVw4yktIn .mbr-text,
.cid-uPVw4yktIn .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4yktIn .item-title {
  text-align: center;
}
.cid-uPVw4yktIn .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4yktIn .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4yktIn .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4yvosT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4yvosT .item:focus,
.cid-uPVw4yvosT span:focus {
  outline: none;
}
.cid-uPVw4yvosT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4yvosT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4yvosT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4yvosT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4yvosT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4yvosT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4yvosT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4yvosT .mbr-section-title {
  color: #093790;
}
.cid-uPVw4yvosT .mbr-text,
.cid-uPVw4yvosT .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4yvosT .item-title {
  text-align: center;
}
.cid-uPVw4yvosT .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4yvosT .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4yvosT .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4yIjiB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4yIjiB .item:focus,
.cid-uPVw4yIjiB span:focus {
  outline: none;
}
.cid-uPVw4yIjiB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4yIjiB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4yIjiB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4yIjiB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4yIjiB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4yIjiB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4yIjiB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4yIjiB .mbr-section-title {
  color: #093790;
}
.cid-uPVw4yIjiB .mbr-text,
.cid-uPVw4yIjiB .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4yIjiB .item-title {
  text-align: center;
}
.cid-uPVw4yIjiB .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4yIjiB .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4yIjiB .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4z0zcj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4z0zcj .item:focus,
.cid-uPVw4z0zcj span:focus {
  outline: none;
}
.cid-uPVw4z0zcj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4z0zcj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4z0zcj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4z0zcj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4z0zcj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4z0zcj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4z0zcj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4z0zcj .mbr-section-title {
  color: #093790;
}
.cid-uPVw4z0zcj .mbr-text,
.cid-uPVw4z0zcj .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4z0zcj .item-title {
  text-align: center;
}
.cid-uPVw4z0zcj .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4z0zcj .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4z0zcj .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4zlD2r {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4zlD2r .item:focus,
.cid-uPVw4zlD2r span:focus {
  outline: none;
}
.cid-uPVw4zlD2r .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4zlD2r .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4zlD2r .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4zlD2r .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4zlD2r .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4zlD2r .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4zlD2r .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4zlD2r .mbr-section-title {
  color: #093790;
}
.cid-uPVw4zlD2r .mbr-text,
.cid-uPVw4zlD2r .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4zlD2r .item-title {
  text-align: center;
}
.cid-uPVw4zlD2r .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4zlD2r .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4zlD2r .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4zNs1j {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4zNs1j .item:focus,
.cid-uPVw4zNs1j span:focus {
  outline: none;
}
.cid-uPVw4zNs1j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4zNs1j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4zNs1j .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4zNs1j .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4zNs1j .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4zNs1j .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4zNs1j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4zNs1j .mbr-section-title {
  color: #093790;
}
.cid-uPVw4zNs1j .mbr-text,
.cid-uPVw4zNs1j .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4zNs1j .item-title {
  text-align: center;
}
.cid-uPVw4zNs1j .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4zNs1j .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4zNs1j .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4A1QgL {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4A1QgL .item:focus,
.cid-uPVw4A1QgL span:focus {
  outline: none;
}
.cid-uPVw4A1QgL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4A1QgL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4A1QgL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4A1QgL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4A1QgL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4A1QgL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4A1QgL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4A1QgL .mbr-section-title {
  color: #093790;
}
.cid-uPVw4A1QgL .mbr-text,
.cid-uPVw4A1QgL .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4A1QgL .item-title {
  text-align: center;
}
.cid-uPVw4A1QgL .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4A1QgL .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4A1QgL .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4Am3Pi {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4Am3Pi .item:focus,
.cid-uPVw4Am3Pi span:focus {
  outline: none;
}
.cid-uPVw4Am3Pi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4Am3Pi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4Am3Pi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4Am3Pi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4Am3Pi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4Am3Pi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4Am3Pi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4Am3Pi .mbr-section-title {
  color: #093790;
}
.cid-uPVw4Am3Pi .mbr-text,
.cid-uPVw4Am3Pi .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4Am3Pi .item-title {
  text-align: center;
}
.cid-uPVw4Am3Pi .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4Am3Pi .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4Am3Pi .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uUlWKVyADF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUlWKVyADF .item:focus,
.cid-uUlWKVyADF span:focus {
  outline: none;
}
.cid-uUlWKVyADF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uUlWKVyADF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUlWKVyADF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uUlWKVyADF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUlWKVyADF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uUlWKVyADF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uUlWKVyADF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUlWKVyADF .mbr-section-title {
  color: #093790;
}
.cid-uUlWKVyADF .mbr-text,
.cid-uUlWKVyADF .mbr-section-btn {
  text-align: center;
}
.cid-uUlWKVyADF .item-title {
  text-align: center;
}
.cid-uUlWKVyADF .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uUlWKVyADF .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uUlWKVyADF .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4AVlLm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4AVlLm .item:focus,
.cid-uPVw4AVlLm span:focus {
  outline: none;
}
.cid-uPVw4AVlLm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4AVlLm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4AVlLm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4AVlLm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4AVlLm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4AVlLm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4AVlLm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4AVlLm .mbr-section-title {
  color: #093790;
}
.cid-uPVw4AVlLm .mbr-text,
.cid-uPVw4AVlLm .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4AVlLm .item-title {
  text-align: center;
}
.cid-uPVw4AVlLm .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4AVlLm .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4AVlLm .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4BaaV9 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4BaaV9 .item:focus,
.cid-uPVw4BaaV9 span:focus {
  outline: none;
}
.cid-uPVw4BaaV9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4BaaV9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4BaaV9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4BaaV9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4BaaV9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4BaaV9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4BaaV9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4BaaV9 .mbr-section-title {
  color: #093790;
}
.cid-uPVw4BaaV9 .mbr-text,
.cid-uPVw4BaaV9 .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4BaaV9 .item-title {
  text-align: center;
}
.cid-uPVw4BaaV9 .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4BaaV9 .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4BaaV9 .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4BotdV {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4BotdV .item:focus,
.cid-uPVw4BotdV span:focus {
  outline: none;
}
.cid-uPVw4BotdV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4BotdV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4BotdV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4BotdV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4BotdV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4BotdV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4BotdV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4BotdV .mbr-section-title {
  color: #093790;
}
.cid-uPVw4BotdV .mbr-text,
.cid-uPVw4BotdV .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4BotdV .item-title {
  text-align: center;
}
.cid-uPVw4BotdV .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4BotdV .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4BotdV .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVw4BCflK {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPVw4BCflK .item:focus,
.cid-uPVw4BCflK span:focus {
  outline: none;
}
.cid-uPVw4BCflK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVw4BCflK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVw4BCflK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVw4BCflK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVw4BCflK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVw4BCflK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVw4BCflK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVw4BCflK .mbr-section-title {
  color: #093790;
}
.cid-uPVw4BCflK .mbr-text,
.cid-uPVw4BCflK .mbr-section-btn {
  text-align: center;
}
.cid-uPVw4BCflK .item-title {
  text-align: center;
}
.cid-uPVw4BCflK .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uPVw4BCflK .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uPVw4BCflK .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uPVJCP13cm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPVJCP13cm img,
.cid-uPVJCP13cm .item-img {
  width: 100%;
}
.cid-uPVJCP13cm .item:focus,
.cid-uPVJCP13cm span:focus {
  outline: none;
}
.cid-uPVJCP13cm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPVJCP13cm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPVJCP13cm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uPVJCP13cm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVJCP13cm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uPVJCP13cm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uPVJCP13cm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPVJCP13cm .mbr-section-title {
  color: #09529f;
}
.cid-uPVJCP13cm .mbr-text,
.cid-uPVJCP13cm .mbr-section-btn {
  text-align: left;
}
.cid-uPVJCP13cm .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uPVJCP13cm .item-subtitle {
  text-align: left;
}
.cid-uPVw4C9Q52 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-uPVw4C9Q52 .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uPVw4C9Q52 .social-row .soc-item {
  margin: 8px;
}
.cid-uPVw4C9Q52 .social-row .soc-item a:hover .mbr-iconfont,
.cid-uPVw4C9Q52 .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uPVw4C9Q52 .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-uPVw4C9Q52 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uPVw4C9Q52 .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uPVw4C9Q52 .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uPVw4C9Q52 .header-menu li p {
  margin: 0;
}
.cid-uPVw4C9Q52 .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uPVw4C9Q52 .mbr-section-title {
  color: #ffffff;
}
.cid-uPVw4C9Q52 .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPVw4C9Q52 .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-uPVw4C9Q52 .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-uPVw4C9Q52 .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-uPVw4C9Q52 .image-container img {
    max-width: 20%;
  }
}
.cid-uQnlNa4FiA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQnlNa4FiA .carousel-indicators {
  background: #09529f;
}
.cid-uQnlNa4FiA nav.navbar {
  position: fixed;
}
.cid-uQnlNa4FiA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQnlNa4FiA .dropdown-menu {
  padding: 0;
}
.cid-uQnlNa4FiA .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uQnlNa4FiA .dropdown-item:hover,
.cid-uQnlNa4FiA .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uQnlNa4FiA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uQnlNa4FiA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQnlNa4FiA .nav-link {
  position: relative;
}
.cid-uQnlNa4FiA .container {
  display: flex;
  margin: auto;
}
.cid-uQnlNa4FiA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uQnlNa4FiA .navbar-caption {
  padding-right: 4rem;
}
.cid-uQnlNa4FiA .dropdown-menu,
.cid-uQnlNa4FiA .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uQnlNa4FiA .nav-item:focus,
.cid-uQnlNa4FiA .nav-link:focus {
  outline: none;
}
.cid-uQnlNa4FiA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQnlNa4FiA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQnlNa4FiA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQnlNa4FiA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQnlNa4FiA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQnlNa4FiA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQnlNa4FiA .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uQnlNa4FiA .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uQnlNa4FiA .navbar.opened {
  transition: all .3s;
}
.cid-uQnlNa4FiA .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uQnlNa4FiA .navbar .navbar-logo img {
  width: auto;
}
.cid-uQnlNa4FiA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQnlNa4FiA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQnlNa4FiA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQnlNa4FiA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uQnlNa4FiA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQnlNa4FiA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQnlNa4FiA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uQnlNa4FiA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQnlNa4FiA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uQnlNa4FiA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uQnlNa4FiA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQnlNa4FiA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQnlNa4FiA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQnlNa4FiA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQnlNa4FiA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uQnlNa4FiA .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uQnlNa4FiA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQnlNa4FiA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQnlNa4FiA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQnlNa4FiA .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uQnlNa4FiA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uQnlNa4FiA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQnlNa4FiA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQnlNa4FiA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQnlNa4FiA .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQnlNa4FiA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQnlNa4FiA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQnlNa4FiA .dropdown-item.active,
.cid-uQnlNa4FiA .dropdown-item:active {
  background-color: transparent;
}
.cid-uQnlNa4FiA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQnlNa4FiA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQnlNa4FiA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQnlNa4FiA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uQnlNa4FiA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQnlNa4FiA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQnlNa4FiA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQnlNa4FiA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQnlNa4FiA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uQnlNa4FiA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uQnlNa4FiA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQnlNa4FiA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQnlNa4FiA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQnlNa4FiA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQnlNa4FiA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQnlNa4FiA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uQnlNa4FiA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uQnlNa4FiA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQnlNa4FiA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uQnlNa4FiA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQnlNa4FiA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQnlNa4FiA .navbar {
    height: 77px;
  }
  .cid-uQnlNa4FiA .navbar.opened {
    height: auto;
  }
  .cid-uQnlNa4FiA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uQnlNa4FiA .navbar-collapse {
    display: right;
  }
}
.cid-uQnlNa4FiA H3 {
  text-align: right;
}
.cid-uQnlNauWBV {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/banner-salud-mental-fp-1920x542.jpg");
}
.cid-uQnlNauWBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQnlNauWBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQnlNauWBV H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uQnlNauWBV .mbr-text,
.cid-uQnlNauWBV .mbr-section-btn {
  text-align: center;
}
.cid-uQnlNaK8Rz {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uQnlNaK8Rz .item:focus,
.cid-uQnlNaK8Rz span:focus {
  outline: none;
}
.cid-uQnlNaK8Rz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uQnlNaK8Rz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQnlNaK8Rz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uQnlNaK8Rz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQnlNaK8Rz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uQnlNaK8Rz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uQnlNaK8Rz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQnlNaK8Rz .mbr-section-title {
  color: #093790;
}
.cid-uQnlNaK8Rz .mbr-text,
.cid-uQnlNaK8Rz .mbr-section-btn {
  text-align: center;
}
.cid-uQnlNaK8Rz .item-title {
  text-align: center;
}
.cid-uQnlNaK8Rz .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uQnlNaK8Rz .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uQnlNaK8Rz .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uQnmbipBv7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQnmbipBv7 img,
.cid-uQnmbipBv7 .item-img {
  width: 100%;
}
.cid-uQnmbipBv7 .item:focus,
.cid-uQnmbipBv7 span:focus {
  outline: none;
}
.cid-uQnmbipBv7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uQnmbipBv7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQnmbipBv7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uQnmbipBv7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQnmbipBv7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uQnmbipBv7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uQnmbipBv7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQnmbipBv7 .mbr-section-title {
  color: #09529f;
}
.cid-uQnmbipBv7 .mbr-text,
.cid-uQnmbipBv7 .mbr-section-btn {
  text-align: left;
}
.cid-uQnmbipBv7 .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uQnmbipBv7 .item-subtitle {
  text-align: left;
}
.cid-uQnlNcf7Kn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-uQnlNcf7Kn .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uQnlNcf7Kn .social-row .soc-item {
  margin: 8px;
}
.cid-uQnlNcf7Kn .social-row .soc-item a:hover .mbr-iconfont,
.cid-uQnlNcf7Kn .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uQnlNcf7Kn .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-uQnlNcf7Kn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uQnlNcf7Kn .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uQnlNcf7Kn .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uQnlNcf7Kn .header-menu li p {
  margin: 0;
}
.cid-uQnlNcf7Kn .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uQnlNcf7Kn .mbr-section-title {
  color: #ffffff;
}
.cid-uQnlNcf7Kn .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQnlNcf7Kn .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-uQnlNcf7Kn .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-uQnlNcf7Kn .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-uQnlNcf7Kn .image-container img {
    max-width: 20%;
  }
}
.cid-uT1NBFuPq3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uT1NBFuPq3 .carousel-indicators {
  background: #09529f;
}
.cid-uT1NBFuPq3 nav.navbar {
  position: fixed;
}
.cid-uT1NBFuPq3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT1NBFuPq3 .dropdown-menu {
  padding: 0;
}
.cid-uT1NBFuPq3 .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uT1NBFuPq3 .dropdown-item:hover,
.cid-uT1NBFuPq3 .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uT1NBFuPq3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uT1NBFuPq3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uT1NBFuPq3 .nav-link {
  position: relative;
}
.cid-uT1NBFuPq3 .container {
  display: flex;
  margin: auto;
}
.cid-uT1NBFuPq3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uT1NBFuPq3 .navbar-caption {
  padding-right: 4rem;
}
.cid-uT1NBFuPq3 .dropdown-menu,
.cid-uT1NBFuPq3 .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uT1NBFuPq3 .nav-item:focus,
.cid-uT1NBFuPq3 .nav-link:focus {
  outline: none;
}
.cid-uT1NBFuPq3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT1NBFuPq3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT1NBFuPq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uT1NBFuPq3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT1NBFuPq3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT1NBFuPq3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT1NBFuPq3 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uT1NBFuPq3 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uT1NBFuPq3 .navbar.opened {
  transition: all .3s;
}
.cid-uT1NBFuPq3 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uT1NBFuPq3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uT1NBFuPq3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uT1NBFuPq3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT1NBFuPq3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT1NBFuPq3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uT1NBFuPq3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT1NBFuPq3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT1NBFuPq3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uT1NBFuPq3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT1NBFuPq3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uT1NBFuPq3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uT1NBFuPq3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT1NBFuPq3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT1NBFuPq3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT1NBFuPq3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT1NBFuPq3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uT1NBFuPq3 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uT1NBFuPq3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uT1NBFuPq3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT1NBFuPq3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uT1NBFuPq3 .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uT1NBFuPq3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uT1NBFuPq3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uT1NBFuPq3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uT1NBFuPq3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uT1NBFuPq3 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT1NBFuPq3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT1NBFuPq3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT1NBFuPq3 .dropdown-item.active,
.cid-uT1NBFuPq3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uT1NBFuPq3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT1NBFuPq3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT1NBFuPq3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT1NBFuPq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uT1NBFuPq3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uT1NBFuPq3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uT1NBFuPq3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT1NBFuPq3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uT1NBFuPq3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uT1NBFuPq3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uT1NBFuPq3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uT1NBFuPq3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uT1NBFuPq3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uT1NBFuPq3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uT1NBFuPq3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uT1NBFuPq3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uT1NBFuPq3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uT1NBFuPq3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uT1NBFuPq3 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uT1NBFuPq3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT1NBFuPq3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT1NBFuPq3 .navbar {
    height: 77px;
  }
  .cid-uT1NBFuPq3 .navbar.opened {
    height: auto;
  }
  .cid-uT1NBFuPq3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uT1NBFuPq3 .navbar-collapse {
    display: right;
  }
}
.cid-uT1NBFuPq3 H3 {
  text-align: right;
}
.cid-uT1NBFOeyx {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/banner-seguridad-del-paciente-fp-2000x564.jpg");
}
.cid-uT1NBFOeyx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT1NBFOeyx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT1NBFOeyx H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uT1NBFOeyx .mbr-text,
.cid-uT1NBFOeyx .mbr-section-btn {
  text-align: center;
}
.cid-uT1NBFZ01M {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uT1NBFZ01M .item:focus,
.cid-uT1NBFZ01M span:focus {
  outline: none;
}
.cid-uT1NBFZ01M .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uT1NBFZ01M .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uT1NBFZ01M .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uT1NBFZ01M .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uT1NBFZ01M .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uT1NBFZ01M .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uT1NBFZ01M .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uT1NBFZ01M .mbr-section-title {
  color: #093790;
}
.cid-uT1NBFZ01M .mbr-text,
.cid-uT1NBFZ01M .mbr-section-btn {
  text-align: center;
}
.cid-uT1NBFZ01M .item-title {
  text-align: center;
}
.cid-uT1NBFZ01M .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uT1NBFZ01M .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uT1NBFZ01M .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uT1NBGmSJr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uT1NBGmSJr img,
.cid-uT1NBGmSJr .item-img {
  width: 100%;
}
.cid-uT1NBGmSJr .item:focus,
.cid-uT1NBGmSJr span:focus {
  outline: none;
}
.cid-uT1NBGmSJr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uT1NBGmSJr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uT1NBGmSJr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uT1NBGmSJr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uT1NBGmSJr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uT1NBGmSJr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uT1NBGmSJr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uT1NBGmSJr .mbr-section-title {
  color: #09529f;
}
.cid-uT1NBGmSJr .mbr-text,
.cid-uT1NBGmSJr .mbr-section-btn {
  text-align: left;
}
.cid-uT1NBGmSJr .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uT1NBGmSJr .item-subtitle {
  text-align: left;
}
.cid-uT1NBGAcSv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-uT1NBGAcSv .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uT1NBGAcSv .social-row .soc-item {
  margin: 8px;
}
.cid-uT1NBGAcSv .social-row .soc-item a:hover .mbr-iconfont,
.cid-uT1NBGAcSv .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uT1NBGAcSv .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-uT1NBGAcSv .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uT1NBGAcSv .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uT1NBGAcSv .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uT1NBGAcSv .header-menu li p {
  margin: 0;
}
.cid-uT1NBGAcSv .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uT1NBGAcSv .mbr-section-title {
  color: #ffffff;
}
.cid-uT1NBGAcSv .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uT1NBGAcSv .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-uT1NBGAcSv .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-uT1NBGAcSv .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-uT1NBGAcSv .image-container img {
    max-width: 20%;
  }
}
.cid-uT2jq0gefq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uT2jq0gefq .carousel-indicators {
  background: #09529f;
}
.cid-uT2jq0gefq nav.navbar {
  position: fixed;
}
.cid-uT2jq0gefq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT2jq0gefq .dropdown-menu {
  padding: 0;
}
.cid-uT2jq0gefq .dropdown-item {
  border-bottom: 1px solid #09529f;
}
.cid-uT2jq0gefq .dropdown-item:hover,
.cid-uT2jq0gefq .dropdown-item:focus {
  background: #09529f !important;
  color: white !important;
}
.cid-uT2jq0gefq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uT2jq0gefq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uT2jq0gefq .nav-link {
  position: relative;
}
.cid-uT2jq0gefq .container {
  display: flex;
  margin: auto;
}
.cid-uT2jq0gefq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uT2jq0gefq .navbar-caption {
  padding-right: 4rem;
}
.cid-uT2jq0gefq .dropdown-menu,
.cid-uT2jq0gefq .navbar.opened {
  background: #6bc8f0 !important;
}
.cid-uT2jq0gefq .nav-item:focus,
.cid-uT2jq0gefq .nav-link:focus {
  outline: none;
}
.cid-uT2jq0gefq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT2jq0gefq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT2jq0gefq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uT2jq0gefq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT2jq0gefq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT2jq0gefq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT2jq0gefq .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #6bc8f0;
}
.cid-uT2jq0gefq .navbar:not(.navbar-short) {
  border-bottom: 1px solid #09529f;
}
.cid-uT2jq0gefq .navbar.opened {
  transition: all .3s;
}
.cid-uT2jq0gefq .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uT2jq0gefq .navbar .navbar-logo img {
  width: auto;
}
.cid-uT2jq0gefq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uT2jq0gefq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT2jq0gefq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT2jq0gefq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uT2jq0gefq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT2jq0gefq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT2jq0gefq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uT2jq0gefq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT2jq0gefq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uT2jq0gefq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uT2jq0gefq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT2jq0gefq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT2jq0gefq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT2jq0gefq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT2jq0gefq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uT2jq0gefq .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-uT2jq0gefq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uT2jq0gefq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT2jq0gefq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uT2jq0gefq .navbar .navbar-toggler {
    flex-basis: auto;
    color: white;
  }
  .cid-uT2jq0gefq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uT2jq0gefq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uT2jq0gefq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uT2jq0gefq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uT2jq0gefq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT2jq0gefq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT2jq0gefq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT2jq0gefq .dropdown-item.active,
.cid-uT2jq0gefq .dropdown-item:active {
  background-color: transparent;
}
.cid-uT2jq0gefq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT2jq0gefq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT2jq0gefq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT2jq0gefq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6bc8f0;
}
.cid-uT2jq0gefq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uT2jq0gefq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uT2jq0gefq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT2jq0gefq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uT2jq0gefq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uT2jq0gefq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-uT2jq0gefq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uT2jq0gefq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uT2jq0gefq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uT2jq0gefq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uT2jq0gefq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uT2jq0gefq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uT2jq0gefq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uT2jq0gefq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uT2jq0gefq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uT2jq0gefq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT2jq0gefq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT2jq0gefq .navbar {
    height: 77px;
  }
  .cid-uT2jq0gefq .navbar.opened {
    height: auto;
  }
  .cid-uT2jq0gefq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
  .cid-uT2jq0gefq .navbar-collapse {
    display: right;
  }
}
.cid-uT2jq0gefq H3 {
  text-align: right;
}
.cid-uT2jq0Gstb {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/banner-seguridad-del-paciente-fi-2000x564.jpg");
}
.cid-uT2jq0Gstb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uT2jq0Gstb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uT2jq0Gstb H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uT2jq0Gstb .mbr-text,
.cid-uT2jq0Gstb .mbr-section-btn {
  text-align: center;
}
.cid-uT2jq0WN5m {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uT2jq0WN5m .item:focus,
.cid-uT2jq0WN5m span:focus {
  outline: none;
}
.cid-uT2jq0WN5m .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uT2jq0WN5m .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uT2jq0WN5m .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uT2jq0WN5m .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uT2jq0WN5m .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uT2jq0WN5m .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uT2jq0WN5m .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uT2jq0WN5m .mbr-section-title {
  color: #093790;
}
.cid-uT2jq0WN5m .mbr-text,
.cid-uT2jq0WN5m .mbr-section-btn {
  text-align: center;
}
.cid-uT2jq0WN5m .item-title {
  text-align: center;
}
.cid-uT2jq0WN5m .item-subtitle {
  text-align: center;
  color: #232323;
}
@media (max-width: 767px) {
  .cid-uT2jq0WN5m .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .cid-uT2jq0WN5m .item {
    width: 50%;
    padding: 0.5rem;
  }
}
.cid-uT2jq1cZ9R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uT2jq1cZ9R img,
.cid-uT2jq1cZ9R .item-img {
  width: 100%;
}
.cid-uT2jq1cZ9R .item:focus,
.cid-uT2jq1cZ9R span:focus {
  outline: none;
}
.cid-uT2jq1cZ9R .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uT2jq1cZ9R .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uT2jq1cZ9R .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uT2jq1cZ9R .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uT2jq1cZ9R .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uT2jq1cZ9R .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uT2jq1cZ9R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uT2jq1cZ9R .mbr-section-title {
  color: #09529f;
}
.cid-uT2jq1cZ9R .mbr-text,
.cid-uT2jq1cZ9R .mbr-section-btn {
  text-align: left;
}
.cid-uT2jq1cZ9R .item-title {
  text-align: center;
  color: #09529f;
}
.cid-uT2jq1cZ9R .item-subtitle {
  text-align: left;
}
.cid-uT2jq1sD1n {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #6bc8f0;
}
.cid-uT2jq1sD1n .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uT2jq1sD1n .social-row .soc-item {
  margin: 8px;
}
.cid-uT2jq1sD1n .social-row .soc-item a:hover .mbr-iconfont,
.cid-uT2jq1sD1n .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-uT2jq1sD1n .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #ffffff;
  color: #5cd3f3;
  transition: all 0.3s ease-in-out;
}
.cid-uT2jq1sD1n .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uT2jq1sD1n .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uT2jq1sD1n .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uT2jq1sD1n .header-menu li p {
  margin: 0;
}
.cid-uT2jq1sD1n .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uT2jq1sD1n .mbr-section-title {
  color: #ffffff;
}
.cid-uT2jq1sD1n .image-container {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uT2jq1sD1n .image-container img {
  max-width: 80%;
  height: auto;
  border-radius: 30px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .cid-uT2jq1sD1n .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .cid-uT2jq1sD1n .image-container img {
    max-width: 20%;
  }
}
@media (min-width: 992px) {
  .cid-uT2jq1sD1n .image-container img {
    max-width: 20%;
  }
}
