.btn {
  border-radius: 80px;
}
body {
  font-family: 'Roboto Condensed', sans-serif;
}
.display-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.375rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.71875rem;
}


.display-8 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  line-height: 2;
}
.display-8 > .mbr-iconfont {
  font-size: 1.rem;
}





/* ---- 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.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
	
	
	  .display-8 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
}








/* Buttons */
.btn {
  padding: 1.2rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #00a851 !important;
}
.bg-success {
  background-color: #eff0f6 !important;
}
.bg-info {
  background-color: #3f69ff !important;
}
.bg-warning {
  background-color: #fedb01 !important;
}
.bg-danger {
  background-color: #3e4095 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00a851 !important;
  border-color: #00a851 !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: #005127 !important;
  border-color: #005127 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #005127 !important;
  border-color: #005127 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3e4199 !important;
  border-color: #3e4199 !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: #25275b !important;
  border-color: #25275b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #25275b !important;
  border-color: #25275b !important;
}
.btn-info,
.btn-info:active {
  background-color: #3f69ff !important;
  border-color: #3f69ff !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: #0033e7 !important;
  border-color: #0033e7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0033e7 !important;
  border-color: #0033e7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #eff0f6 !important;
  border-color: #eff0f6 !important;
  color: #535c93 !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: #b8bcd7 !important;
  border-color: #b8bcd7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #535c93 !important;
  background-color: #b8bcd7 !important;
  border-color: #b8bcd7 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d03438 !important;
  border-color: #d03438 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-sol,
.btn-sol:active {
  background-color: #ffeb3b !important;
  border-color: #ffeb3b !important;
  color: #8c8c95 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-sol:hover,
.btn-sol:focus,
.btn-sol.focus,
.btn-sol.active {
  color: #ffffff !important;
  background-color: #e7d431 !important;
  border-color: #e7d431 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-sol.disabled,
.btn-sol:disabled {
  color: #535c93 !important;
  background-color: #e7d431 !important;
  border-color: #e7d431 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d03438 !important;
  border-color: #d03438 !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: #a51519 !important;
  border-color: #a51519 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #a89101 !important;
  border-color: #a89101 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3e4095 !important;
  border-color: #3e4095 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #252658 !important;
  border-color: #252658 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #252658 !important;
  border-color: #252658 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00a851;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #005127 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00a851 !important;
  border-color: #00a851 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3e4199;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #25275b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e4199 !important;
  border-color: #3e4199 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3f69ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0033e7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3f69ff !important;
  border-color: #3f69ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eff0f6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b8bcd7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #535c93 !important;
  background-color: #eff0f6 !important;
  border-color: #eff0f6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fedb01;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a89101 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #fedb01 !important;
  border-color: #fedb01 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3e4095;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #252658 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3e4095 !important;
  border-color: #3e4095 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #00a851 !important;
}
.text-secondary {
  color: #3e4199 !important;
}
.text-success {
  color: #eff0f6 !important;
}
.text-info {
  color: #3f69ff !important;
}
.text-warning {
  color: #fedb01 !important;
}
.text-danger {
  color: #3e4095 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3f69ff !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3f69ff !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3f69ff !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #002fd8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #3f69ff !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3f69ff !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #3f69ff !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #3f69ff !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.3s;
  /*position: relative;
        background-image: linear-gradient(currentColor 50%, currentColor 50%);
        background-size: 10000px 2px;
        background-repeat: no-repeat;
        background-position: 0 1.2em;*/
  text-decoration: underline;
}
.nav-tabs .nav-link.active {
  color: #00a851;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3f69ff;
}
.alert-warning {
  background-color: #fedb01;
}
.alert-danger {
  background-color: #3e4095;
}
.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: #00a851;
  border-color: #00a851;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #28ff90;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #8688cd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #00a851 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #00a851;
}
/* 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: #00a851;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00a851;
}
.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: #00a851;
  border-bottom-color: #00a851;
}
.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: #00a851 !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: #3e4199 !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='%2300a851' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1220px;
}
a {
  transition: color 300ms ease !important;
  font-weight: 400 !important;
}
a.text-primary:hover {
  color: #3f69ff !important;
}
a.text-secondary:hover {
  color: #3f69ff !important;
}
a.text-success:hover {
  color: #3f69ff !important;
}
a.text-info:hover {
  color: #3f69ff !important;
}
a.text-warning:hover {
  color: #3f69ff !important;
}
a.text-danger:hover {
  color: #3f69ff !important;
}
a.text-white:hover {
  color: #3f69ff !important;
}
a.text-black:hover {
  color: #3f69ff !important;
}
.btn.btn-primary:hover {
  background-color: #14142b !important;
  border-color: #14142b !important;
  color: #ffffff !important;
}
.btn.btn-secondary {
  background: transparent !important;
  border: 1px solid #e2e3e9 !important;
  color: #14142b !important;
}
.btn.btn-secondary:hover {
  background: #e2e3e9 !important;
  color: #14142b !important;
}
.btn,
.btn-lg {
  box-shadow: none !important;
}
body {
  line-height: 1.667em;
  line-height: 30px;
}
.btn,
.btn-lg {
  margin-top: 0;
  margin-bottom: 0;
}
span.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
span.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn {
  line-height: 0px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
button {
  background-color: transparent;
  border-color: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.cid-sLnAdR3yuN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLnAdR3yuN nav.navbar {
  position: fixed;
}
.cid-sLnAdR3yuN .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-sLnAdR3yuN .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sLnAdR3yuN .dropdown-item:hover,
.cid-sLnAdR3yuN .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-sLnAdR3yuN .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-sLnAdR3yuN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLnAdR3yuN .nav-link {
  position: relative;
  padding: 0;
}
.cid-sLnAdR3yuN .container {
  display: flex;
  margin: auto;
}
.cid-sLnAdR3yuN .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLnAdR3yuN .dropdown-menu,
.cid-sLnAdR3yuN .navbar.opened {
  background: #ffffff !important;
}
.cid-sLnAdR3yuN .nav-item:focus,
.cid-sLnAdR3yuN .nav-link:focus {
  outline: none;
}
.cid-sLnAdR3yuN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLnAdR3yuN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLnAdR3yuN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLnAdR3yuN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLnAdR3yuN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLnAdR3yuN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLnAdR3yuN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sLnAdR3yuN .navbar.opened {
  transition: all 0.3s;
}
.cid-sLnAdR3yuN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLnAdR3yuN .navbar .navbar-logo img {
  width: auto;
}
.cid-sLnAdR3yuN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLnAdR3yuN .navbar.collapsed {
  justify-content: center;
}
.cid-sLnAdR3yuN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLnAdR3yuN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLnAdR3yuN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sLnAdR3yuN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLnAdR3yuN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLnAdR3yuN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sLnAdR3yuN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLnAdR3yuN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLnAdR3yuN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLnAdR3yuN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLnAdR3yuN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLnAdR3yuN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLnAdR3yuN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLnAdR3yuN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sLnAdR3yuN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLnAdR3yuN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLnAdR3yuN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLnAdR3yuN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLnAdR3yuN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLnAdR3yuN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLnAdR3yuN .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLnAdR3yuN .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-sLnAdR3yuN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLnAdR3yuN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLnAdR3yuN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLnAdR3yuN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLnAdR3yuN .dropdown-item.active,
.cid-sLnAdR3yuN .dropdown-item:active {
  background-color: transparent;
}
.cid-sLnAdR3yuN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLnAdR3yuN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLnAdR3yuN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLnAdR3yuN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sLnAdR3yuN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLnAdR3yuN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLnAdR3yuN ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sLnAdR3yuN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLnAdR3yuN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLnAdR3yuN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-sLnAdR3yuN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLnAdR3yuN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnAdR3yuN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnAdR3yuN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLnAdR3yuN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnAdR3yuN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLnAdR3yuN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLnAdR3yuN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnAdR3yuN .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-sLnAdR3yuN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLnAdR3yuN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLnAdR3yuN .navbar {
    height: 70px;
  }
  .cid-sLnAdR3yuN .navbar.opened {
    height: auto;
  }
  .cid-sLnAdR3yuN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sLnAdR3yuN a {
  display: inline;
}
.cid-sLnAdR3yuN img {
  display: inline;
  padding-right: 10px;
}
.cid-sLnAdR3yuN .dropdown-toggle:after {
  display: none;
}
.cid-sLnAdR3yuN .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sLnAdR3yuN .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-sLnAdR3yuN .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sLnAdR3yuN .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sLnAdR3yuN .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sLnAdR3yuN .nav-item {
  margin-right: 32px;
}
.cid-sLnAdR3yuN .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sLnAdR3yuN ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sLnAdR3yuN .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sLnAdR3yuN .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}

.cid-sLnAdR3yuN .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sLnAdR3yuN .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sLnAdR3yuN .btn {
  padding: 0.5rem 2rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-sLnAdR3yuN .btn {
  border-radius: 1000px !important;
}
.cid-sLnAdR3yuN .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sLnAdR3yuN .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sLnAdR3yuN .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sLnAdR3yuN .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sLnAdR3yuN .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-sLnAdR3yuN .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sLnAdR3yuN .top {
    margin-top: 25px;
  }
}
.cid-sLnAdR3yuN .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-sLnAdR3yuN .container,
  .cid-sLnAdR3yuN .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLnAdR3yuN li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sLnAdR3yuN ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sLnAdR3yuN .icons-menu {
    min-width: initial !important;
  }
  .cid-sLnAdR3yuN a.btn {
    margin-top: 10px;
  }
}
.cid-sLnAdR3yuN a.btn > span {
  margin-left: 0.5rem;
}
.cid-tNM1tfRVwf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNM1tfRVwf .carousel {
  height: 500px;
}
.cid-tNM1tfRVwf .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	
}
.cid-tNM1tfRVwf .carousel-item,
.cid-tNM1tfRVwf .carousel-inner {
  height: 100%;
}
.cid-tNM1tfRVwf .carousel-caption {
  bottom: 20%;
}
.cid-tNM1tfRVwf .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tNM1tfRVwf .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tNM1tfRVwf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tNM1tfRVwf .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tNM1tfRVwf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tNM1tfRVwf .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tNM1tfRVwf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tNM1tfRVwf .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tNM1tfRVwf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNM1tfRVwf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNM1tfRVwf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNM1tfRVwf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tNM1tfRVwf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tNM1tfRVwf .carousel-indicators li.active,
.cid-tNM1tfRVwf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNM1tfRVwf .carousel-indicators li::after,
.cid-tNM1tfRVwf .carousel-indicators li::before {
  content: none;
}
.cid-tNM1tfRVwf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNM1tfRVwf .carousel-indicators {
    display: none !important;
  }
}
.cid-tNM1tfRVwf H5 {
  color: #ffffff;
}



.cid-tMgZTZrFLk {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMgZTZrFLk .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMgZTZrFLk .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMgZTZrFLk .button-align {
  text-align: center;
}
.cid-tMgZTZrFLk .margin {
  margin-right: 14px;
}
.cid-tMgZTZrFLk .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMgZTZrFLk .margin {
    margin-right: 0px;
  }
  .cid-tMgZTZrFLk .b {
    margin-bottom: 20px;
  }
}
.cid-tMgZTZrFLk .btn {
  margin-top: 20px;
}
.cid-tMgZTZrFLk a.btn > span {
  margin-left: 0.5rem;
}














.cid-tMgZTZrFLk1 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMgZTZrFLk1 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMgZTZrFLk1 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMgZTZrFLk1 .button-align {
  text-align: center;
}
.cid-tMgZTZrFLk1 .margin {
  margin-right: 14px;
}
.cid-tMgZTZrFLk1 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMgZTZrFLk1 .margin {
    margin-right: 0px;
  }
  .cid-tMgZTZrFLk1 .b {
    margin-bottom: 20px;
  }
}
.cid-tMgZTZrFLk1 .btn {
  margin-top: 20px;
}
.cid-tMgZTZrFLk1 a.btn > span {
  margin-left: 0.5rem;
}





.cid-tMgHlqyTXo {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tMgHlqyTXo .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMgHlqyTXo .wrap-img {
  border-bottom: 1px solid #e2e3e9;
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 192px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMgHlqyTXo .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMgHlqyTXo .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMgHlqyTXo .shadow:hover .mbr-iconfont,
.cid-tMgHlqyTXo .shadow:hover .number,
.cid-tMgHlqyTXo .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMgHlqyTXo .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMgHlqyTXo .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMgHlqyTXo .card-title {
  color: #3e4095;
  margin-bottom: 6px;
  text-align: center;
  transition: 0.35s;
}
.cid-tMgHlqyTXo .title-block {
  margin-bottom: 56px;
}
.cid-tMgHlqyTXo .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-tMgHlqyTXo H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMgHlqyTXo .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 20px 32px 35px;
}
.cid-tMgHlqyTXo .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tMgHlqyTXo .link-title {
  display: inline-block;
}
.cid-tMgHlqyTXo .episode {
  color: #ffffff;
}
.cid-tMgHlqyTXo .img-title {
  color: #ffffff;
}
.cid-tMgHlqyTXo .button-align {
  margin-top: 10px;
  text-align: center;
	line-height: 50px;
}
.cid-tMgHlqyTXo .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tMgHlqyTXo .mbr-section-title {
  color: #8c8c95;
}
@media (max-width: 860px) {
  .cid-tMgHlqyTXo .title-block {
    flex-direction: column;
  }
  .cid-tMgHlqyTXo .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
}
.cid-tMgHlqyTXo .item.features-image {
  margin-top: 35px;
}
.cid-tMgHlqyTXo .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tMgHlqyTXo .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-tMgHlqyTXo .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tMgHlqyTXo .item.features-image:nth-child(4) {
    margin-top: 35px;
  }
  .cid-tMgHlqyTXo .item.features-image:nth-child(3) {
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tMgHlqyTXo .item.features-image:nth-child(2) {
    margin-top: 35px;
  }
}
.cid-tMgHlqyTXo .mbr-section-subtitle {
  text-align: center;
  color: #3e4095;
}
.cid-tNM2nrrVVI {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/close-up-woman-videocalling-employee-1-632x421.jpg");
}
.cid-tNM2nrrVVI .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tNM2nrrVVI .mbr-text,
.cid-tNM2nrrVVI .mbr-section-btn {
  text-align: center;
  color: #f2f3f7;
}
.cid-tMhAxNSds3 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tMhAxNSds3 .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
      max-width: 70%;
  margin: auto;
}
.cid-tMhAxNSds3 .mbr-section-title {
  text-align: center;
  color: #3e4199;
  padding-bottom: 24px;
  max-width: 752px;
  margin: auto;
}
.cid-tMhAxNSds3 .row {
  align-items: center;
  height: 100%;
}
.cid-tMhAxNSds3 .wrapper {
  margin: auto;
}
.cid-tMhx3ewMyj {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tMhx3ewMyj .mbr-section-title {
  margin-bottom: 56px;
}
.cid-tMhx3ewMyj .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMhx3ewMyj .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMhx3ewMyj .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMhx3ewMyj .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMhx3ewMyj .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMhx3ewMyj .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMhx3ewMyj .shadow:hover .mbr-iconfont,
.cid-tMhx3ewMyj .shadow:hover .number,
.cid-tMhx3ewMyj .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMhx3ewMyj .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMhx3ewMyj .card-title {
  margin-bottom: 10px;
  color: #3e4199;
}
.cid-tMhx3ewMyj .card-title span,
.cid-tMhx3ewMyj .card-title .number {
  transition: 0.35s;
}
.cid-tMhx3ewMyj .card-text {
  margin-bottom: 32px;
  color: #8c8c95;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-tMhx3ewMyj .card-wrapper {
    padding: 60px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-tMhx3ewMyj .card-wrapper {
    padding: 60px 30px 40px;
  }
}
.cid-tMhx3ewMyj H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMhx3ewMyj img {
  width: auto;
  height: 70px;
}
.cid-tMhx3ewMyj .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-tMhx3ewMyj .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tMhx3ewMyj .link-title {
  display: inline-block;
}
.cid-tMhx3ewMyj .episode {
  color: #ffffff;
}
.cid-tMhx3ewMyj .img-title {
  color: #ffffff;
}
.cid-tMhx3ewMyj .margin {
  margin-right: 14px;
}
.cid-tMhx3ewMyj .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tMhx3ewMyj .mbr-section-btn {
  width: auto;
  display: inline;
}
@media (max-width: 500px) {
  .cid-tMhx3ewMyj .button-align {
    display: flex;
    flex-direction: column;
  }
  .cid-tMhx3ewMyj .margin {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-tMhx3ewMyj .card-wrapper {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMhx3ewMyj span,
.cid-tMhx3ewMyj .number {
  transition: 0.35s;
}
.cid-tMhx3ewMyj .item.features-image {
  margin-top: 30px;
}
.cid-tMhx3ewMyj .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tMhx3ewMyj .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-tMhx3ewMyj .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tMhx3ewMyj .item.features-image:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-tMhx3ewMyj .item.features-image:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-tMhx3ewMyj .mbr-section-title,
.cid-tMhx3ewMyj .button-align {
  color: #3e4199;
}
.cid-tMgLsNqffY {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMgLsNqffY .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMgLsNqffY .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMgLsNqffY .button-align {
  text-align: center;
}
.cid-tMgLsNqffY .margin {
  margin-right: 14px;
}
.cid-tMgLsNqffY .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMgLsNqffY .margin {
    margin-right: 0px;
  }
  .cid-tMgLsNqffY .b {
    margin-bottom: 20px;
  }
}
.cid-tMgLsNqffY .btn {
  margin-top: 20px;
}
.cid-tMgLsNqffY a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnde6J1xq {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMnde6J1xq .content {
    text-align: center;
  }
  .cid-tMnde6J1xq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMnde6J1xq .logo-subtitle {
  color: #8d97ad;
}
.cid-tMnde6J1xq .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMnde6J1xq .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMnde6J1xq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMnde6J1xq .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMnde6J1xq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMnde6J1xq .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMnde6J1xq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMnde6J1xq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMnde6J1xq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMnde6J1xq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMnde6J1xq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMnde6J1xq .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMnde6J1xq .list-item {
  display: flex;
}
.cid-tMnde6J1xq .list-item .mbr-iconfont {
  padding-right: 1rem;
	padding-bottom: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMnde6J1xq ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMnde6J1xq ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMnde6J1xq ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: 1rem;
}
.cid-tMnde6J1xq .logo-subtitle,
.cid-tMnde6J1xq .media-wrap {
  color: #ffffff;
	padding-right: 40px;
	    text-align: left;
}
.cid-tMnde6J1xq .copyright > p {
  color: #ffffff;
}
.cid-tMnde6J1xq .mbr-text {
  color: #ffffff;
}
.cid-tMnde6J1xq .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-tMnde6J1xq P {
  color: #ffffff;
}
.cid-tMnde6J1xq .mbr-text UL {
  text-align: left;
}
.cid-tMnjJYK1n6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMnjJYK1n6 nav.navbar {
  position: fixed;
}
.cid-tMnjJYK1n6 .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-tMnjJYK1n6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMnjJYK1n6 .dropdown-item:hover,
.cid-tMnjJYK1n6 .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMnjJYK1n6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMnjJYK1n6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMnjJYK1n6 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMnjJYK1n6 .container {
  display: flex;
  margin: auto;
}
.cid-tMnjJYK1n6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMnjJYK1n6 .dropdown-menu,
.cid-tMnjJYK1n6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tMnjJYK1n6 .nav-item:focus,
.cid-tMnjJYK1n6 .nav-link:focus {
  outline: none;
}
.cid-tMnjJYK1n6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMnjJYK1n6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMnjJYK1n6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMnjJYK1n6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMnjJYK1n6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMnjJYK1n6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMnjJYK1n6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMnjJYK1n6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tMnjJYK1n6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMnjJYK1n6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tMnjJYK1n6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMnjJYK1n6 .navbar.collapsed {
  justify-content: center;
}
.cid-tMnjJYK1n6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMnjJYK1n6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMnjJYK1n6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMnjJYK1n6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMnjJYK1n6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMnjJYK1n6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMnjJYK1n6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMnjJYK1n6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMnjJYK1n6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMnjJYK1n6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMnjJYK1n6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMnjJYK1n6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMnjJYK1n6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMnjJYK1n6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMnjJYK1n6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMnjJYK1n6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMnjJYK1n6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMnjJYK1n6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMnjJYK1n6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMnjJYK1n6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMnjJYK1n6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMnjJYK1n6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMnjJYK1n6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMnjJYK1n6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMnjJYK1n6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMnjJYK1n6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMnjJYK1n6 .dropdown-item.active,
.cid-tMnjJYK1n6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tMnjJYK1n6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMnjJYK1n6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMnjJYK1n6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMnjJYK1n6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMnjJYK1n6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMnjJYK1n6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMnjJYK1n6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMnjJYK1n6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMnjJYK1n6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMnjJYK1n6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMnjJYK1n6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMnjJYK1n6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnjJYK1n6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnjJYK1n6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMnjJYK1n6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnjJYK1n6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMnjJYK1n6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMnjJYK1n6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnjJYK1n6 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMnjJYK1n6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMnjJYK1n6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMnjJYK1n6 .navbar {
    height: 70px;
  }
  .cid-tMnjJYK1n6 .navbar.opened {
    height: auto;
  }
  .cid-tMnjJYK1n6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMnjJYK1n6 a {
  display: inline;
}
.cid-tMnjJYK1n6 img {
  display: inline;
  padding-right: 10px;
}
.cid-tMnjJYK1n6 .dropdown-toggle:after {
  display: none;
}
.cid-tMnjJYK1n6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMnjJYK1n6 .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMnjJYK1n6 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMnjJYK1n6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMnjJYK1n6 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMnjJYK1n6 .nav-item {
  margin-right: 32px;
}
.cid-tMnjJYK1n6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMnjJYK1n6 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMnjJYK1n6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMnjJYK1n6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMnjJYK1n6 .navbar-nav {
  margin: auto;
}
.cid-tMnjJYK1n6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMnjJYK1n6 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMnjJYK1n6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMnjJYK1n6 .btn {
  border-radius: 1000px !important;
}
.cid-tMnjJYK1n6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMnjJYK1n6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMnjJYK1n6 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMnjJYK1n6 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMnjJYK1n6 .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMnjJYK1n6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMnjJYK1n6 .top {
    margin-top: 25px;
  }
}
.cid-tMnjJYK1n6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMnjJYK1n6 .container,
  .cid-tMnjJYK1n6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMnjJYK1n6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMnjJYK1n6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMnjJYK1n6 .icons-menu {
    min-width: initial !important;
  }
  .cid-tMnjJYK1n6 a.btn {
    margin-top: 10px;
  }
}
.cid-tMnjJYK1n6 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnoU7WGlx {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/high-angle-woman-doing-the-manicure-of-client-1.jpg");
}
.cid-tMnoU7WGlx .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlx .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlx .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlx .wrapper {
  margin: auto;
}




.cid-tMnoU7WGlxa {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/italia.jpg");
}
.cid-tMnoU7WGlxa .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxa .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxa .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxa .wrapper {
  margin: auto;
}





.cid-tMnoU7WGlxb {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/alemania.jpg");
}
.cid-tMnoU7WGlxb .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxb .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxb .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxb .wrapper {
  margin: auto;
}




.cid-tMnoU7WGlxc {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/japon.jpg");
}
.cid-tMnoU7WGlxc .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxc .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxc .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxc .wrapper {
  margin: auto;
}






.cid-tMnoU7WGlxe {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/brasil.jpg");
}
.cid-tMnoU7WGlxe .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxe .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxe .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxe .wrapper {
  margin: auto;
}






.cid-tMnoU7WGlxf {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inglaterra.jpg");
}
.cid-tMnoU7WGlxf .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxf .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxf .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxf .wrapper {
  margin: auto;
}






.cid-tMnoU7WGlxg {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/francia.jpg");
}
.cid-tMnoU7WGlxg .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxg .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxg .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxg .wrapper {
  margin: auto;
}






.cid-tMnoU7WGlxh {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/china.jpg");
}
.cid-tMnoU7WGlxh .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxh .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxh .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxh .wrapper {
  margin: auto;
}







.cid-tMnoU7WGlxm {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/corea_fondo.jpg");
}
.cid-tMnoU7WGlxm .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxm .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxm .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxm .wrapper {
  margin: auto;
}









.cid-tMnoU7WGlxaa {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/generico.jpg");
}
.cid-tMnoU7WGlxaa .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMnoU7WGlxaa .mbr-section-title {
  text-align: center;
  color: #ffffff;
  margin: auto;
}
.cid-tMnoU7WGlxaa .row {
  align-items: center;
  height: 100%;
}
.cid-tMnoU7WGlxaa .wrapper {
  margin: auto;
}










.cid-tMnjK0pKFW {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMnjK0pKFW .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFW .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFW .button-align {
  text-align: center;
}
.cid-tMnjK0pKFW .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFW .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFW .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFW .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFW .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFW a.btn > span {
  margin-left: 0.5rem;
}





.cid-tMnjK0pKFWa {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-ingles-frances.jpg");
}
.cid-tMnjK0pKFWa .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWa .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWa .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWa .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWa .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWa .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWa .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWa .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWa a.btn > span {
  margin-left: 0.5rem;
}







.cid-tMnjK0pKFWb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-italiano.jpg");
}
.cid-tMnjK0pKFWb .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWb .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWb .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWb .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWb .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWb .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWb .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWb .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWb a.btn > span {
  margin-left: 0.5rem;
}









.cid-tMnjK0pKFWbtester {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-tester.jpg");
}
.cid-tMnjK0pKFWbtester .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWbtester .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWbtester .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWbtester .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWbtester .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWbtester .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWbtester .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWbtester .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWbtester a.btn > span {
  margin-left: 0.5rem;
}













.cid-tMnjK0pKFWbphoto {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-photoshop.jpg");
}
.cid-tMnjK0pKFWbphoto .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWbphoto .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWbphoto .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWbphoto .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWbphoto .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWbphoto .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWbphoto .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWbphoto .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWbphoto a.btn > span {
  margin-left: 0.5rem;
}









.cid-tMnjK0pKFWbexcel {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-excel.jpg");
}
.cid-tMnjK0pKFWbexcel .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWbexcel .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWbexcel .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWbexcel .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWbexcel .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWbexcel .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWbexcel .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWbexcel .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWbexcel a.btn > span {
  margin-left: 0.5rem;
}








.cid-tMnjK0pKFWbauto {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-automatizacion.jpg");
}
.cid-tMnjK0pKFWbauto .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWbauto .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWbauto .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWbauto .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWbauto .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWbauto .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWbauto .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWbauto .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWbauto a.btn > span {
  margin-left: 0.5rem;
}










.cid-tMnjK0pKFWc {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-aleman.jpg");
}
.cid-tMnjK0pKFWc .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWc .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWc .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWc .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWc .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWc .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWc .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWc .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWc a.btn > span {
  margin-left: 0.5rem;
}











.cid-tMnjK0pKFWd {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-japones.jpg");
}
.cid-tMnjK0pKFWd .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWd .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWd .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWd .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWd .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWd .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWd .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWd .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWd a.btn > span {
  margin-left: 0.5rem;
}










.cid-tMnjK0pKFWg {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/top-chino.jpg");
}
.cid-tMnjK0pKFWg .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK0pKFWg .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK0pKFWg .button-align {
  text-align: center;
}
.cid-tMnjK0pKFWg .margin {
  margin-right: 14px;
}
.cid-tMnjK0pKFWg .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK0pKFWg .margin {
    margin-right: 0px;
  }
  .cid-tMnjK0pKFWg .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK0pKFWg .btn {
  margin-top: 20px;
}
.cid-tMnjK0pKFWg a.btn > span {
  margin-left: 0.5rem;
}




















.cid-tMnk6kVzhS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMnk6kVzhS .mbr-section-title {
	margin-top: 30px;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMnk6kVzhS .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnk6kVzhS .button-align {
  text-align: center;
}
.cid-tMnk6kVzhS .margin {
  margin-right: 14px;
}
.cid-tMnk6kVzhS .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnk6kVzhS .margin {
    margin-right: 0px;
  }
  .cid-tMnk6kVzhS .b {
    margin-bottom: 20px;
  }
}
.cid-tMnk6kVzhS .btn {
  margin-top: 20px;
}
.cid-tMnk6kVzhS a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnk6V87cS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tMnk6V87cS .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMnk6V87cS .shadow {
  border-color: #eff0f6;
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  display: flex;
  flex-direction: row;
  padding: 52px 52px 52px 40px;
  background-color: #ffffff;
}
.cid-tMnk6V87cS .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMnk6V87cS .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  width: 311px;
  height: 311px;
  border-radius: 30px;
  transform: translate(0px, 0px);
}
.cid-tMnk6V87cS .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMnk6V87cS .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):not(.link2),
.cid-tMnk6V87cS .shadow:hover .mbr-iconfont,
.cid-tMnk6V87cS .shadow:hover .number,
.cid-tMnk6V87cS .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMnk6V87cS .shadow:hover .btn > .mbr-iconfont {
  color: #fff !important;
}
.cid-tMnk6V87cS .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMnk6V87cS .card-title {
  margin-bottom: 16px;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  color: #00a851;
}
.cid-tMnk6V87cS .card-text {
  margin-bottom: 42px;
  color: #8c8c95;
}
.cid-tMnk6V87cS H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMnk6V87cS .mbr-iconfont {
  transition: 0.3s;
  margin-left: 0;
}
.cid-tMnk6V87cS .link-title {
  display: inline-block;
}
.cid-tMnk6V87cS .button-color {
  padding: 14px 18px !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
  margin-bottom: 12px;
  color: #14142b;
}
.cid-tMnk6V87cS .position {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.cid-tMnk6V87cS .link-row,
.cid-tMnk6V87cS .title-block {
  align-items: center;
}
.cid-tMnk6V87cS .link2 {
  display: inline;
}
.cid-tMnk6V87cS .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMnk6V87cS .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMnk6V87cS .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMnk6V87cS .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMnk6V87cS .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMnk6V87cS .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #00a851;
  cursor: pointer;
}
.cid-tMnk6V87cS .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMnk6V87cS .btn-social .mbr-iconfont:hover {
  color: #fff !important;
}
.cid-tMnk6V87cS .btn-social:hover {
  color: #fff;
}
.cid-tMnk6V87cS .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMnk6V87cS .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tMnk6V87cS .right {
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tMnk6V87cS .mbr-social-likes {
  display: flex;
  align-items: center;
}
.cid-tMnk6V87cS .link1 {
  margin-right: 5px;
  color: #8c8c95;
}
.cid-tMnk6V87cS .al {
  align-items: center;
}
@media (max-width: 765px) {
  .cid-tMnk6V87cS .row.al {
    display: flex;
    flex-direction: column;
  }
  .cid-tMnk6V87cS .right {
    margin-left: 0;
  }
  .cid-tMnk6V87cS .wrap-img {
    margin-bottom: 30px;
    height: 640px;
    width: 640px;
  }
}
@media (max-width: 760px) {
  .cid-tMnk6V87cS .wrap-img {
    height: 540px;
    width: 540px;
  }
  .cid-tMnk6V87cS .bottom {
    display: flex;
    flex-direction: column;
  }
  .cid-tMnk6V87cS .mbr-social-likes {
    margin-top: 10px;
  }
}
@media (max-width: 665px) {
  .cid-tMnk6V87cS .wrap-img {
    height: 340px;
    width: 340px;
  }
}
@media (max-width: 460px) {
  .cid-tMnk6V87cS .wrap-img {
    height: 240px;
    width: 240px;
  }
  .cid-tMnk6V87cS .shadow {
    padding: 32px;
  }
  .cid-tMnk6V87cS .mbr-social-likes {
    display: flex;
  }
}
@media (max-width: 390px) {
  .cid-tMnk6V87cS .wrap-img {
    height: 240px;
    width: 240px;
  }
  .cid-tMnk6V87cS .shadow {
    padding: 32px;
  }
}
@media (max-width: 550px) {
  .cid-tMnk6V87cS .shadow {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMnk6V87cS .card-title,
.cid-tMnk6V87cS span {
  transition: 0.35s;
}
.cid-tMnr0D76B8 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tMnr0D76B8 .card-heading {
  padding-bottom: 32px;
  color: #000000;
}
.cid-tMnr0D76B8 .p {
  padding-bottom: 26px;
  color: #8c8c95;
}
.cid-tMnr0D76B8 .p:last-child {
  padding-bottom: 0;
}
.cid-tMnr0D76B8 .row {
  justify-content: center;
}









.cid-tMnorFhJVG1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tMnorFhJVG1 .mbr-text {
  color: #767676;
}
.cid-tMnorFhJVG .mbr-iconfont {
  color: #3e4095 !important;
  font-size: 3.5rem !important;
}

.cid-tMnorFhJVG1 .mbr-iconfont2 {
  color: #d03438 !important;
  font-size: 3.5rem !important;
}


.cid-tMnorFhJVG1 .card-img {
  margin-bottom: 1rem;
}
.cid-tMnorFhJVG1 .card-wrapper {
  background: #f2f2f4;
  padding: 2rem 1.5rem 0.5rem 1.5rem;
  border-radius: 30px;
}
.cid-tMnorFhJVG1 .link {
  margin: 0;
}
.cid-tMnorFhJVG1 p {
  font-weight: 400;
}
.cid-tMnorFhJVG1 .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tMnorFhJVG1 .link a:hover {
  color: #181818 !important;
}
.cid-tMnorFhJVG1 .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tMnorFhJVG1 .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tMnorFhJVG1 .card {
    margin-bottom: 3rem;
  }
}
.cid-tMnorFhJVG1 .mbr-text,
.cid-tMnorFhJVG1 .link {
  color: #383838;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tMnorFhJVG1 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tMnorFhJVG1 .card-title,
.cid-tMnorFhJVG1 .card-img {
  text-align: center;
}















.cid-tMnorFhJVG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tMnorFhJVG .mbr-text {
  color: #767676;
}
.cid-tMnorFhJVG .mbr-iconfont {
  color: #00a851 !important;
  font-size: 3.5rem !important;
}

.cid-tMnorFhJVG .mbr-iconfont2 {
  color: #d03438 !important;
  font-size: 3.5rem !important;
}


.cid-tMnorFhJVG .card-img {
  margin-bottom: 1rem;
}
.cid-tMnorFhJVG .card-wrapper {
  background: #f2f2f4;
  padding: 2rem 1.5rem 0.5rem 1.5rem;
  border-radius: 30px;
}
.cid-tMnorFhJVG .link {
  margin: 0;
}
.cid-tMnorFhJVG p {
  font-weight: 400;
}
.cid-tMnorFhJVG .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tMnorFhJVG .link a:hover {
  color: #181818 !important;
}
.cid-tMnorFhJVG .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tMnorFhJVG .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tMnorFhJVG .card {
    margin-bottom: 3rem;
  }
}
.cid-tMnorFhJVG .mbr-text,
.cid-tMnorFhJVG .link {
  color: #383838;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tMnorFhJVG .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tMnorFhJVG .card-title,
.cid-tMnorFhJVG .card-img {
  text-align: center;
}























.cid-tMnorFhJVGx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tMnorFhJVGx .mbr-text {
  color: #767676;
}
.cid-tMnorFhJVGx .mbr-iconfont {
  color: #3f51b5 !important;
  font-size: 3.5rem !important;
}

.cid-tMnorFhJVGx .mbr-iconfont2 {
  color: #d03438 !important;
  font-size: 3.5rem !important;
}


.cid-tMnorFhJVGx .card-img {
  margin-bottom: 1rem;
}
.cid-tMnorFhJVGx .card-wrapper {
  background: #f2f2f4;
  padding: 2rem 1.5rem 0.5rem 1.5rem;
  border-radius: 30px;
}
.cid-tMnorFhJVGx .link {
  margin: 0;
}
.cid-tMnorFhJVGx p {
  font-weight: 400;
}
.cid-tMnorFhJVGx .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tMnorFhJVGx .link a:hover {
  color: #181818 !important;
}
.cid-tMnorFhJVGx .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tMnorFhJVGx .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tMnorFhJVGx .card {
    margin-bottom: 3rem;
  }
}
.cid-tMnorFhJVGx .mbr-text,
.cid-tMnorFhJVGx .link {
  color: #383838;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tMnorFhJVGx .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tMnorFhJVGx .card-title,
.cid-tMnorFhJVGx .card-img {
  text-align: center;
}










.cid-tMnpQbwQVk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tMnpQbwQVk .mbr-text {
  color: #767676;
}
.cid-tMnpQbwQVk .mbr-iconfont {
  color: #00a851 !important;
  font-size: 4rem !important;
}
.cid-tMnpQbwQVk .card-img {
  margin-bottom: 3rem;
}
.cid-tMnpQbwQVk .card-wrapper {
  background: #f2f2f4;
  padding: 3rem 2rem;
  border-radius: 30px;
}
.cid-tMnpQbwQVk .link {
  margin: 0;
}
.cid-tMnpQbwQVk p {
  font-weight: 400;
}
.cid-tMnpQbwQVk .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tMnpQbwQVk .link a:hover {
  color: #181818 !important;
}
.cid-tMnpQbwQVk .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-tMnpQbwQVk .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tMnpQbwQVk .card {
    margin-bottom: 3rem;
  }
}
.cid-tMnpQbwQVk .mbr-text,
.cid-tMnpQbwQVk .link {
  color: #383838;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tMnpQbwQVk .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tMnpQbwQVk .card-title,
.cid-tMnpQbwQVk .card-img {
  text-align: center;
}
.cid-tMntjpOsr5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tMntjpOsr5 .card-heading {
  color: #000000;
  margin-bottom: 24px;
}
.cid-tMntjpOsr5 .row {
  justify-content: center;
}
.cid-tMntjpOsr5 .p {
  width: 100%;
}
.cid-tMntjpOsr5 .mbr-iconfont {
  font-size: 23px;
  margin-right: 17px;
  color: #00a851;
}
.cid-tMntjpOsr5 .mbr-text {
  display: inline;
}
.cid-tMntjpOsr5 .mbr-text:last-child {
  margin-bottom: 0px;
}
.cid-tMntjpOsr5 .text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-tMntjpOsr5 .line {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.cid-tMntjpOsr5 .shadow {
  padding: 52px 56px 58px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 568px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tMntjpOsr5 .left-side {
  max-width: 596px;
}
.cid-tMntjpOsr5 .right-side {
  margin-right: 0;
  margin-left: auto;
}
.cid-tMntjpOsr5 a.btn,
.cid-tMntjpOsr5 button {
  padding: 24px 40px;
  border-radius: 80px;
  width: 100%;
  margin-top: 24px;
}
.cid-tMntjpOsr5 .sel-wrapper {
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  display: flex;
}
.cid-tMntjpOsr5 .sel-wrapper:hover {
  border-color: #14142b;
}
.cid-tMntjpOsr5 .sel-wrapper > select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: color 350ms ease;
}
.cid-tMntjpOsr5 .sel-wrapper > select.form-control:hover {
  color: #000000;
}
.cid-tMntjpOsr5 .form-group {
  margin-bottom: 0;
}
.cid-tMntjpOsr5 .card-title {
  margin-bottom: 7px;
}
.cid-tMntjpOsr5 .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-tMntjpOsr5 .line1 {
  margin-bottom: 40px;
  width: 100%;
  height: 1px;
  background-color: #e2e3e9;
}
.cid-tMntjpOsr5 .card-subtitle {
  margin-top: 24px;
}
.cid-tMntjpOsr5 option[value=""][disabled] {
  display: none;
}
.cid-tMntjpOsr5 select.form-control:hover {
  border-color: #14142b;
}
.cid-tMntjpOsr5 select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: border-color 300ms ease;
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  display: flex;
}
.cid-tMntjpOsr5 .form-check > input {
  height: 1em;
  width: 1em;
  padding: 0;
  float: initial;
  margin-bottom: 0;
}
.cid-tMntjpOsr5 input {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 64px;
  margin-bottom: 30px;
  padding: 8px 26px;
}
.cid-tMntjpOsr5 textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-tMntjpOsr5 input:hover {
  border-color: #14142b !important;
}
.cid-tMntjpOsr5 textarea:hover {
  border-color: #14142b !important;
}
.cid-tMntjpOsr5 input:focus {
  border-color: #14142b !important;
}
.cid-tMntjpOsr5 textarea:focus {
  border-color: #14142b !important;
}
.cid-tMntjpOsr5 .row.main {
  align-items: center;
}
@media (max-width: 990px) {
  .cid-tMntjpOsr5 .shadow {
    width: 100%;
    margin: auto;
    max-width: 720px;
  }
  .cid-tMntjpOsr5 .right-side {
    margin-top: 60px;
  }
  .cid-tMntjpOsr5 .left-side,
  .cid-tMntjpOsr5 .right-side {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 600px) {
  .cid-tMntjpOsr5 .shadow {
    padding: 25px;
  }
  .cid-tMntjpOsr5 input {
    margin-bottom: 20px;
  }
}
.cid-tMntjpOsr5 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnlySWCcW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMnlySWCcW .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tMnlySWCcW .panel-title {
  display: flex;
  align-items: center;
}
.cid-tMnlySWCcW .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 2rem !important;
  color: #8c8c95;
}
.cid-tMnlySWCcW .panel-body,
.cid-tMnlySWCcW .card-header {
  padding: 1rem 0;
}
.cid-tMnlySWCcW .panel-body {
  display: flex;
  justify-content: center;
}
.cid-tMnlySWCcW .panel-title-edit {
  color: #14142b;
  display: flex;
  align-items: center;
}
.cid-tMnlySWCcW .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-tMnlySWCcW .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-tMnlySWCcW .section-head {
  margin-bottom: 56px;
}
.cid-tMnlySWCcW .card {
  margin-bottom: 32px;
}
.cid-tMnlySWCcW H3 {
  color: #14142b;
}
@media (max-width: 768px) {
  .cid-tMnlySWCcW .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-tMnlySWCcW .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}



.cid-tMnjK3laxA {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMnjK3laxA .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK3laxA .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK3laxA .button-align {
  text-align: center;
}
.cid-tMnjK3laxA .margin {
  margin-right: 14px;
}
.cid-tMnjK3laxA .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK3laxA .margin {
    margin-right: 0px;
  }
  .cid-tMnjK3laxA .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK3laxA .btn {
  margin-top: 20px;
}
.cid-tMnjK3laxA a.btn > span {
  margin-left: 0.5rem;
}









.cid-tMnjK3laxA1 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pie-ingles-frances.jpg");
}
.cid-tMnjK3laxA1 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK3laxA1 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK3laxA1 .button-align {
  text-align: center;
}
.cid-tMnjK3laxA1 .margin {
  margin-right: 14px;
}
.cid-tMnjK3laxA1 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK3laxA1 .margin {
    margin-right: 0px;
  }
  .cid-tMnjK3laxA1 .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK3laxA1 .btn {
  margin-top: 20px;
}
.cid-tMnjK3laxA1 a.btn > span {
  margin-left: 0.5rem;
}









.cid-tMnjK3laxA2 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pie-italiano.jpg");
}
.cid-tMnjK3laxA2 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK3laxA2 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK3laxA2 .button-align {
  text-align: center;
}
.cid-tMnjK3laxA2 .margin {
  margin-right: 14px;
}
.cid-tMnjK3laxA2 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK3laxA2 .margin {
    margin-right: 0px;
  }
  .cid-tMnjK3laxA2 .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK3laxA2 .btn {
  margin-top: 20px;
}
.cid-tMnjK3laxA2 a.btn > span {
  margin-left: 0.5rem;
}











.cid-tMnjK3laxA3 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pie-aleman.jpg");
}
.cid-tMnjK3laxA3 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK3laxA3 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK3laxA3 .button-align {
  text-align: center;
}
.cid-tMnjK3laxA3 .margin {
  margin-right: 14px;
}
.cid-tMnjK3laxA3 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK3laxA3 .margin {
    margin-right: 0px;
  }
  .cid-tMnjK3laxA3 .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK3laxA3 .btn {
  margin-top: 20px;
}
.cid-tMnjK3laxA3 a.btn > span {
  margin-left: 0.5rem;
}








.cid-tMnjK3laxA4 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pie-japones.jpg");
}
.cid-tMnjK3laxA4 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK3laxA4 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK3laxA4 .button-align {
  text-align: center;
}
.cid-tMnjK3laxA4 .margin {
  margin-right: 14px;
}
.cid-tMnjK3laxA4 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK3laxA4 .margin {
    margin-right: 0px;
  }
  .cid-tMnjK3laxA4 .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK3laxA4 .btn {
  margin-top: 20px;
}
.cid-tMnjK3laxA4 a.btn > span {
  margin-left: 0.5rem;
}





.cid-tMnjK3laxA7 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/pie_chino.jpg");
}
.cid-tMnjK3laxA7 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnjK3laxA7 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnjK3laxA7 .button-align {
  text-align: center;
}
.cid-tMnjK3laxA7 .margin {
  margin-right: 14px;
}
.cid-tMnjK3laxA7 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnjK3laxA7 .margin {
    margin-right: 0px;
  }
  .cid-tMnjK3laxA7 .b {
    margin-bottom: 20px;
  }
}
.cid-tMnjK3laxA7 .btn {
  margin-top: 20px;
}
.cid-tMnjK3laxA7 a.btn > span {
  margin-left: 0.5rem;
}








.cid-tMnjK42ry4 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMnjK42ry4 .content {
    text-align: center;
  }
  .cid-tMnjK42ry4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMnjK42ry4 .logo-subtitle {
  color: #8d97ad;
}
.cid-tMnjK42ry4 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMnjK42ry4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMnjK42ry4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMnjK42ry4 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMnjK42ry4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMnjK42ry4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMnjK42ry4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMnjK42ry4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMnjK42ry4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMnjK42ry4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMnjK42ry4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMnjK42ry4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMnjK42ry4 .list-item {
  display: flex;
}
.cid-tMnjK42ry4 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMnjK42ry4 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMnjK42ry4 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMnjK42ry4 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMnjK42ry4 .logo-subtitle,
.cid-tMnjK42ry4 .media-wrap {
  color: #ffffff;
}
.cid-tMnjK42ry4 .copyright > p {
  color: #fedb01;
}
.cid-tMnjK42ry4 .mbr-text {
  color: #ffffff;
}
.cid-tMnjK42ry4 .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMnjK42ry4 P {
  color: #ffffff;
}
.cid-tMnjK42ry4 .mbr-text UL {
  text-align: left;
}
.cid-tMnkhfJTGQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMnkhfJTGQ nav.navbar {
  position: fixed;
}
.cid-tMnkhfJTGQ .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-tMnkhfJTGQ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMnkhfJTGQ .dropdown-item:hover,
.cid-tMnkhfJTGQ .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMnkhfJTGQ .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMnkhfJTGQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMnkhfJTGQ .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMnkhfJTGQ .container {
  display: flex;
  margin: auto;
}
.cid-tMnkhfJTGQ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMnkhfJTGQ .dropdown-menu,
.cid-tMnkhfJTGQ .navbar.opened {
  background: #ffffff !important;
}
.cid-tMnkhfJTGQ .nav-item:focus,
.cid-tMnkhfJTGQ .nav-link:focus {
  outline: none;
}
.cid-tMnkhfJTGQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMnkhfJTGQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMnkhfJTGQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMnkhfJTGQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMnkhfJTGQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMnkhfJTGQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMnkhfJTGQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMnkhfJTGQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tMnkhfJTGQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMnkhfJTGQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tMnkhfJTGQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMnkhfJTGQ .navbar.collapsed {
  justify-content: center;
}
.cid-tMnkhfJTGQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMnkhfJTGQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMnkhfJTGQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMnkhfJTGQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMnkhfJTGQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMnkhfJTGQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMnkhfJTGQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMnkhfJTGQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMnkhfJTGQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMnkhfJTGQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMnkhfJTGQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMnkhfJTGQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMnkhfJTGQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMnkhfJTGQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMnkhfJTGQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMnkhfJTGQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMnkhfJTGQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMnkhfJTGQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMnkhfJTGQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMnkhfJTGQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMnkhfJTGQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMnkhfJTGQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMnkhfJTGQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMnkhfJTGQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMnkhfJTGQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMnkhfJTGQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMnkhfJTGQ .dropdown-item.active,
.cid-tMnkhfJTGQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tMnkhfJTGQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMnkhfJTGQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMnkhfJTGQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMnkhfJTGQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMnkhfJTGQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMnkhfJTGQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMnkhfJTGQ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMnkhfJTGQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMnkhfJTGQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMnkhfJTGQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMnkhfJTGQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMnkhfJTGQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnkhfJTGQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnkhfJTGQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMnkhfJTGQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnkhfJTGQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMnkhfJTGQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMnkhfJTGQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnkhfJTGQ .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMnkhfJTGQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMnkhfJTGQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMnkhfJTGQ .navbar {
    height: 70px;
  }
  .cid-tMnkhfJTGQ .navbar.opened {
    height: auto;
  }
  .cid-tMnkhfJTGQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMnkhfJTGQ a {
  display: inline;
}
.cid-tMnkhfJTGQ img {
  display: inline;
  padding-right: 10px;
}
.cid-tMnkhfJTGQ .dropdown-toggle:after {
  display: none;
}
.cid-tMnkhfJTGQ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMnkhfJTGQ .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMnkhfJTGQ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMnkhfJTGQ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMnkhfJTGQ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMnkhfJTGQ .nav-item {
  margin-right: 32px;
}
.cid-tMnkhfJTGQ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMnkhfJTGQ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMnkhfJTGQ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMnkhfJTGQ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMnkhfJTGQ .navbar-nav {
  margin: auto;
}
.cid-tMnkhfJTGQ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMnkhfJTGQ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMnkhfJTGQ .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMnkhfJTGQ .btn {
  border-radius: 1000px !important;
}
.cid-tMnkhfJTGQ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMnkhfJTGQ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMnkhfJTGQ .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMnkhfJTGQ .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMnkhfJTGQ .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMnkhfJTGQ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMnkhfJTGQ .top {
    margin-top: 25px;
  }
}
.cid-tMnkhfJTGQ .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMnkhfJTGQ .container,
  .cid-tMnkhfJTGQ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMnkhfJTGQ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMnkhfJTGQ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMnkhfJTGQ .icons-menu {
    min-width: initial !important;
  }
  .cid-tMnkhfJTGQ a.btn {
    margin-top: 10px;
  }
}
.cid-tMnkhfJTGQ a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnkhgpgDu {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMnkhgpgDu .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnkhgpgDu .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnkhgpgDu .button-align {
  text-align: center;
}
.cid-tMnkhgpgDu .margin {
  margin-right: 14px;
}
.cid-tMnkhgpgDu .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnkhgpgDu .margin {
    margin-right: 0px;
  }
  .cid-tMnkhgpgDu .b {
    margin-bottom: 20px;
  }
}
.cid-tMnkhgpgDu .btn {
  margin-top: 20px;
}
.cid-tMnkhgpgDu a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnkl5tbR2 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tMnkl5tbR2 .item:focus,
.cid-tMnkl5tbR2 span:focus {
  outline: none;
}
.cid-tMnkl5tbR2 .item-wrapper {
  position: relative;
}
.cid-tMnkl5tbR2 .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tMnkl5tbR2 .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-tMnkl5tbR2 .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-tMnkl5tbR2 .mbr-text,
.cid-tMnkl5tbR2 .mbr-section-btn {
  text-align: left;
}
.cid-tMnkl5tbR2 .item-title {
  text-align: left;
}
.cid-tMnkl5tbR2 .item-subtitle {
  text-align: left;
}
.cid-tMnkl5tbR2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tMnkl5tbR2 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tMnkl5tbR2 .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tMnkl5tbR2 .embla__slide {
    min-width: 375px;
  }
}
.cid-tMnkl5tbR2 .embla__button--next,
.cid-tMnkl5tbR2 .embla__button--prev {
  display: flex;
}
.cid-tMnkl5tbR2 .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMnkl5tbR2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tMnkl5tbR2 .embla__button:hover {
  background: #3f69ff;
  color: #fff;
  transform: scale(1.05);
}
.cid-tMnkl5tbR2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMnkl5tbR2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMnkl5tbR2 .embla__button {
    top: auto;
  }
}
.cid-tMnkl5tbR2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tMnkl5tbR2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tMnkl5tbR2 .embla {
  position: relative;
  width: 100%;
}
.cid-tMnkl5tbR2 .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tMnkl5tbR2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tMnkl5tbR2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tMnkl5tbR2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tMnkl5tbR2 .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tMnkl5tbR2 .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-tMnkl5tbR2 .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
}
.cid-tMnkl5tbR2 .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-tMnkl5tbR2 img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.cid-tMnkl5tbR2 .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMnkl5tbR2 .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMnkl5tbR2 .shadow:hover .number,
.cid-tMnkl5tbR2 .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMnkl5tbR2 .shadow:hover .iconfont-wrapper > .mbr-iconfont > span {
  color: #000000 !important;
}
.cid-tMnkl5tbR2 .card-title {
  margin-bottom: 16px;
  color: #4c4c4c;
  transition: 0.35s;
  text-align: left;
}
.cid-tMnkl5tbR2 .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-tMnkl5tbR2 H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-tMnkl5tbR2 .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-tMnkl5tbR2 .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-tMnkl5tbR2 .link-title {
  display: inline-block;
}
.cid-tMnkl5tbR2 .margin {
  margin-right: 14px;
}
.cid-tMnkl5tbR2 .article {
  display: contents;
}
.cid-tMnkl5tbR2 .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-tMnkl5tbR2 .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-tMnkl5tbR2 .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-tMnkl5tbR2 .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-tMnkl5tbR2 .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-tMnkl5tbR2 .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-tMnkl5tbR2 .button-align {
  margin-top: 0px;
  text-align: center;
}
.cid-tMnkl5tbR2 .btn {
  margin-top: 20px;
}
.cid-tMnkl5tbR2 .card-title,
.cid-tMnkl5tbR2 .iconfont-wrapper {
  text-align: center;
}
.cid-tMnkl5tbR2 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnkl5tbR2 .mbr-section-title,
.cid-tMnkl5tbR2 .button-align {
  color: #00a851;
}
.cid-tMnkhkWKtl {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMnkhkWKtl .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMnkhkWKtl .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMnkhkWKtl .button-align {
  text-align: center;
}
.cid-tMnkhkWKtl .margin {
  margin-right: 14px;
}
.cid-tMnkhkWKtl .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMnkhkWKtl .margin {
    margin-right: 0px;
  }
  .cid-tMnkhkWKtl .b {
    margin-bottom: 20px;
  }
}
.cid-tMnkhkWKtl .btn {
  margin-top: 20px;
}
.cid-tMnkhkWKtl a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMnkhlzXfB {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMnkhlzXfB .content {
    text-align: center;
  }
  .cid-tMnkhlzXfB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMnkhlzXfB .logo-subtitle {
  color: #8d97ad;
}
.cid-tMnkhlzXfB .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMnkhlzXfB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMnkhlzXfB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMnkhlzXfB .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMnkhlzXfB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMnkhlzXfB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMnkhlzXfB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMnkhlzXfB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMnkhlzXfB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMnkhlzXfB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMnkhlzXfB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMnkhlzXfB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMnkhlzXfB .list-item {
  display: flex;
}
.cid-tMnkhlzXfB .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMnkhlzXfB ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMnkhlzXfB ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMnkhlzXfB ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMnkhlzXfB .logo-subtitle,
.cid-tMnkhlzXfB .media-wrap {
  color: #ffffff;
}
.cid-tMnkhlzXfB .copyright > p {
  color: #fedb01;
}
.cid-tMnkhlzXfB .mbr-text {
  color: #ffffff;
}
.cid-tMnkhlzXfB .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMnkhlzXfB P {
  color: #ffffff;
}
.cid-tMnkhlzXfB .mbr-text UL {
  text-align: left;
}
.cid-tMCKHrtr5b {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMCKHrtr5b nav.navbar {
  position: fixed;
}
.cid-tMCKHrtr5b .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-tMCKHrtr5b .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMCKHrtr5b .dropdown-item:hover,
.cid-tMCKHrtr5b .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMCKHrtr5b .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMCKHrtr5b .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCKHrtr5b .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMCKHrtr5b .container {
  display: flex;
  margin: auto;
}
.cid-tMCKHrtr5b .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCKHrtr5b .dropdown-menu,
.cid-tMCKHrtr5b .navbar.opened {
  background: #ffffff !important;
}
.cid-tMCKHrtr5b .nav-item:focus,
.cid-tMCKHrtr5b .nav-link:focus {
  outline: none;
}
.cid-tMCKHrtr5b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCKHrtr5b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCKHrtr5b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCKHrtr5b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCKHrtr5b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCKHrtr5b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCKHrtr5b .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMCKHrtr5b .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCKHrtr5b .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCKHrtr5b .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCKHrtr5b .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCKHrtr5b .navbar.collapsed {
  justify-content: center;
}
.cid-tMCKHrtr5b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCKHrtr5b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCKHrtr5b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMCKHrtr5b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCKHrtr5b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCKHrtr5b .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCKHrtr5b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCKHrtr5b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCKHrtr5b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCKHrtr5b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCKHrtr5b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCKHrtr5b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCKHrtr5b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCKHrtr5b .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCKHrtr5b .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCKHrtr5b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCKHrtr5b .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCKHrtr5b .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCKHrtr5b .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCKHrtr5b .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCKHrtr5b .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCKHrtr5b .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCKHrtr5b .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCKHrtr5b .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCKHrtr5b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCKHrtr5b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCKHrtr5b .dropdown-item.active,
.cid-tMCKHrtr5b .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCKHrtr5b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCKHrtr5b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCKHrtr5b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCKHrtr5b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMCKHrtr5b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCKHrtr5b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCKHrtr5b ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMCKHrtr5b .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCKHrtr5b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCKHrtr5b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMCKHrtr5b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCKHrtr5b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCKHrtr5b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCKHrtr5b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCKHrtr5b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCKHrtr5b nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCKHrtr5b nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCKHrtr5b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCKHrtr5b .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMCKHrtr5b a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCKHrtr5b .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCKHrtr5b .navbar {
    height: 70px;
  }
  .cid-tMCKHrtr5b .navbar.opened {
    height: auto;
  }
  .cid-tMCKHrtr5b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCKHrtr5b a {
  display: inline;
}
.cid-tMCKHrtr5b img {
  display: inline;
  padding-right: 10px;
}
.cid-tMCKHrtr5b .dropdown-toggle:after {
  display: none;
}
.cid-tMCKHrtr5b .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMCKHrtr5b .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMCKHrtr5b .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMCKHrtr5b .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMCKHrtr5b .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMCKHrtr5b .nav-item {
  margin-right: 32px;
}
.cid-tMCKHrtr5b .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMCKHrtr5b ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMCKHrtr5b .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMCKHrtr5b .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMCKHrtr5b .navbar-nav {
  margin: auto;
}
.cid-tMCKHrtr5b .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMCKHrtr5b .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMCKHrtr5b .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCKHrtr5b .btn {
  border-radius: 1000px !important;
}
.cid-tMCKHrtr5b .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMCKHrtr5b .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMCKHrtr5b .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCKHrtr5b .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMCKHrtr5b .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMCKHrtr5b .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCKHrtr5b .top {
    margin-top: 25px;
  }
}
.cid-tMCKHrtr5b .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMCKHrtr5b .container,
  .cid-tMCKHrtr5b .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMCKHrtr5b li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMCKHrtr5b ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMCKHrtr5b .icons-menu {
    min-width: initial !important;
  }
  .cid-tMCKHrtr5b a.btn {
    margin-top: 10px;
  }
}
.cid-tMCKHrtr5b a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKHrZpSM {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMCKHrZpSM .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCKHrZpSM .mbr-section-title {
  text-align: center;
  color: #fedb01;
  margin: auto;
}
.cid-tMCKHrZpSM .row {
  align-items: center;
  height: 100%;
}
.cid-tMCKHrZpSM .wrapper {
  margin: auto;
}
.cid-tMCKHsi8gO {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMCKHsi8gO .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCKHsi8gO .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCKHsi8gO .button-align {
  text-align: center;
}
.cid-tMCKHsi8gO .margin {
  margin-right: 14px;
}
.cid-tMCKHsi8gO .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCKHsi8gO .margin {
    margin-right: 0px;
  }
  .cid-tMCKHsi8gO .b {
    margin-bottom: 20px;
  }
}
.cid-tMCKHsi8gO .btn {
  margin-top: 20px;
}
.cid-tMCKHsi8gO a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKHsCyQe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMCKHsCyQe .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMCKHsCyQe .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCKHsCyQe .button-align {
  text-align: center;
}
.cid-tMCKHsCyQe .margin {
  margin-right: 14px;
}
.cid-tMCKHsCyQe .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCKHsCyQe .margin {
    margin-right: 0px;
  }
  .cid-tMCKHsCyQe .b {
    margin-bottom: 20px;
  }
}
.cid-tMCKHsCyQe .btn {
  margin-top: 20px;
}
.cid-tMCKHsCyQe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKMHgu9X {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tMCKMHgu9X .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMCKMHgu9X .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tMCKMHgu9X .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tMCKMHgu9X .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tMCKMHgu9X .right-side {
  max-width: 554px;
}
.cid-tMCKMHgu9X .rs {
  margin-right: 60px;
}
.cid-tMCKMHgu9X .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tMCKMHgu9X .margin {
  margin-right: 14px;
}
.cid-tMCKMHgu9X .gray {
  padding: 0px 0;
 
}
.cid-tMCKMHgu9X img {
  position: relative;

	    border-radius: 20px;
}
@media (max-width: 767px) {
  .cid-tMCKMHgu9X .gray {
    padding: 0px 0 5px;
  }
  .cid-tMCKMHgu9X img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tMCKMHgu9X .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tMCKMHgu9X .b {
    margin-bottom: 10px;
  }
}
.cid-tMCKMHgu9X .btn {
  margin-top: 20px;
}
.cid-tMCKMHgu9X a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKN7jiMG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCKN7jiMG .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMCKN7jiMG .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tMCKN7jiMG .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-tMCKN7jiMG .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tMCKN7jiMG ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-tMCKN7jiMG li::marker {
  color: #fedb01;
  width: 10px;
}
.cid-tMCKN7jiMG li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-tMCKN7jiMG img {
  width: 90%;
}
.cid-tMCKN7jiMG .gray {
  background-color: #eff0f6;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-tMCKN7jiMG .b {
  max-width: 598px;
}
.cid-tMCKN7jiMG .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-tMCKN7jiMG .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-tMCKN7jiMG .t {
    padding-top: 90px;
  }
  .cid-tMCKN7jiMG .b {
    max-width: initial;
  }
  .cid-tMCKN7jiMG .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-tMCKN7jiMG .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-tMCKN7jiMG .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-tMCKN7jiMG .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-tMCKN7jiMG .btn {
  margin-top: 20px;
}
.cid-tMCKN7jiMG .t {
  max-width: 542px;
}
.cid-tMCKNTSoMm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCKNTSoMm .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-tMCKNTSoMm .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tMCKNTSoMm .button-align {
  text-align: center;
}
.cid-tMCKNTSoMm .mbr-section-btn {
  display: block;
}
.cid-tMCKNTSoMm .container {
  max-width: 739px;
}
.cid-tMCKNTSoMm .btn {
  margin-top: 20px;
}
.cid-tMCKNTSoMm a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKNuiLz0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCKNuiLz0 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCKNuiLz0 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCKNuiLz0 .button-align {
  text-align: center;
}
.cid-tMCKNuiLz0 .margin {
  margin-right: 14px;
}
.cid-tMCKNuiLz0 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCKNuiLz0 .margin {
    margin-right: 0px;
  }
  .cid-tMCKNuiLz0 .b {
    margin-bottom: 20px;
  }
}
.cid-tMCKNuiLz0 .btn {
  margin-top: 20px;
}
.cid-tMCKNuiLz0 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKHvWobX {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMCKHvWobX .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCKHvWobX .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCKHvWobX .button-align {
  text-align: center;
}
.cid-tMCKHvWobX .margin {
  margin-right: 14px;
}
.cid-tMCKHvWobX .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCKHvWobX .margin {
    margin-right: 0px;
  }
  .cid-tMCKHvWobX .b {
    margin-bottom: 20px;
  }
}
.cid-tMCKHvWobX .btn {
  margin-top: 20px;
}
.cid-tMCKHvWobX a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKHwlRis {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMCKHwlRis .content {
    text-align: center;
  }
  .cid-tMCKHwlRis .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMCKHwlRis .logo-subtitle {
  color: #8d97ad;
}
.cid-tMCKHwlRis .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMCKHwlRis .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMCKHwlRis .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMCKHwlRis .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMCKHwlRis .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMCKHwlRis .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMCKHwlRis .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMCKHwlRis .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMCKHwlRis .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMCKHwlRis .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMCKHwlRis .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMCKHwlRis .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMCKHwlRis .list-item {
  display: flex;
}
.cid-tMCKHwlRis .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMCKHwlRis ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMCKHwlRis ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMCKHwlRis ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMCKHwlRis .logo-subtitle,
.cid-tMCKHwlRis .media-wrap {
  color: #ffffff;
}
.cid-tMCKHwlRis .copyright > p {
  color: #fedb01;
}
.cid-tMCKHwlRis .mbr-text {
  color: #ffffff;
}
.cid-tMCKHwlRis .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMCKHwlRis P {
  color: #ffffff;
}
.cid-tMCKHwlRis .mbr-text UL {
  text-align: left;
}
.cid-tMCKVZbaqm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMCKVZbaqm nav.navbar {
  position: fixed;
}
.cid-tMCKVZbaqm .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-tMCKVZbaqm .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMCKVZbaqm .dropdown-item:hover,
.cid-tMCKVZbaqm .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMCKVZbaqm .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMCKVZbaqm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCKVZbaqm .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMCKVZbaqm .container {
  display: flex;
  margin: auto;
}
.cid-tMCKVZbaqm .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCKVZbaqm .dropdown-menu,
.cid-tMCKVZbaqm .navbar.opened {
  background: #ffffff !important;
}
.cid-tMCKVZbaqm .nav-item:focus,
.cid-tMCKVZbaqm .nav-link:focus {
  outline: none;
}
.cid-tMCKVZbaqm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCKVZbaqm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCKVZbaqm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCKVZbaqm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCKVZbaqm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCKVZbaqm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCKVZbaqm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMCKVZbaqm .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCKVZbaqm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCKVZbaqm .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCKVZbaqm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCKVZbaqm .navbar.collapsed {
  justify-content: center;
}
.cid-tMCKVZbaqm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCKVZbaqm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCKVZbaqm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMCKVZbaqm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCKVZbaqm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCKVZbaqm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCKVZbaqm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCKVZbaqm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCKVZbaqm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCKVZbaqm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCKVZbaqm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCKVZbaqm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCKVZbaqm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCKVZbaqm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCKVZbaqm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCKVZbaqm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCKVZbaqm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCKVZbaqm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCKVZbaqm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCKVZbaqm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCKVZbaqm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCKVZbaqm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCKVZbaqm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCKVZbaqm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCKVZbaqm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCKVZbaqm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCKVZbaqm .dropdown-item.active,
.cid-tMCKVZbaqm .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCKVZbaqm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCKVZbaqm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCKVZbaqm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCKVZbaqm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMCKVZbaqm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCKVZbaqm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCKVZbaqm ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMCKVZbaqm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCKVZbaqm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCKVZbaqm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMCKVZbaqm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCKVZbaqm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCKVZbaqm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCKVZbaqm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCKVZbaqm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCKVZbaqm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCKVZbaqm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCKVZbaqm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCKVZbaqm .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMCKVZbaqm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCKVZbaqm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCKVZbaqm .navbar {
    height: 70px;
  }
  .cid-tMCKVZbaqm .navbar.opened {
    height: auto;
  }
  .cid-tMCKVZbaqm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCKVZbaqm a {
  display: inline;
}
.cid-tMCKVZbaqm img {
  display: inline;
  padding-right: 10px;
}
.cid-tMCKVZbaqm .dropdown-toggle:after {
  display: none;
}
.cid-tMCKVZbaqm .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMCKVZbaqm .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMCKVZbaqm .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMCKVZbaqm .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMCKVZbaqm .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMCKVZbaqm .nav-item {
  margin-right: 32px;
}
.cid-tMCKVZbaqm .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMCKVZbaqm ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMCKVZbaqm .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMCKVZbaqm .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMCKVZbaqm .navbar-nav {
  margin: auto;
}
.cid-tMCKVZbaqm .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMCKVZbaqm .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMCKVZbaqm .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCKVZbaqm .btn {
  border-radius: 1000px !important;
}
.cid-tMCKVZbaqm .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMCKVZbaqm .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMCKVZbaqm .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCKVZbaqm .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMCKVZbaqm .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMCKVZbaqm .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCKVZbaqm .top {
    margin-top: 25px;
  }
}
.cid-tMCKVZbaqm .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMCKVZbaqm .container,
  .cid-tMCKVZbaqm .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMCKVZbaqm li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMCKVZbaqm ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMCKVZbaqm .icons-menu {
    min-width: initial !important;
  }
  .cid-tMCKVZbaqm a.btn {
    margin-top: 10px;
  }
}
.cid-tMCKVZbaqm a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKVZBwpl {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMCKVZBwpl .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCKVZBwpl .mbr-section-title {
  text-align: center;
  color: #fedb01;
  margin: auto;
}
.cid-tMCKVZBwpl .row {
  align-items: center;
  height: 100%;
}
.cid-tMCKVZBwpl .wrapper {
  margin: auto;
}
.cid-tMCKVZQGl4 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMCKVZQGl4 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCKVZQGl4 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCKVZQGl4 .button-align {
  text-align: center;
}
.cid-tMCKVZQGl4 .margin {
  margin-right: 14px;
}
.cid-tMCKVZQGl4 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCKVZQGl4 .margin {
    margin-right: 0px;
  }
  .cid-tMCKVZQGl4 .b {
    margin-bottom: 20px;
  }
}
.cid-tMCKVZQGl4 .btn {
  margin-top: 20px;
}
.cid-tMCKVZQGl4 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKW05aXC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMCKW05aXC .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMCKW05aXC .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCKW05aXC .button-align {
  text-align: center;
}
.cid-tMCKW05aXC .margin {
  margin-right: 14px;
}
.cid-tMCKW05aXC .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCKW05aXC .margin {
    margin-right: 0px;
  }
  .cid-tMCKW05aXC .b {
    margin-bottom: 20px;
  }
}
.cid-tMCKW05aXC .btn {
  margin-top: 20px;
}
.cid-tMCKW05aXC a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCL1gzF1i {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f7f7f7;
}
.cid-tMCL1gzF1i .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMCL1gzF1i .mbr-section-title {
  margin-bottom: 56px;
}
.cid-tMCL1gzF1i .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMCL1gzF1i .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMCL1gzF1i .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMCL1gzF1i .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCL1gzF1i .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCL1gzF1i .shadow:hover .mbr-iconfont,
.cid-tMCL1gzF1i .shadow:hover .number,
.cid-tMCL1gzF1i .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCL1gzF1i .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMCL1gzF1i .card-title {
  margin-bottom: 10px;
  transition: 0.35s;
}
.cid-tMCL1gzF1i span,
.cid-tMCL1gzF1i .number {
  transition: 0.35s;
}
.cid-tMCL1gzF1i .card-text {
  margin-bottom: 32px;
  color: #8c8c95;
}
@media (max-width: 990px) {
  .cid-tMCL1gzF1i .card-wrapper {
    padding: 60px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-tMCL1gzF1i .card-wrapper {
    padding: 60px 30px 40px;
  }
}
.cid-tMCL1gzF1i H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMCL1gzF1i .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
  transform: translate(0px, 0px);
}
.cid-tMCL1gzF1i .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tMCL1gzF1i .link-title {
  display: inline-block;
}
.cid-tMCL1gzF1i .episode {
  color: #ffffff;
}
.cid-tMCL1gzF1i .img-title {
  color: #ffffff;
}
.cid-tMCL1gzF1i .margin {
  margin-right: 14px;
}
.cid-tMCL1gzF1i .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tMCL1gzF1i .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tMCL1gzF1i .title-block {
  margin-bottom: 32px;
  align-items: center;
}
.cid-tMCL1gzF1i a.btn {
  display: inline-flex;
}
@media (max-width: 550px) {
  .cid-tMCL1gzF1i .title-block {
    flex-direction: column;
  }
  .cid-tMCL1gzF1i .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tMCL1gzF1i .card-wrapper {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMCL1gzF1i .item.features-image {
  margin-top: 30px;
}
.cid-tMCL1gzF1i .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tMCL1gzF1i .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-tMCL1gzF1i .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .cid-tMCL1gzF1i .item.features-image:nth-child(2) {
    margin-top: 30px;
  }
}
@media (max-width: 992px) {
  .cid-tMCL1gzF1i .item.features-image:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-tMCL1WmReU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f7f7f7;
}
.cid-tMCL1WmReU .mbr-section-title {
  margin-bottom: 56px;
}
.cid-tMCL1WmReU .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMCL1WmReU .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMCL1WmReU .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMCL1WmReU .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMCL1WmReU .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCL1WmReU .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCL1WmReU .shadow:hover .mbr-iconfont,
.cid-tMCL1WmReU .shadow:hover .number,
.cid-tMCL1WmReU .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCL1WmReU .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMCL1WmReU .card-title {
  margin-bottom: 10px;
}
.cid-tMCL1WmReU .card-title span,
.cid-tMCL1WmReU .card-title .number {
  transition: 0.35s;
}
.cid-tMCL1WmReU .card-text {
  margin-bottom: 32px;
  color: #8c8c95;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-tMCL1WmReU .card-wrapper {
    padding: 60px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-tMCL1WmReU .card-wrapper {
    padding: 60px 30px 40px;
  }
}
.cid-tMCL1WmReU H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMCL1WmReU img {
  width: auto;
  height: 70px;
}
.cid-tMCL1WmReU .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-tMCL1WmReU .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tMCL1WmReU .link-title {
  display: inline-block;
}
.cid-tMCL1WmReU .episode {
  color: #ffffff;
}
.cid-tMCL1WmReU .img-title {
  color: #ffffff;
}
.cid-tMCL1WmReU .margin {
  margin-right: 14px;
}
.cid-tMCL1WmReU .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tMCL1WmReU .mbr-section-btn {
  width: auto;
  display: inline;
}
@media (max-width: 500px) {
  .cid-tMCL1WmReU .button-align {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCL1WmReU .margin {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-tMCL1WmReU .card-wrapper {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMCL1WmReU span,
.cid-tMCL1WmReU .number {
  transition: 0.35s;
}
.cid-tMCL1WmReU .item.features-image {
  margin-top: 30px;
}
.cid-tMCL1WmReU .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tMCL1WmReU .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-tMCL1WmReU .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tMCL1WmReU .item.features-image:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-tMCL1WmReU .item.features-image:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-tMCL2NrAyA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tMCL2NrAyA .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMCL2NrAyA .shadow {
  border-color: #eff0f6;
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  display: flex;
  flex-direction: row;
  padding: 52px 52px 52px 40px;
  background-color: #ffffff;
}
.cid-tMCL2NrAyA .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMCL2NrAyA .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  width: 311px;
  height: 311px;
  border-radius: 30px;
  transform: translate(0px, 0px);
}
.cid-tMCL2NrAyA .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCL2NrAyA .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):not(.link2),
.cid-tMCL2NrAyA .shadow:hover .mbr-iconfont,
.cid-tMCL2NrAyA .shadow:hover .number,
.cid-tMCL2NrAyA .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCL2NrAyA .shadow:hover .btn > .mbr-iconfont {
  color: #fff !important;
}
.cid-tMCL2NrAyA .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMCL2NrAyA .card-title {
  margin-bottom: 16px;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCL2NrAyA .card-text {
  margin-bottom: 42px;
  color: #8c8c95;
}
.cid-tMCL2NrAyA H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMCL2NrAyA .mbr-iconfont {
  transition: 0.3s;
  margin-left: 0;
}
.cid-tMCL2NrAyA .link-title {
  display: inline-block;
}
.cid-tMCL2NrAyA .button-color {
  padding: 14px 18px !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
  margin-bottom: 12px;
  color: #14142b;
}
.cid-tMCL2NrAyA .position {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.cid-tMCL2NrAyA .link-row,
.cid-tMCL2NrAyA .title-block {
  align-items: center;
}
.cid-tMCL2NrAyA .link2 {
  display: inline;
}
.cid-tMCL2NrAyA .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMCL2NrAyA .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMCL2NrAyA .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMCL2NrAyA .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMCL2NrAyA .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMCL2NrAyA .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #00a851;
  cursor: pointer;
}
.cid-tMCL2NrAyA .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMCL2NrAyA .btn-social .mbr-iconfont:hover {
  color: #fff !important;
}
.cid-tMCL2NrAyA .btn-social:hover {
  color: #fff;
}
.cid-tMCL2NrAyA .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMCL2NrAyA .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tMCL2NrAyA .right {
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tMCL2NrAyA .mbr-social-likes {
  display: flex;
  align-items: center;
}
.cid-tMCL2NrAyA .link1 {
  margin-right: 5px;
  color: #8c8c95;
}
.cid-tMCL2NrAyA .al {
  align-items: center;
}
@media (max-width: 765px) {
  .cid-tMCL2NrAyA .row.al {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCL2NrAyA .right {
    margin-left: 0;
  }
  .cid-tMCL2NrAyA .wrap-img {
    margin-bottom: 30px;
    height: 640px;
    width: 640px;
  }
}
@media (max-width: 760px) {
  .cid-tMCL2NrAyA .wrap-img {
    height: 540px;
    width: 540px;
  }
  .cid-tMCL2NrAyA .bottom {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCL2NrAyA .mbr-social-likes {
    margin-top: 10px;
  }
}
@media (max-width: 665px) {
  .cid-tMCL2NrAyA .wrap-img {
    height: 340px;
    width: 340px;
  }
}
@media (max-width: 460px) {
  .cid-tMCL2NrAyA .wrap-img {
    height: 240px;
    width: 240px;
  }
  .cid-tMCL2NrAyA .shadow {
    padding: 32px;
  }
  .cid-tMCL2NrAyA .mbr-social-likes {
    display: flex;
  }
}
@media (max-width: 390px) {
  .cid-tMCL2NrAyA .wrap-img {
    height: 240px;
    width: 240px;
  }
  .cid-tMCL2NrAyA .shadow {
    padding: 32px;
  }
}
@media (max-width: 550px) {
  .cid-tMCL2NrAyA .shadow {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMCL2NrAyA .card-title,
.cid-tMCL2NrAyA span {
  transition: 0.35s;
}
.cid-tMCL4nNhXM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCL4nNhXM .title-block {
  margin-bottom: 32px;
  align-items: center;
}
.cid-tMCL4nNhXM .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMCL4nNhXM .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMCL4nNhXM .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMCL4nNhXM .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCL4nNhXM .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCL4nNhXM .shadow:hover .mbr-iconfont,
.cid-tMCL4nNhXM .shadow:hover .number,
.cid-tMCL4nNhXM .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCL4nNhXM .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMCL4nNhXM .card-title {
  margin-bottom: 18px;
  color: #14142b;
  transition: 0.35s;
}
.cid-tMCL4nNhXM .card-text {
  margin-bottom: 17px;
  color: #8c8c95;
}
.cid-tMCL4nNhXM H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMCL4nNhXM img {
  width: auto;
  height: 70px;
}
.cid-tMCL4nNhXM .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-tMCL4nNhXM .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-tMCL4nNhXM .link-title {
  display: inline-block;
}
.cid-tMCL4nNhXM .margin {
  margin-right: 14px;
}
.cid-tMCL4nNhXM .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-tMCL4nNhXM .link-row {
  align-items: center;
}
@media (max-width: 550px) {
  .cid-tMCL4nNhXM .title-block {
    flex-direction: column;
  }
  .cid-tMCL4nNhXM .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tMCL4nNhXM .card-wrapper {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMCL4nNhXM .item.features-image {
  margin-top: 30px;
}
.cid-tMCL4nNhXM .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tMCL4nNhXM .item.features-image:nth-child(2) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .cid-tMCL4nNhXM .item.features-image:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-tMCL54HkhN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #14142b;
}
.cid-tMCL54HkhN img {
  width: auto;
  height: 48px;
  display: inline-block;
  padding: 0;
  margin: auto;
}
.cid-tMCL54HkhN .mbr-section-subtitle {
  margin-right: 30px;
  color: #ffffff;
}
.cid-tMCL54HkhN .brand {
  display: flex;
  transition: color 300ms ease;
  transition-property: transform, -webkit-transform;
  border: 1px solid #ffffff;
  padding: 10px 35px;
  border-radius: 80px;
  width: 100%;
  justify-content: center;
}
.cid-tMCL54HkhN .brand:hover {
  transform: translate(0px, -4px);
  border: 1px solid #00a851;
}
.cid-tMCL54HkhN .brand-row {
  justify-content: space-between;
  align-items: center;
}
.cid-tMCL54HkhN .row-main {
  align-items: center;
  justify-content: space-between;
}
.cid-tMCL54HkhN .c {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tMCL54HkhN .t {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .cid-tMCL54HkhN .t1 {
    margin-top: 20px;
  }
}
@media (max-width: 460px) {
  .cid-tMCL54HkhN .row-main {
    flex-direction: column;
  }
  .cid-tMCL54HkhN .col-auto {
    margin-bottom: 20px;
  }
  .cid-tMCL54HkhN .mbr-section-subtitle {
    margin-right: 0;
  }
}
.cid-tMCL5KH248 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCL5KH248 img {
  width: 100%;
  display: inline-block;
  padding: 0;
  max-width: 200px;
}
.cid-tMCL5KH248 .mbr-section-subtitle {
  margin-right: 30px;
  color: #5f5d68;
}
.cid-tMCL5KH248 .brand {
  display: flex;
  transition: color 300ms ease;
  transition-property: transform, -webkit-transform;
  justify-content: center;
}
.cid-tMCL5KH248 .brand:hover {
  transform: translate(0px, -4px);
}
.cid-tMCL5KH248 .brand-row {
  justify-content: space-between;
  align-items: center;
}
.cid-tMCL5KH248 .row-main {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 460px) {
  .cid-tMCL5KH248 .row-main {
    flex-direction: column;
  }
  .cid-tMCL5KH248 .col-auto {
    margin-bottom: 10px;
  }
  .cid-tMCL5KH248 .mbr-section-subtitle {
    margin-right: 0;
  }
}
.cid-tMCL44h3le {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tMCL44h3le .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMCL44h3le .wrap-img {
  border-bottom: 1px solid #e2e3e9;
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 192px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMCL44h3le .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCL44h3le .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCL44h3le .shadow:hover .mbr-iconfont,
.cid-tMCL44h3le .shadow:hover .number,
.cid-tMCL44h3le .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCL44h3le .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMCL44h3le .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMCL44h3le .card-title {
  color: #14142b;
  margin-bottom: 6px;
  text-align: center;
  transition: 0.35s;
}
.cid-tMCL44h3le .title-block {
  margin-bottom: 56px;
}
.cid-tMCL44h3le .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-tMCL44h3le H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMCL44h3le .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 39px 32px 48px;
}
.cid-tMCL44h3le .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tMCL44h3le .link-title {
  display: inline-block;
}
.cid-tMCL44h3le .episode {
  color: #ffffff;
}
.cid-tMCL44h3le .img-title {
  color: #ffffff;
}
.cid-tMCL44h3le .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tMCL44h3le .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tMCL44h3le .mbr-section-title {
  color: #8c8c95;
}
@media (max-width: 860px) {
  .cid-tMCL44h3le .title-block {
    flex-direction: column;
  }
  .cid-tMCL44h3le .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
}
.cid-tMCL44h3le .item.features-image {
  margin-top: 35px;
}
.cid-tMCL44h3le .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tMCL44h3le .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-tMCL44h3le .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tMCL44h3le .item.features-image:nth-child(4) {
    margin-top: 35px;
  }
  .cid-tMCL44h3le .item.features-image:nth-child(3) {
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tMCL44h3le .item.features-image:nth-child(2) {
    margin-top: 35px;
  }
}
.cid-tMCL6c9Sh3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCL6c9Sh3 .mbr-section-subtitle {
  color: #8c8c95;
  text-align: left;
  margin: auto;
  margin-bottom: 24px;
}
.cid-tMCL6c9Sh3 .mbr-section-title {
  text-align: left;
  color: #14142b;
  margin-bottom: 20px;
  margin-top: 40px;
}
.cid-tMCL6c9Sh3 .row {
  align-items: center;
  height: 100%;
}
.cid-tMCL6c9Sh3 .wrapper {
  margin: auto;
}
.cid-tMCL6c9Sh3 .t1 {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .cid-tMCL6c9Sh3 .t {
    padding-top: 20px;
  }
}
.cid-tMCL6KXqGC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCL6KXqGC .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCL6KXqGC .mbr-section-title {
  text-align: center;
  color: #14142b;
  padding-bottom: 24px;
}
.cid-tMCL6KXqGC .row {
  align-items: center;
  height: 100%;
}
.cid-tMCL6KXqGC .wrapper {
  margin: auto;
}
.cid-tMCL6KXqGC .subtitle {
  display: inline;
  width: auto;
  color: #8c8c95;
}
.cid-tMCL6KXqGC .mbr-section-btn {
  display: inline;
  width: auto;
  margin-right: 25px;
}
.cid-tMCL6KXqGC .title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}
.cid-tMCL6KXqGC a.btn {
  padding: 16px 25px !important;
}
.cid-tMCL6KXqGC a.btn:hover {
  background-color: #00a851 !important;
  border-color: #00a851 !important;
  color: #000000;
}
@media (max-width: 340px) {
  .cid-tMCL6KXqGC .title-block {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCL6KXqGC .mbr-section-btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-tMCL7RvX77 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCL7RvX77 img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tMCL7RvX77 .title {
  color: #14142b;
  width: auto;
}
.cid-tMCL7RvX77 .row.justify-content-between {
  align-items: center;
}
.cid-tMCL7RvX77 .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tMCL7RvX77 .row.margin:hover {
  transform: scale(1.05);
}
.cid-tMCL7RvX77 .mbr-section-title {
  color: #14142b;
  margin-bottom: 24px;
}
.cid-tMCL7RvX77 .left {
  max-width: 549px;
}
.cid-tMCL7RvX77 .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tMCL7RvX77 .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tMCL7RvX77 .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMCL7RvX77 .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMCL7RvX77 .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMCL7RvX77 .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMCL7RvX77 .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMCL7RvX77 .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #00a851;
  cursor: pointer;
}
.cid-tMCL7RvX77 .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMCL7RvX77 .btn-social:hover {
  color: #fff;
}
.cid-tMCL7RvX77 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMCL7RvX77 .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tMCL7RvX77 .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tMCL7RvX77 .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tMCL7RvX77 .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tMCL7RvX77 .mbr-section-title,
  .cid-tMCL7RvX77 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tMCL7RvX77 .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tMCL7RvX77 .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tMCL7RvX77 .mbr-iconfont {
  margin-left: 0;
}
.cid-tMCL7q6Zgv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCL7q6Zgv .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-tMCL7q6Zgv .mbr-text {
  color: #8c8c95;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tMCL7q6Zgv .button-align {
  text-align: center;
}
.cid-tMCL7q6Zgv .margin {
  margin-right: 14px;
}
.cid-tMCL7q6Zgv .mbr-section-btn {
  display: inline-block;
}
.cid-tMCL7q6Zgv .container {
  max-width: 493px;
}
.cid-tMCL7q6Zgv .btn {
  margin-top: 20px;
}
.cid-tMCL7q6Zgv a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCL2q3ygx {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tMCL2q3ygx .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMCL2q3ygx .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  display: flex;
  flex-direction: row;
}
.cid-tMCL2q3ygx .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 0px 0 30px;
  width: 361px;
  height: 361px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMCL2q3ygx .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCL2q3ygx .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCL2q3ygx .shadow:hover .mbr-iconfont,
.cid-tMCL2q3ygx .shadow:hover .number,
.cid-tMCL2q3ygx .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCL2q3ygx .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMCL2q3ygx .card-title {
  margin-bottom: 20px;
}
.cid-tMCL2q3ygx .title-block {
  margin-bottom: 56px;
}
.cid-tMCL2q3ygx .card-text {
  margin-bottom: 42px;
  color: #8c8c95;
}
.cid-tMCL2q3ygx H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMCL2q3ygx .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMCL2q3ygx .card-wrapper {
  border-radius: 0 30px 30px 0px;
  background-color: #ffffff;
  padding: 60px 71px;
}
.cid-tMCL2q3ygx .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tMCL2q3ygx .link-title {
  display: inline-block;
}
.cid-tMCL2q3ygx .episode {
  color: #ffffff;
}
.cid-tMCL2q3ygx .img-title {
  color: #ffffff;
}
.cid-tMCL2q3ygx .margin {
  margin-right: 14px;
}
.cid-tMCL2q3ygx .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tMCL2q3ygx .button-color {
  padding: 14px 18px !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
  color: #14142b;
}
.cid-tMCL2q3ygx .position {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.cid-tMCL2q3ygx .link-row,
.cid-tMCL2q3ygx .title-block {
  align-items: center;
}
.cid-tMCL2q3ygx .line {
  width: 100%;
  height: 1px;
  background-color: #e2e3e9;
  margin-bottom: 35px;
}
.cid-tMCL2q3ygx .mbr-section-title {
  color: #8c8c95;
}
@media (max-width: 900px) {
  .cid-tMCL2q3ygx .card-wrapper {
    padding: 40px 31px;
  }
}
@media (max-width: 820px) {
  .cid-tMCL2q3ygx .card-wrapper {
    padding: 25px 31px;
  }
}
@media (max-width: 1095px) {
  .cid-tMCL2q3ygx .wrap-img {
    height: 430px;
  }
}
@media (max-width: 765px) {
  .cid-tMCL2q3ygx .shadow {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCL2q3ygx .title-block {
    flex-direction: column;
  }
  .cid-tMCL2q3ygx .mbr-section-subtitle {
    margin-bottom: 30px;
    text-align: center;
  }
  .cid-tMCL2q3ygx .wrap-img {
    height: 361px;
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
  .cid-tMCL2q3ygx .card-wrapper {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMCL2q3ygx .card-title,
.cid-tMCL2q3ygx span {
  transition: 0.35s;
}
.cid-tMCKW1sjmq {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMCKW1sjmq .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCKW1sjmq .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCKW1sjmq .button-align {
  text-align: center;
}
.cid-tMCKW1sjmq .margin {
  margin-right: 14px;
}
.cid-tMCKW1sjmq .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCKW1sjmq .margin {
    margin-right: 0px;
  }
  .cid-tMCKW1sjmq .b {
    margin-bottom: 20px;
  }
}
.cid-tMCKW1sjmq .btn {
  margin-top: 20px;
}
.cid-tMCKW1sjmq a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCKW1OCwd {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMCKW1OCwd .content {
    text-align: center;
  }
  .cid-tMCKW1OCwd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMCKW1OCwd .logo-subtitle {
  color: #8d97ad;
}
.cid-tMCKW1OCwd .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMCKW1OCwd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMCKW1OCwd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMCKW1OCwd .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMCKW1OCwd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMCKW1OCwd .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMCKW1OCwd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMCKW1OCwd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMCKW1OCwd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMCKW1OCwd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMCKW1OCwd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMCKW1OCwd .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMCKW1OCwd .list-item {
  display: flex;
}
.cid-tMCKW1OCwd .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMCKW1OCwd ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMCKW1OCwd ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMCKW1OCwd ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMCKW1OCwd .logo-subtitle,
.cid-tMCKW1OCwd .media-wrap {
  color: #ffffff;
}
.cid-tMCKW1OCwd .copyright > p {
  color: #fedb01;
}
.cid-tMCKW1OCwd .mbr-text {
  color: #ffffff;
}
.cid-tMCKW1OCwd .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMCKW1OCwd P {
  color: #ffffff;
}
.cid-tMCKW1OCwd .mbr-text UL {
  text-align: left;
}
.cid-tMCL9yIMBi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMCL9yIMBi nav.navbar {
  position: fixed;
}
.cid-tMCL9yIMBi .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-tMCL9yIMBi .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMCL9yIMBi .dropdown-item:hover,
.cid-tMCL9yIMBi .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMCL9yIMBi .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMCL9yIMBi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCL9yIMBi .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMCL9yIMBi .container {
  display: flex;
  margin: auto;
}
.cid-tMCL9yIMBi .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCL9yIMBi .dropdown-menu,
.cid-tMCL9yIMBi .navbar.opened {
  background: #ffffff !important;
}
.cid-tMCL9yIMBi .nav-item:focus,
.cid-tMCL9yIMBi .nav-link:focus {
  outline: none;
}
.cid-tMCL9yIMBi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCL9yIMBi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCL9yIMBi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCL9yIMBi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCL9yIMBi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCL9yIMBi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCL9yIMBi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMCL9yIMBi .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCL9yIMBi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCL9yIMBi .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCL9yIMBi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCL9yIMBi .navbar.collapsed {
  justify-content: center;
}
.cid-tMCL9yIMBi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCL9yIMBi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCL9yIMBi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMCL9yIMBi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCL9yIMBi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCL9yIMBi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCL9yIMBi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCL9yIMBi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCL9yIMBi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCL9yIMBi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCL9yIMBi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCL9yIMBi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCL9yIMBi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCL9yIMBi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCL9yIMBi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCL9yIMBi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCL9yIMBi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCL9yIMBi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCL9yIMBi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCL9yIMBi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCL9yIMBi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCL9yIMBi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCL9yIMBi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCL9yIMBi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCL9yIMBi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCL9yIMBi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCL9yIMBi .dropdown-item.active,
.cid-tMCL9yIMBi .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCL9yIMBi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCL9yIMBi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCL9yIMBi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCL9yIMBi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMCL9yIMBi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCL9yIMBi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCL9yIMBi ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMCL9yIMBi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCL9yIMBi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCL9yIMBi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMCL9yIMBi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCL9yIMBi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCL9yIMBi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCL9yIMBi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCL9yIMBi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCL9yIMBi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCL9yIMBi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCL9yIMBi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCL9yIMBi .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMCL9yIMBi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCL9yIMBi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCL9yIMBi .navbar {
    height: 70px;
  }
  .cid-tMCL9yIMBi .navbar.opened {
    height: auto;
  }
  .cid-tMCL9yIMBi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCL9yIMBi a {
  display: inline;
}
.cid-tMCL9yIMBi img {
  display: inline;
  padding-right: 10px;
}
.cid-tMCL9yIMBi .dropdown-toggle:after {
  display: none;
}
.cid-tMCL9yIMBi .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMCL9yIMBi .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMCL9yIMBi .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMCL9yIMBi .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMCL9yIMBi .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMCL9yIMBi .nav-item {
  margin-right: 32px;
}
.cid-tMCL9yIMBi .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMCL9yIMBi ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMCL9yIMBi .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMCL9yIMBi .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMCL9yIMBi .navbar-nav {
  margin: auto;
}
.cid-tMCL9yIMBi .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMCL9yIMBi .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMCL9yIMBi .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCL9yIMBi .btn {
  border-radius: 1000px !important;
}
.cid-tMCL9yIMBi .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMCL9yIMBi .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMCL9yIMBi .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCL9yIMBi .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMCL9yIMBi .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMCL9yIMBi .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCL9yIMBi .top {
    margin-top: 25px;
  }
}
.cid-tMCL9yIMBi .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMCL9yIMBi .container,
  .cid-tMCL9yIMBi .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMCL9yIMBi li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMCL9yIMBi ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMCL9yIMBi .icons-menu {
    min-width: initial !important;
  }
  .cid-tMCL9yIMBi a.btn {
    margin-top: 10px;
  }
}
.cid-tMCL9yIMBi a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCL9z9fbX {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMCL9z9fbX .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCL9z9fbX .mbr-section-title {
  text-align: center;
  color: #fedb01;
  margin: auto;
}
.cid-tMCL9z9fbX .row {
  align-items: center;
  height: 100%;
}
.cid-tMCL9z9fbX .wrapper {
  margin: auto;
}
.cid-tMCL9zreDe {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMCL9zreDe .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCL9zreDe .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCL9zreDe .button-align {
  text-align: center;
}
.cid-tMCL9zreDe .margin {
  margin-right: 14px;
}
.cid-tMCL9zreDe .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCL9zreDe .margin {
    margin-right: 0px;
  }
  .cid-tMCL9zreDe .b {
    margin-bottom: 20px;
  }
}
.cid-tMCL9zreDe .btn {
  margin-top: 20px;
}
.cid-tMCL9zreDe a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCL9zKXN4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMCL9zKXN4 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMCL9zKXN4 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCL9zKXN4 .button-align {
  text-align: center;
}
.cid-tMCL9zKXN4 .margin {
  margin-right: 14px;
}
.cid-tMCL9zKXN4 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCL9zKXN4 .margin {
    margin-right: 0px;
  }
  .cid-tMCL9zKXN4 .b {
    margin-bottom: 20px;
  }
}
.cid-tMCL9zKXN4 .btn {
  margin-top: 20px;
}
.cid-tMCL9zKXN4 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCL9FYEXN {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMCL9FYEXN .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCL9FYEXN .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCL9FYEXN .button-align {
  text-align: center;
}
.cid-tMCL9FYEXN .margin {
  margin-right: 14px;
}
.cid-tMCL9FYEXN .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCL9FYEXN .margin {
    margin-right: 0px;
  }
  .cid-tMCL9FYEXN .b {
    margin-bottom: 20px;
  }
}
.cid-tMCL9FYEXN .btn {
  margin-top: 20px;
}
.cid-tMCL9FYEXN a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLeyT0cm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLeyT0cm .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCLeyT0cm .mbr-section-title {
  text-align: center;
  color: #14142b;
  padding-bottom: 24px;
  max-width: 752px;
  margin: auto;
}
.cid-tMCLeyT0cm .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLeyT0cm .wrapper {
  margin: auto;
}
.cid-tMCLgJ1fAV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLgJ1fAV .mbr-section-subtitle {
  color: #8c8c95;
  text-align: left;
  margin: auto;
}
.cid-tMCLgJ1fAV .mbr-section-title {
  text-align: left;
  color: #14142b;
  padding-bottom: 24px;
  margin: auto;
}
.cid-tMCLgJ1fAV .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLgJ1fAV .wrapper {
  margin: auto;
}
.cid-tMCLhl8WIL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLhl8WIL .card-heading {
  color: #000000;
  margin-bottom: 24px;
}
.cid-tMCLhl8WIL .row {
  justify-content: center;
}
.cid-tMCLhl8WIL .mbr-iconfont {
  font-size: 23px;
  margin-right: 17px;
  color: #00a851;
}
.cid-tMCLhl8WIL .mbr-text {
  display: inline;
  width: 100%;
}
.cid-tMCLhl8WIL .mbr-text:last-child {
  margin-bottom: 0px;
}
.cid-tMCLhl8WIL .text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-tMCLhl8WIL .line {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.cid-tMCLh0kv88 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-tMCLh0kv88 .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  margin: auto;
}
.cid-tMCLh0kv88 .mbr-section-title {
  text-align: center;
  color: #14142b;
  padding-bottom: 24px;
  margin: auto;
}
.cid-tMCLh0kv88 .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLh0kv88 .wrapper {
  margin: auto;
}
.cid-tMCLhVqByK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLhVqByK .card-heading {
  padding-top: 32px;
  padding-bottom: 16px;
  color: #000000;
}
.cid-tMCLhVqByK .p1 {
  padding-bottom: 24px;
  color: #272727;
}
.cid-tMCLhVqByK .p {
  color: #8c8c95;
}
.cid-tMCLhVqByK .p:last-child {
  padding-bottom: 0;
}
.cid-tMCLhVqByK .row {
  justify-content: center;
}
.cid-tMCLhVqByK .heading {
  padding-bottom: 24px;
}
.cid-tMCLieSBPr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLieSBPr .mbr-section-subtitle {
  color: #14142b;
  text-align: center;
  margin: auto;
  padding: 119px 95px;
  background-color: #00a851;
}
.cid-tMCLieSBPr .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLieSBPr .wrapper {
  margin: auto;
}
@media (max-width: 770px) {
  .cid-tMCLieSBPr .mbr-section-subtitle {
    padding: 70px 75px;
  }
}
@media (max-width: 576px) {
  .cid-tMCLieSBPr .mbr-section-subtitle {
    padding: 45px 35px;
  }
}
.cid-tMCLfHv33i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLfHv33i .card-heading {
  padding-bottom: 32px;
  color: #000000;
}
.cid-tMCLfHv33i .p {
  padding-bottom: 26px;
  color: #8c8c95;
}
.cid-tMCLfHv33i .p:last-child {
  padding-bottom: 0;
}
.cid-tMCLfHv33i .row {
  justify-content: center;
}
.cid-tMCLfsfNKh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLfsfNKh .right {
  display: flex;
  flex-direction: column;
}
.cid-tMCLfsfNKh .card-heading {
  padding-bottom: 32px;
  color: #8c8c95;
}
.cid-tMCLfsfNKh .row {
  justify-content: center;
}
.cid-tMCLfsfNKh ul {
  padding-inline-start: 50px;
  margin-bottom: 0;
}
.cid-tMCLfsfNKh li {
  margin-bottom: 16px;
}
.cid-tMCLfsfNKh li:last-child {
  margin-bottom: 0;
}
.cid-tMCLfsfNKh .list {
  color: #8c8c95;
}
.cid-tMCLf3gmzY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLf3gmzY .card-title {
  padding-bottom: 18px;
  margin: 0;
  color: #14142b;
}
.cid-tMCLf3gmzY .align-left {
  max-width: 547px;
}
.cid-tMCLf3gmzY .mbr-text,
.cid-tMCLf3gmzY .mbr-section-btn {
  color: #8c8c95;
}
.cid-tMCLf3gmzY .left-side {
  margin-right: 20px;
}
.cid-tMCLf3gmzY .right-side {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .cid-tMCLf3gmzY .left-side {
    margin-right: 0px;
  }
  .cid-tMCLf3gmzY .right-side {
    padding-top: 20px;
    margin-left: 0px;
  }
}
.cid-tMCL9GtOM6 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMCL9GtOM6 .content {
    text-align: center;
  }
  .cid-tMCL9GtOM6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMCL9GtOM6 .logo-subtitle {
  color: #8d97ad;
}
.cid-tMCL9GtOM6 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMCL9GtOM6 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMCL9GtOM6 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMCL9GtOM6 .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMCL9GtOM6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMCL9GtOM6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMCL9GtOM6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMCL9GtOM6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMCL9GtOM6 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMCL9GtOM6 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMCL9GtOM6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMCL9GtOM6 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMCL9GtOM6 .list-item {
  display: flex;
}
.cid-tMCL9GtOM6 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMCL9GtOM6 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMCL9GtOM6 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMCL9GtOM6 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMCL9GtOM6 .logo-subtitle,
.cid-tMCL9GtOM6 .media-wrap {
  color: #ffffff;
}
.cid-tMCL9GtOM6 .copyright > p {
  color: #fedb01;
}
.cid-tMCL9GtOM6 .mbr-text {
  color: #ffffff;
}
.cid-tMCL9GtOM6 .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMCL9GtOM6 P {
  color: #ffffff;
}
.cid-tMCL9GtOM6 .mbr-text UL {
  text-align: left;
}
.cid-tMCLo16q7r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMCLo16q7r nav.navbar {
  position: fixed;
}
.cid-tMCLo16q7r .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-tMCLo16q7r .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMCLo16q7r .dropdown-item:hover,
.cid-tMCLo16q7r .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMCLo16q7r .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMCLo16q7r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCLo16q7r .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMCLo16q7r .container {
  display: flex;
  margin: auto;
}
.cid-tMCLo16q7r .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCLo16q7r .dropdown-menu,
.cid-tMCLo16q7r .navbar.opened {
  background: #ffffff !important;
}
.cid-tMCLo16q7r .nav-item:focus,
.cid-tMCLo16q7r .nav-link:focus {
  outline: none;
}
.cid-tMCLo16q7r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCLo16q7r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCLo16q7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCLo16q7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCLo16q7r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCLo16q7r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCLo16q7r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMCLo16q7r .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCLo16q7r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCLo16q7r .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCLo16q7r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCLo16q7r .navbar.collapsed {
  justify-content: center;
}
.cid-tMCLo16q7r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCLo16q7r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCLo16q7r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMCLo16q7r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCLo16q7r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCLo16q7r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLo16q7r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCLo16q7r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCLo16q7r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCLo16q7r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCLo16q7r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCLo16q7r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCLo16q7r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCLo16q7r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCLo16q7r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCLo16q7r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCLo16q7r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCLo16q7r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCLo16q7r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCLo16q7r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCLo16q7r .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCLo16q7r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCLo16q7r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCLo16q7r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCLo16q7r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCLo16q7r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCLo16q7r .dropdown-item.active,
.cid-tMCLo16q7r .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCLo16q7r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCLo16q7r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCLo16q7r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCLo16q7r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMCLo16q7r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCLo16q7r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCLo16q7r ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMCLo16q7r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCLo16q7r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCLo16q7r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMCLo16q7r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCLo16q7r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLo16q7r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLo16q7r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCLo16q7r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLo16q7r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCLo16q7r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCLo16q7r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLo16q7r .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMCLo16q7r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCLo16q7r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCLo16q7r .navbar {
    height: 70px;
  }
  .cid-tMCLo16q7r .navbar.opened {
    height: auto;
  }
  .cid-tMCLo16q7r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCLo16q7r a {
  display: inline;
}
.cid-tMCLo16q7r img {
  display: inline;
  padding-right: 10px;
}
.cid-tMCLo16q7r .dropdown-toggle:after {
  display: none;
}
.cid-tMCLo16q7r .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMCLo16q7r .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMCLo16q7r .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMCLo16q7r .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMCLo16q7r .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMCLo16q7r .nav-item {
  margin-right: 32px;
}
.cid-tMCLo16q7r .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMCLo16q7r ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMCLo16q7r .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMCLo16q7r .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMCLo16q7r .navbar-nav {
  margin: auto;
}
.cid-tMCLo16q7r .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMCLo16q7r .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMCLo16q7r .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCLo16q7r .btn {
  border-radius: 1000px !important;
}
.cid-tMCLo16q7r .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMCLo16q7r .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMCLo16q7r .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLo16q7r .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMCLo16q7r .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMCLo16q7r .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCLo16q7r .top {
    margin-top: 25px;
  }
}
.cid-tMCLo16q7r .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMCLo16q7r .container,
  .cid-tMCLo16q7r .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMCLo16q7r li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMCLo16q7r ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMCLo16q7r .icons-menu {
    min-width: initial !important;
  }
  .cid-tMCLo16q7r a.btn {
    margin-top: 10px;
  }
}
.cid-tMCLo16q7r a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLo1Iqpk {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMCLo1Iqpk .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCLo1Iqpk .mbr-section-title {
  text-align: center;
  color: #fedb01;
  margin: auto;
}
.cid-tMCLo1Iqpk .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLo1Iqpk .wrapper {
  margin: auto;
}
.cid-tMCLo21raC {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMCLo21raC .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLo21raC .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLo21raC .button-align {
  text-align: center;
}
.cid-tMCLo21raC .margin {
  margin-right: 14px;
}
.cid-tMCLo21raC .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLo21raC .margin {
    margin-right: 0px;
  }
  .cid-tMCLo21raC .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLo21raC .btn {
  margin-top: 20px;
}
.cid-tMCLo21raC a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLo2qiek {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMCLo2qiek .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMCLo2qiek .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLo2qiek .button-align {
  text-align: center;
}
.cid-tMCLo2qiek .margin {
  margin-right: 14px;
}
.cid-tMCLo2qiek .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLo2qiek .margin {
    margin-right: 0px;
  }
  .cid-tMCLo2qiek .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLo2qiek .btn {
  margin-top: 20px;
}
.cid-tMCLo2qiek a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLtyU6Zq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tMCLtyU6Zq .item:focus,
.cid-tMCLtyU6Zq span:focus {
  outline: none;
}
.cid-tMCLtyU6Zq .item-wrapper {
  position: relative;
}
.cid-tMCLtyU6Zq .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tMCLtyU6Zq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tMCLtyU6Zq .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-tMCLtyU6Zq .mbr-text,
.cid-tMCLtyU6Zq .mbr-section-btn {
  text-align: left;
}
.cid-tMCLtyU6Zq .item-title {
  text-align: left;
}
.cid-tMCLtyU6Zq .item-subtitle {
  text-align: left;
}
.cid-tMCLtyU6Zq .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 40%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tMCLtyU6Zq .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tMCLtyU6Zq .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tMCLtyU6Zq .embla__slide {
    min-width: 375px;
  }
}
.cid-tMCLtyU6Zq .embla__button--next,
.cid-tMCLtyU6Zq .embla__button--prev {
  display: flex;
}
.cid-tMCLtyU6Zq .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMCLtyU6Zq .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tMCLtyU6Zq .embla__button:hover {
  background: #3f69ff;
  color: #fff;
  transform: scale(1.05);
}
.cid-tMCLtyU6Zq .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMCLtyU6Zq .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMCLtyU6Zq .embla__button {
    top: auto;
  }
}
.cid-tMCLtyU6Zq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tMCLtyU6Zq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tMCLtyU6Zq .embla {
  position: relative;
  width: 100%;
}
.cid-tMCLtyU6Zq .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tMCLtyU6Zq .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tMCLtyU6Zq .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tMCLtyU6Zq .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tMCLtyU6Zq .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tMCLtyU6Zq .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-tMCLtyU6Zq .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMCLtyU6Zq .card-title {
  margin-bottom: 18px;
  color: #14142b;
  transition: 0.35s;
}
.cid-tMCLtyU6Zq .card-text {
  margin-bottom: 17px;
  color: #8c8c95;
}
.cid-tMCLtyU6Zq H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMCLtyU6Zq .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-tMCLtyU6Zq .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-tMCLtyU6Zq .link-title {
  display: inline-block;
}
.cid-tMCLtyU6Zq .margin {
  margin-right: 14px;
}
.cid-tMCLtyU6Zq .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-tMCLtyU6Zq .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-tMCLtyU6Zq .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-tMCLtyU6Zq .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-tMCLtyU6Zq .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMCLtyU6Zq .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMCLtyU6Zq .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCLtyU6Zq .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCLtyU6Zq .shadow:hover .mbr-iconfont,
.cid-tMCLtyU6Zq .shadow:hover .number,
.cid-tMCLtyU6Zq .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCLtyU6Zq .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMCLtVkcHb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #f7f7f7;
}
.cid-tMCLtVkcHb .item:focus,
.cid-tMCLtVkcHb span:focus {
  outline: none;
}
.cid-tMCLtVkcHb .item-wrapper {
  position: relative;
}
.cid-tMCLtVkcHb .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tMCLtVkcHb .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-tMCLtVkcHb .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-tMCLtVkcHb .mbr-text,
.cid-tMCLtVkcHb .mbr-section-btn {
  text-align: left;
}
.cid-tMCLtVkcHb .item-title {
  text-align: left;
}
.cid-tMCLtVkcHb .item-subtitle {
  text-align: left;
}
.cid-tMCLtVkcHb .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tMCLtVkcHb .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tMCLtVkcHb .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tMCLtVkcHb .embla__slide {
    min-width: 375px;
  }
}
.cid-tMCLtVkcHb .embla__button--next,
.cid-tMCLtVkcHb .embla__button--prev {
  display: flex;
}
.cid-tMCLtVkcHb .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMCLtVkcHb .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tMCLtVkcHb .embla__button:hover {
  background: #3f69ff;
  color: #fff;
  transform: scale(1.05);
}
.cid-tMCLtVkcHb .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMCLtVkcHb .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMCLtVkcHb .embla__button {
    top: auto;
  }
}
.cid-tMCLtVkcHb .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tMCLtVkcHb .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tMCLtVkcHb .embla {
  position: relative;
  width: 100%;
}
.cid-tMCLtVkcHb .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tMCLtVkcHb .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tMCLtVkcHb .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tMCLtVkcHb .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tMCLtVkcHb .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tMCLtVkcHb .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-tMCLtVkcHb .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
}
.cid-tMCLtVkcHb .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-tMCLtVkcHb img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.cid-tMCLtVkcHb .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCLtVkcHb .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCLtVkcHb .shadow:hover .number,
.cid-tMCLtVkcHb .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCLtVkcHb .shadow:hover .iconfont-wrapper > .mbr-iconfont > span {
  color: #000000 !important;
}
.cid-tMCLtVkcHb .card-title {
  margin-bottom: 16px;
  color: #4c4c4c;
  transition: 0.35s;
  text-align: left;
}
.cid-tMCLtVkcHb .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-tMCLtVkcHb H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-tMCLtVkcHb .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-tMCLtVkcHb .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-tMCLtVkcHb .link-title {
  display: inline-block;
}
.cid-tMCLtVkcHb .margin {
  margin-right: 14px;
}
.cid-tMCLtVkcHb .article {
  display: contents;
}
.cid-tMCLtVkcHb .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-tMCLtVkcHb .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-tMCLtVkcHb .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-tMCLtVkcHb .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-tMCLtVkcHb .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-tMCLtVkcHb .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-tMCLtVkcHb .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tMCLtVkcHb .btn {
  margin-top: 20px;
}
.cid-tMCLtVkcHb .card-title,
.cid-tMCLtVkcHb .iconfont-wrapper {
  text-align: center;
}
.cid-tMCLtVkcHb a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLun4mwU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tMCLun4mwU .item:focus,
.cid-tMCLun4mwU span:focus {
  outline: none;
}
.cid-tMCLun4mwU .item-wrapper {
  position: relative;
}
.cid-tMCLun4mwU .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tMCLun4mwU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 40%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tMCLun4mwU .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tMCLun4mwU .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tMCLun4mwU .embla__slide {
    min-width: 375px;
  }
}
.cid-tMCLun4mwU .embla__button--next,
.cid-tMCLun4mwU .embla__button--prev {
  display: flex;
}
.cid-tMCLun4mwU .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tMCLun4mwU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tMCLun4mwU .embla__button:hover {
  background: #3f69ff;
  color: #fff;
  transform: scale(1.05);
}
.cid-tMCLun4mwU .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tMCLun4mwU .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tMCLun4mwU .embla__button {
    top: auto;
  }
}
.cid-tMCLun4mwU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tMCLun4mwU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tMCLun4mwU .embla {
  position: relative;
  width: 100%;
}
.cid-tMCLun4mwU .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tMCLun4mwU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tMCLun4mwU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tMCLun4mwU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tMCLun4mwU .shadow {
  padding: 44px 32px 52px;
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  border: 1px solid #eff0f6;
}
.cid-tMCLun4mwU .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  padding: 20px 20px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tMCLun4mwU .wrap-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  background-size: cover;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.cid-tMCLun4mwU .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMCLun4mwU .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCLun4mwU .shadow:hover .number,
.cid-tMCLun4mwU .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCLun4mwU .shadow:hover .wrap-img {
  padding: 15px 15px 30px;
}
.cid-tMCLun4mwU .shadow:hover .wrap-img::after {
  transform: scale(1.05);
}
.cid-tMCLun4mwU .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
  border: 1px solid #dbdbdb;
}
.cid-tMCLun4mwU .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-tMCLun4mwU H3 {
  color: #1d1d1f;
}
.cid-tMCLun4mwU .card-subtitle {
  text-align: left;
  color: #14142b;
}
.cid-tMCLun4mwU .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-tMCLun4mwU .card-text {
  margin-bottom: 16px;
  text-align: left;
}
.cid-tMCLun4mwU .mbr-iconfont::before {
  font-size: 25px;
}
.cid-tMCLun4mwU .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tMCLun4mwU .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tMCLun4mwU .people {
  align-items: center;
}
.cid-tMCLun4mwU img {
  border-radius: 10%;
  height: 128px;
  width: 128px;
  margin: 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tMCLun4mwU .row.title-block {
    flex-direction: column;
  }
  .cid-tMCLun4mwU .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tMCLun4mwU .mbr-section-title {
    text-align: center;
  }
}
.cid-tMCLun4mwU .card-subtitle,
.cid-tMCLun4mwU .card-subtitle2 {
  display: inline;
}
@media (max-width: 1040px) {
  .cid-tMCLun4mwU .people {
    flex-direction: column;
  }
  .cid-tMCLun4mwU .card-text,
  .cid-tMCLun4mwU .align,
  .cid-tMCLun4mwU .iconfont-wrapper {
    text-align: center;
  }
  .cid-tMCLun4mwU img {
    margin-bottom: 20px !important;
  }
}
.cid-tMCLun4mwU .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 400px) {
  .cid-tMCLun4mwU .button-align {
    margin-top: 20px;
  }
}
.cid-tMCLun4mwU .btn {
  margin-top: 20px;
}
.cid-tMCLun4mwU a.btn > span {
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tMCLun4mwU .shadow {
    padding-top: 40px;
    padding-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .cid-tMCLun4mwU .shadow {
    padding: 33px 25px 36px;
  }
}
.cid-tMCLo2KgGG {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMCLo2KgGG .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLo2KgGG .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLo2KgGG .button-align {
  text-align: center;
}
.cid-tMCLo2KgGG .margin {
  margin-right: 14px;
}
.cid-tMCLo2KgGG .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLo2KgGG .margin {
    margin-right: 0px;
  }
  .cid-tMCLo2KgGG .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLo2KgGG .btn {
  margin-top: 20px;
}
.cid-tMCLo2KgGG a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLo6oOLO {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMCLo6oOLO .content {
    text-align: center;
  }
  .cid-tMCLo6oOLO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMCLo6oOLO .logo-subtitle {
  color: #8d97ad;
}
.cid-tMCLo6oOLO .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMCLo6oOLO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMCLo6oOLO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMCLo6oOLO .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMCLo6oOLO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMCLo6oOLO .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMCLo6oOLO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMCLo6oOLO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMCLo6oOLO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMCLo6oOLO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMCLo6oOLO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMCLo6oOLO .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMCLo6oOLO .list-item {
  display: flex;
}
.cid-tMCLo6oOLO .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMCLo6oOLO ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMCLo6oOLO ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMCLo6oOLO ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMCLo6oOLO .logo-subtitle,
.cid-tMCLo6oOLO .media-wrap {
  color: #ffffff;
}
.cid-tMCLo6oOLO .copyright > p {
  color: #fedb01;
}
.cid-tMCLo6oOLO .mbr-text {
  color: #ffffff;
}
.cid-tMCLo6oOLO .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMCLo6oOLO P {
  color: #ffffff;
}
.cid-tMCLo6oOLO .mbr-text UL {
  text-align: left;
}
.cid-tMCLHwDkq6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMCLHwDkq6 nav.navbar {
  position: fixed;
}
.cid-tMCLHwDkq6 .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-tMCLHwDkq6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMCLHwDkq6 .dropdown-item:hover,
.cid-tMCLHwDkq6 .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMCLHwDkq6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMCLHwDkq6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCLHwDkq6 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMCLHwDkq6 .container {
  display: flex;
  margin: auto;
}
.cid-tMCLHwDkq6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCLHwDkq6 .dropdown-menu,
.cid-tMCLHwDkq6 .navbar.opened {
  background: #ffffff !important;
}
.cid-tMCLHwDkq6 .nav-item:focus,
.cid-tMCLHwDkq6 .nav-link:focus {
  outline: none;
}
.cid-tMCLHwDkq6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCLHwDkq6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCLHwDkq6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCLHwDkq6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCLHwDkq6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCLHwDkq6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCLHwDkq6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMCLHwDkq6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCLHwDkq6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCLHwDkq6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCLHwDkq6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCLHwDkq6 .navbar.collapsed {
  justify-content: center;
}
.cid-tMCLHwDkq6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCLHwDkq6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCLHwDkq6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMCLHwDkq6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCLHwDkq6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCLHwDkq6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLHwDkq6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCLHwDkq6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCLHwDkq6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCLHwDkq6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCLHwDkq6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCLHwDkq6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCLHwDkq6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCLHwDkq6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCLHwDkq6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCLHwDkq6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCLHwDkq6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCLHwDkq6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCLHwDkq6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCLHwDkq6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCLHwDkq6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCLHwDkq6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCLHwDkq6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCLHwDkq6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCLHwDkq6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCLHwDkq6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCLHwDkq6 .dropdown-item.active,
.cid-tMCLHwDkq6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCLHwDkq6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCLHwDkq6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCLHwDkq6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCLHwDkq6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMCLHwDkq6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCLHwDkq6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCLHwDkq6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMCLHwDkq6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCLHwDkq6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCLHwDkq6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMCLHwDkq6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCLHwDkq6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLHwDkq6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLHwDkq6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCLHwDkq6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLHwDkq6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCLHwDkq6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCLHwDkq6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLHwDkq6 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMCLHwDkq6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCLHwDkq6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCLHwDkq6 .navbar {
    height: 70px;
  }
  .cid-tMCLHwDkq6 .navbar.opened {
    height: auto;
  }
  .cid-tMCLHwDkq6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCLHwDkq6 a {
  display: inline;
}
.cid-tMCLHwDkq6 img {
  display: inline;
  padding-right: 10px;
}
.cid-tMCLHwDkq6 .dropdown-toggle:after {
  display: none;
}
.cid-tMCLHwDkq6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMCLHwDkq6 .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMCLHwDkq6 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMCLHwDkq6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMCLHwDkq6 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMCLHwDkq6 .nav-item {
  margin-right: 32px;
}
.cid-tMCLHwDkq6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMCLHwDkq6 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMCLHwDkq6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMCLHwDkq6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMCLHwDkq6 .navbar-nav {
  margin: auto;
}
.cid-tMCLHwDkq6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMCLHwDkq6 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMCLHwDkq6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCLHwDkq6 .btn {
  border-radius: 1000px !important;
}
.cid-tMCLHwDkq6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMCLHwDkq6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMCLHwDkq6 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLHwDkq6 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMCLHwDkq6 .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMCLHwDkq6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCLHwDkq6 .top {
    margin-top: 25px;
  }
}
.cid-tMCLHwDkq6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMCLHwDkq6 .container,
  .cid-tMCLHwDkq6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMCLHwDkq6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMCLHwDkq6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMCLHwDkq6 .icons-menu {
    min-width: initial !important;
  }
  .cid-tMCLHwDkq6 a.btn {
    margin-top: 10px;
  }
}
.cid-tMCLHwDkq6 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLHx9aou {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMCLHx9aou .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCLHx9aou .mbr-section-title {
  text-align: center;
  color: #fedb01;
  margin: auto;
}
.cid-tMCLHx9aou .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLHx9aou .wrapper {
  margin: auto;
}
.cid-tMCLHxsF15 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMCLHxsF15 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLHxsF15 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLHxsF15 .button-align {
  text-align: center;
}
.cid-tMCLHxsF15 .margin {
  margin-right: 14px;
}
.cid-tMCLHxsF15 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLHxsF15 .margin {
    margin-right: 0px;
  }
  .cid-tMCLHxsF15 .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLHxsF15 .btn {
  margin-top: 20px;
}
.cid-tMCLHxsF15 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLHxJsi8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMCLHxJsi8 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMCLHxJsi8 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLHxJsi8 .button-align {
  text-align: center;
}
.cid-tMCLHxJsi8 .margin {
  margin-right: 14px;
}
.cid-tMCLHxJsi8 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLHxJsi8 .margin {
    margin-right: 0px;
  }
  .cid-tMCLHxJsi8 .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLHxJsi8 .btn {
  margin-top: 20px;
}
.cid-tMCLHxJsi8 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLLgBxSa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLLgBxSa .mbr-section-title {
  margin-bottom: 24px;
  color: #14142b;
  text-align: center;
}
.cid-tMCLLgBxSa .link-title {
  width: 100%;
  display: inline-block;
}
.cid-tMCLLgBxSa .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tMCLLgBxSa .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px;
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  margin-bottom: 48px;
}
.cid-tMCLLgBxSa .col-12.col-sm-6.col-lg-3:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tMCLLgBxSa .col-12.col-sm-6.col-lg-3:hover .mbr-iconfont,
.cid-tMCLLgBxSa .col-12.col-sm-6.col-lg-3:hover .number,
.cid-tMCLLgBxSa .col-12.col-sm-6.col-lg-3:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMCLLgBxSa .col-12.col-sm-6.col-lg-3:hover .inner {
  transform: scale(1.1);
}
.cid-tMCLLgBxSa .card-title {
  transition: 0.35s;
  margin-bottom: 12px;
  color: #14142b;
}
.cid-tMCLLgBxSa .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 30px;
}
.cid-tMCLLgBxSa .card-text {
  margin-bottom: 33px;
  color: #8c8c95;
}
@media (min-width: 970px) and (max-width: 1100px) {
  .cid-tMCLLgBxSa .card-wrapper {
    margin: 10px;
  }
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-tMCLLgBxSa .col-12:nth-child(3) {
    padding-top: 50px;
  }
  .cid-tMCLLgBxSa .col-12:nth-child(4) {
    padding-top: 50px;
  }
  .cid-tMCLLgBxSa .card-wrapper {
    margin: 20px;
    padding: 60px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-tMCLLgBxSa .col-12 {
    padding-top: 50px;
  }
  .cid-tMCLLgBxSa .col-12:first-child {
    padding-top: 0px;
  }
  .cid-tMCLLgBxSa .wrap-img {
    margin-bottom: 30px;
  }
  .cid-tMCLLgBxSa .card-wrapper {
    margin: 10px;
    padding: 60px 30px 40px;
  }
}
.cid-tMCLLgBxSa .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-tMCLLgBxSa .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tMCLLgBxSa .episode {
  color: #ffffff;
}
.cid-tMCLLgBxSa .img-title {
  color: #ffffff;
}
.cid-tMCLLgBxSa .margin {
  margin-right: 14px;
}
.cid-tMCLLgBxSa .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tMCLLgBxSa .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tMCLLgBxSa .title-block {
  padding-bottom: 30px;
  max-width: 493px;
  margin: auto;
}
.cid-tMCLLgBxSa .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tMCLLgBxSa .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMCLMkZZE9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-tMCLMkZZE9 .row {
  align-items: center;
  justify-content: space-between;
	margin-left: 30px;
    margin-right: 30px;
}
.cid-tMCLMkZZE9 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tMCLMkZZE9 .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tMCLMkZZE9 .mbr-text {
  color: #8c8c95;
  margin-bottom: 28px;
}
.cid-tMCLMkZZE9 .right-side {
  max-width: 554px;
}
.cid-tMCLMkZZE9 .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tMCLMkZZE9 .margin {
  margin-right: 14px;
}
.cid-tMCLMkZZE9 .shadow {
  padding: 60px 56px 45px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 568px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tMCLMkZZE9 .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMCLMkZZE9 .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMCLMkZZE9 .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMCLMkZZE9 .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMCLMkZZE9 .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMCLMkZZE9 .mbr-iconfont {
  margin-left: 0;
  margin-right: 0;
}
.cid-tMCLMkZZE9 .btn-social {
  margin: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  cursor: pointer;
}
.cid-tMCLMkZZE9 .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMCLMkZZE9 .btn-social .mbr-iconfont:hover {
  color: #fff !important;
}
.cid-tMCLMkZZE9 .btn-social:hover {
  color: #fff;
}
.cid-tMCLMkZZE9 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMCLMkZZE9 img {
 height: auto;
  border-radius: 5%;
  margin-bottom: 17px;
}
.cid-tMCLMkZZE9 .mbr-social-likes {
  max-width: 454px;
}
.cid-tMCLMkZZE9 .card-title {
  margin-bottom: 4px;
  color: #14142b;
}
.cid-tMCLMkZZE9 .card-subtitle {
  margin-bottom: 21px;
  color: #8c8c95;
}
.cid-tMCLMkZZE9 .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
@media (max-width: 768px) {
  .cid-tMCLMkZZE9 .shadow {
    margin-top: 30px;
  }
}
@media (max-width: 1010px) {
  .cid-tMCLMkZZE9 .margin {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .cid-tMCLMkZZE9 .button-align {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .cid-tMCLMkZZE9 .shadow {
    margin: auto;
  }
  .cid-tMCLMkZZE9 .right-side {
    max-width: initial;
    margin-bottom: 50px;
  }
}
.cid-tMCLMkZZE9 .btn {
  margin-top: 20px;
}
.cid-tMCLMkZZE9 a.btn > span {
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tMCLMkZZE9 .card.home-about-host {
    padding: 52px 40px 54px;
  }
}
@media (max-width: 479px) {
  .cid-tMCLMkZZE9 .card.home-about-host {
    padding: 43px 25px 45px;
  }
}





.cid-tMCLMkZZE9x {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tMCLMkZZE9x .row {
  align-items: center;
  justify-content: space-between;
	margin-left: 30px;
    margin-right: 30px;
}
.cid-tMCLMkZZE9x .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tMCLMkZZE9x .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tMCLMkZZE9x .mbr-text {
  color: #8c8c95;
  margin-bottom: 10px;
}
.cid-tMCLMkZZE9x .right-side {
  max-width: 554px;
}
.cid-tMCLMkZZE9x .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tMCLMkZZE9x .margin {
  margin-right: 14px;
}
.cid-tMCLMkZZE9x .shadow {
  padding: 60px 56px 45px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 568px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tMCLMkZZE9x .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMCLMkZZE9x .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMCLMkZZE9x .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMCLMkZZE9x .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMCLMkZZE9x .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMCLMkZZE9x .mbr-iconfont {
  margin-left: 0;
  margin-right: 0;
}
.cid-tMCLMkZZE9x .btn-social {
  margin: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  cursor: pointer;
}
.cid-tMCLMkZZE9x .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMCLMkZZE9x .btn-social .mbr-iconfont:hover {
  color: #fff !important;
}
.cid-tMCLMkZZE9x .btn-social:hover {
  color: #fff;
}
.cid-tMCLMkZZE9x .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMCLMkZZE9x img {
 height: auto;
  border-radius: 5%;
  margin-bottom: 17px;
}
.cid-tMCLMkZZE9x .mbr-social-likes {
  max-width: 454px;
}
.cid-tMCLMkZZE9x .card-title {
  margin-bottom: 4px;
  color: #14142b;
}
.cid-tMCLMkZZE9x .card-subtitle {
  margin-bottom: 21px;
  color: #8c8c95;
}
.cid-tMCLMkZZE9x .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
@media (max-width: 768px) {
  .cid-tMCLMkZZE9x .shadow {
    margin-top: 30px;
  }
}
@media (max-width: 1010px) {
  .cid-tMCLMkZZE9x .margin {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .cid-tMCLMkZZE9x .button-align {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .cid-tMCLMkZZE9x .shadow {
    margin: auto;
  }
  .cid-tMCLMkZZE9x .right-side {
    max-width: initial;
    margin-bottom: 50px;
  }
}
.cid-tMCLMkZZE9x .btn {
  margin-top: 20px;
}
.cid-tMCLMkZZE9x a.btn > span {
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tMCLMkZZE9x .card.home-about-host {
    padding: 52px 40px 54px;
  }
}
@media (max-width: 479px) {
  .cid-tMCLMkZZE9x .card.home-about-host {
    padding: 43px 25px 45px;
  }
}










.cid-tMCLMS2y9w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLMS2y9w .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMCLMS2y9w .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tMCLMS2y9w .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tMCLMS2y9w .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tMCLMS2y9w .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tMCLMS2y9w .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tMCLMS2y9w .margin {
  margin-right: 14px;
}
.cid-tMCLMS2y9w .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tMCLMS2y9w .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMCLMS2y9w .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMCLMS2y9w .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMCLMS2y9w .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMCLMS2y9w .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMCLMS2y9w .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #00a851;
  cursor: pointer;
}
.cid-tMCLMS2y9w .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMCLMS2y9w .btn-social:hover {
  color: #fff;
}
.cid-tMCLMS2y9w .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMCLMS2y9w img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tMCLMS2y9w .mbr-social-likes {
  max-width: 454px;
}
.cid-tMCLMS2y9w .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tMCLMS2y9w .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tMCLMS2y9w .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tMCLMS2y9w .card-title,
.cid-tMCLMS2y9w .card-subtitle,
.cid-tMCLMS2y9w .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tMCLMS2y9w .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tMCLMS2y9w .al {
    flex-direction: column;
  }
  .cid-tMCLMS2y9w .shadow {
    padding: 39px 36px;
  }
  .cid-tMCLMS2y9w img {
    padding-bottom: 20px;
  }
  .cid-tMCLMS2y9w .card-title,
  .cid-tMCLMS2y9w .card-subtitle,
  .cid-tMCLMS2y9w .card-text,
  .cid-tMCLMS2y9w .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tMCLMS2y9w .shadow {
    padding: 35px 15px;
  }
}
.cid-tMCLMS2y9w .mbr-iconfont {
  margin-left: 0;
}
.cid-tMCLM1YKNm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLM1YKNm .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tMCLM1YKNm .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-tMCLM1YKNm .wrapper {
  padding: 0rem;
}
.cid-tMCLM1YKNm .icon-left {
  margin-right: 0.1rem;
}
.cid-tMCLM1YKNm .icon-right {
  margin-left: 0.1rem;
}
.cid-tMCLM1YKNm .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
  border: 1px solid #dbdbdb;
}
.cid-tMCLM1YKNm .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-tMCLM1YKNm .card-subtitle {
  text-align: left;
}
.cid-tMCLM1YKNm .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  overflow: visible;
  padding: 44px 32px 52px;
  border: 1px solid #eff0f6;
}
.cid-tMCLM1YKNm .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-tMCLM1YKNm .card-text {
  margin-bottom: 16px;
  text-align: left;
}
.cid-tMCLM1YKNm .margin {
  margin-right: 14px;
}
.cid-tMCLM1YKNm .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tMCLM1YKNm .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tMCLM1YKNm .people {
  align-items: center;
}
.cid-tMCLM1YKNm .item-wrapper {
  width: 100%;
}
.cid-tMCLM1YKNm .mbr-section-title {
  text-align: center;
  margin-bottom: 16px;
  color: #14142b;
}
.cid-tMCLM1YKNm img {
  border-radius: 10%;
  height: 128px;
  width: 128px;
  margin: 0;
}
.cid-tMCLM1YKNm .mbr-iconfont::before {
  font-size: 25px;
}
.cid-tMCLM1YKNm .card-text,
.cid-tMCLM1YKNm .iconfont-wrapper {
  color: #8c8c95;
}
.cid-tMCLM1YKNm .card-subtitle,
.cid-tMCLM1YKNm .card-subtitle2 {
  display: inline;
}
.cid-tMCLM1YKNm .card-subtitle2 {
  color: #8c8c95;
}
@media (max-width: 576px) {
  .cid-tMCLM1YKNm .col-12.col-sm-6:first-child {
    padding-bottom: 20px;
  }
}
@media (max-width: 860px) {
  .cid-tMCLM1YKNm .row.people {
    flex-direction: column;
    align-items: initial;
  }
  .cid-tMCLM1YKNm img {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tMCLM1YKNm .shadow {
    padding-top: 40px;
    padding-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .cid-tMCLM1YKNm .shadow {
    padding: 33px 25px 36px;
  }
}
.cid-tMCLLEfwm7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLLEfwm7 .card-subtitle {
  text-align: left;
  margin-left: -15px;
  color: #8c8c95;
}
.cid-tMCLLEfwm7 .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  overflow: visible;
  padding: 48px 42px 38px;
  border: 1px solid #eff0f6;
}
.cid-tMCLLEfwm7 .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-tMCLLEfwm7 .card-text {
  margin-bottom: 16px;
  text-align: left;
  color: #8c8c95;
}
.cid-tMCLLEfwm7 .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tMCLLEfwm7 .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tMCLLEfwm7 img {
  border-radius: 10%;
  height: 65px;
  width: auto;
  margin: 0;
}
.cid-tMCLLEfwm7 .mbr-iconfont::before {
  font-size: 25px;
}
.cid-tMCLLEfwm7 .card-title {
  margin-bottom: 4px;
  padding: 0;
  margin-left: -15px;
}
.cid-tMCLLEfwm7 .col-12.col-md-6.col-lg-4 {
  margin-top: 30px;
}
.cid-tMCLLEfwm7 .col-12.col-md-6.col-lg-4:nth-child(1) {
  margin-top: 0px;
}
.cid-tMCLLEfwm7 .col-12.col-md-6.col-lg-4:nth-child(2) {
  margin-top: 0px;
}
.cid-tMCLLEfwm7 .col-12.col-md-6.col-lg-4:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tMCLLEfwm7 .col-12.col-md-6.col-lg-4:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-tMCLLEfwm7 .col-12.col-md-6.col-lg-4:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-tMCLLEfwm7 .align {
  display: flex;
  align-items: center;
}
.cid-tMCLLEfwm7 .mbr-section-title {
  margin-bottom: 56px;
  color: #14142b;
}
.cid-tMCLLEfwm7 .btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tMCLLEfwm7 .shadow {
    padding: 40px 40px 32px;
  }
}
@media (max-width: 479px) {
  .cid-tMCLLEfwm7 .shadow {
    padding: 33px 25px 28px;
  }
}
.cid-tMCLHzGfsd {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMCLHzGfsd .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLHzGfsd .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLHzGfsd .button-align {
  text-align: center;
}
.cid-tMCLHzGfsd .margin {
  margin-right: 14px;
}
.cid-tMCLHzGfsd .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLHzGfsd .margin {
    margin-right: 0px;
  }
  .cid-tMCLHzGfsd .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLHzGfsd .btn {
  margin-top: 20px;
}
.cid-tMCLHzGfsd a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLHA2JZB {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMCLHA2JZB .content {
    text-align: center;
  }
  .cid-tMCLHA2JZB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMCLHA2JZB .logo-subtitle {
  color: #8d97ad;
}
.cid-tMCLHA2JZB .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMCLHA2JZB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMCLHA2JZB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMCLHA2JZB .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMCLHA2JZB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMCLHA2JZB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMCLHA2JZB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMCLHA2JZB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMCLHA2JZB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMCLHA2JZB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMCLHA2JZB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMCLHA2JZB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMCLHA2JZB .list-item {
  display: flex;
}
.cid-tMCLHA2JZB .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMCLHA2JZB ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMCLHA2JZB ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMCLHA2JZB ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMCLHA2JZB .logo-subtitle,
.cid-tMCLHA2JZB .media-wrap {
  color: #ffffff;
}
.cid-tMCLHA2JZB .copyright > p {
  color: #fedb01;
}
.cid-tMCLHA2JZB .mbr-text {
  color: #ffffff;
}
.cid-tMCLHA2JZB .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMCLHA2JZB P {
  color: #ffffff;
}
.cid-tMCLHA2JZB .mbr-text UL {
  text-align: left;
}
.cid-tMCLPibiI7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMCLPibiI7 nav.navbar {
  position: fixed;
}
.cid-tMCLPibiI7 .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-tMCLPibiI7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMCLPibiI7 .dropdown-item:hover,
.cid-tMCLPibiI7 .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMCLPibiI7 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMCLPibiI7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCLPibiI7 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMCLPibiI7 .container {
  display: flex;
  margin: auto;
}
.cid-tMCLPibiI7 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCLPibiI7 .dropdown-menu,
.cid-tMCLPibiI7 .navbar.opened {
  background: #ffffff !important;
}
.cid-tMCLPibiI7 .nav-item:focus,
.cid-tMCLPibiI7 .nav-link:focus {
  outline: none;
}
.cid-tMCLPibiI7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCLPibiI7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCLPibiI7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCLPibiI7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCLPibiI7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCLPibiI7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCLPibiI7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMCLPibiI7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCLPibiI7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCLPibiI7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCLPibiI7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCLPibiI7 .navbar.collapsed {
  justify-content: center;
}
.cid-tMCLPibiI7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCLPibiI7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCLPibiI7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMCLPibiI7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCLPibiI7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCLPibiI7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLPibiI7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCLPibiI7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCLPibiI7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCLPibiI7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCLPibiI7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCLPibiI7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCLPibiI7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCLPibiI7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCLPibiI7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCLPibiI7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCLPibiI7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCLPibiI7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCLPibiI7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCLPibiI7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCLPibiI7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCLPibiI7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCLPibiI7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCLPibiI7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCLPibiI7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCLPibiI7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCLPibiI7 .dropdown-item.active,
.cid-tMCLPibiI7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCLPibiI7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCLPibiI7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCLPibiI7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCLPibiI7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMCLPibiI7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCLPibiI7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCLPibiI7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMCLPibiI7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCLPibiI7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCLPibiI7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMCLPibiI7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCLPibiI7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLPibiI7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLPibiI7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCLPibiI7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLPibiI7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCLPibiI7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCLPibiI7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLPibiI7 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMCLPibiI7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCLPibiI7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCLPibiI7 .navbar {
    height: 70px;
  }
  .cid-tMCLPibiI7 .navbar.opened {
    height: auto;
  }
  .cid-tMCLPibiI7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCLPibiI7 a {
  display: inline;
}
.cid-tMCLPibiI7 img {
  display: inline;
  padding-right: 10px;
}
.cid-tMCLPibiI7 .dropdown-toggle:after {
  display: none;
}
.cid-tMCLPibiI7 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMCLPibiI7 .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMCLPibiI7 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMCLPibiI7 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMCLPibiI7 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMCLPibiI7 .nav-item {
  margin-right: 32px;
}
.cid-tMCLPibiI7 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMCLPibiI7 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMCLPibiI7 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMCLPibiI7 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMCLPibiI7 .navbar-nav {
  margin: auto;
}
.cid-tMCLPibiI7 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMCLPibiI7 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMCLPibiI7 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCLPibiI7 .btn {
  border-radius: 1000px !important;
}
.cid-tMCLPibiI7 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMCLPibiI7 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMCLPibiI7 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLPibiI7 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMCLPibiI7 .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMCLPibiI7 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCLPibiI7 .top {
    margin-top: 25px;
  }
}
.cid-tMCLPibiI7 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMCLPibiI7 .container,
  .cid-tMCLPibiI7 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMCLPibiI7 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMCLPibiI7 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMCLPibiI7 .icons-menu {
    min-width: initial !important;
  }
  .cid-tMCLPibiI7 a.btn {
    margin-top: 10px;
  }
}
.cid-tMCLPibiI7 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLPiADKU {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMCLPiADKU .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCLPiADKU .mbr-section-title {
  text-align: center;
  color: #fedb01;
  margin: auto;
}
.cid-tMCLPiADKU .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLPiADKU .wrapper {
  margin: auto;
}
.cid-tMCLPiOf16 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMCLPiOf16 .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLPiOf16 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLPiOf16 .button-align {
  text-align: center;
}
.cid-tMCLPiOf16 .margin {
  margin-right: 14px;
}
.cid-tMCLPiOf16 .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLPiOf16 .margin {
    margin-right: 0px;
  }
  .cid-tMCLPiOf16 .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLPiOf16 .btn {
  margin-top: 20px;
}
.cid-tMCLPiOf16 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLPj4LtZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMCLPj4LtZ .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMCLPj4LtZ .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLPj4LtZ .button-align {
  text-align: center;
}
.cid-tMCLPj4LtZ .margin {
  margin-right: 14px;
}
.cid-tMCLPj4LtZ .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLPj4LtZ .margin {
    margin-right: 0px;
  }
  .cid-tMCLPj4LtZ .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLPj4LtZ .btn {
  margin-top: 20px;
}
.cid-tMCLPj4LtZ a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLUfHJUL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLUfHJUL a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLUfHJUL .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMCLUfHJUL .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-tMCLUfHJUL .mbr-section-subtitle {
  color: #14142b;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}
.cid-tMCLUfHJUL .mbr-text {
  color: #5f5d68;
  margin-bottom: 56px;
}
.cid-tMCLUfHJUL .right-side {
  max-width: 554px;
}
.cid-tMCLUfHJUL .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tMCLUfHJUL .margin {
  margin-right: 14px;
}
.cid-tMCLUfHJUL .shadow {
  padding: 62px 56px 64px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 690px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tMCLUfHJUL img {
  max-width: 186px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 17px;
}
.cid-tMCLUfHJUL .card-title {
  margin-bottom: 4px;
  color: #14142b;
}
.cid-tMCLUfHJUL .card-subtitle {
  margin-bottom: 21px;
  color: #8c8c95;
}
.cid-tMCLUfHJUL .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-tMCLUfHJUL .mbr-social-likes.big .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 37px;
  height: 37px;
  line-height: 44px;
  margin: 0 10px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #00a851;
  cursor: pointer;
}
.cid-tMCLUfHJUL .mbr-social-likes.big .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMCLUfHJUL .mbr-social-likes.big .btn-social:hover {
  color: #fff;
}
.cid-tMCLUfHJUL .mbr-social-likes.big .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMCLUfHJUL .r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.cid-tMCLUfHJUL .mbr-social-likes.small {
  display: flex;
}
.cid-tMCLUfHJUL .mbr-social-likes.big {
  display: block;
}
.cid-tMCLUfHJUL .mbr-social-likes.small .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #00a851;
  cursor: pointer;
}
.cid-tMCLUfHJUL .mbr-social-likes.small .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMCLUfHJUL .mbr-social-likes.small .btn-social:hover {
  color: #fff;
}
.cid-tMCLUfHJUL .mbr-social-likes.small .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMCLUfHJUL .form-control,
.cid-tMCLUfHJUL form .btn {
  min-height: initial;
}
.cid-tMCLUfHJUL a.btn,
.cid-tMCLUfHJUL button {
  padding: 24px 40px;
  border-radius: 80px;
}
.cid-tMCLUfHJUL input {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 64px;
  margin-bottom: 40px;
  padding: 8px 26px;
}
.cid-tMCLUfHJUL textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-tMCLUfHJUL input:hover {
  border-color: #14142b !important;
}
.cid-tMCLUfHJUL textarea:hover {
  border-color: #14142b !important;
}
.cid-tMCLUfHJUL input:focus {
  border-color: #14142b !important;
}
.cid-tMCLUfHJUL textarea:focus {
  border-color: #14142b !important;
}
.cid-tMCLUfHJUL .form-group {
  margin-bottom: 0;
}
.cid-tMCLUfHJUL .listen {
  margin-bottom: 24px;
}
.cid-tMCLUfHJUL .phone {
  margin-bottom: 44px;
}
.cid-tMCLUfHJUL .email {
  margin-bottom: 21px;
}
.cid-tMCLUfHJUL .listen,
.cid-tMCLUfHJUL .big {
  text-align: left;
  color: #8c8c95;
}
.cid-tMCLUfHJUL .mbr-text,
.cid-tMCLUfHJUL .button-align {
  color: #8c8c95;
}
.cid-tMCLUfHJUL .email span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-tMCLUfHJUL .phone span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-tMCLUfHJUL select.form-control:hover {
  border-color: #14142b;
}
.cid-tMCLUfHJUL select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: border-color 300ms ease;
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  display: flex;
}
.cid-tMCLUfHJUL .form-check > input {
  height: 1em;
  width: 1em;
  padding: 0;
  float: initial;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .cid-tMCLUfHJUL .shadow {
    width: 100%;
    margin-top: 60px;
    max-width: initial;
  }
  .cid-tMCLUfHJUL .left-side,
  .cid-tMCLUfHJUL .right-side {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 992px) {
  .cid-tMCLUfHJUL .right-side {
    max-width: initial;
    margin-bottom: 50px;
  }
  .cid-tMCLUfHJUL .shadow {
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-tMCLUfHJUL .shadow {
    padding: 25px;
  }
  .cid-tMCLUfHJUL input {
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-tMCLUfHJUL .r {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .cid-tMCLUfHJUL .mbr-social-likes.small {
    margin-top: 20px;
  }
}
.cid-tMCLUfHJUL .big > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMCLUfHJUL .big > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMCLUfHJUL .big > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMCLUfHJUL .big > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMCLUfHJUL .big > .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMCLUfHJUL .small > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMCLUfHJUL .small > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMCLUfHJUL .small > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMCLUfHJUL .small > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMCLUfHJUL .small > .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMCLUfHJUL .mbr-iconfont {
  margin-right: 8px;
}
.cid-tMCLVlKD9w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLVlKD9w .card {
  padding: 120px 74px 120px 76px;
  background: #14142b;
  border-radius: 30px;
}
.cid-tMCLVlKD9w .align {
  align-items: center;
}
.cid-tMCLVlKD9w .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tMCLVlKD9w .btn {
  border-radius: 80px;
  padding: 24px 40px;
}
.cid-tMCLVlKD9w .btn:hover {
  transform: initial !important;
}
.cid-tMCLVlKD9w .form-group.col-12 {
  border-radius: 100px !important;
  padding-left: 26px;
}
.cid-tMCLVlKD9w .button {
  right: 1px;
  top: 11px;
}
.cid-tMCLVlKD9w .form-control {
  background-color: #ffffff;
  border-radius: 0;
  border: none !important;
  box-shadow: none;
  padding: 16px 0px;
  height: 50px;
}
.cid-tMCLVlKD9w .form-control:hover {
  box-shadow: none;
}
.cid-tMCLVlKD9w .form-group {
  margin-bottom: 0;
  position: relative;
  background-color: #ffffff;
  padding: 16px 18px;
  border-radius: 100px !important;
}
.cid-tMCLVlKD9w .text-part {
  max-width: 405px;
  margin-right: 20px;
}
.cid-tMCLVlKD9w .form-part {
  width: 550px;
}
.cid-tMCLVlKD9w textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-tMCLVlKD9w input:hover {
  border-color: #14142b !important;
}
.cid-tMCLVlKD9w textarea:hover {
  border-color: #14142b !important;
}
.cid-tMCLVlKD9w input:focus {
  border-color: #14142b !important;
}
.cid-tMCLVlKD9w textarea:focus {
  border-color: #14142b !important;
}
.cid-tMCLVlKD9w .col-lg-12.col-md-12.col-sm-12.form-group {
  border-radius: 30px !important;
  padding: 30px !important;
}
@media (max-width: 1125px) {
  .cid-tMCLVlKD9w .mbr-section-title {
    padding-bottom: 30px;
    text-align: center;
    max-width: initial;
    width: 100%;
  }
  .cid-tMCLVlKD9w .form-part {
    width: 100%;
  }
  .cid-tMCLVlKD9w .text-part {
    max-width: initial;
    width: 100%;
    margin-right: 0;
  }
  .cid-tMCLVlKD9w .form-group.col-12 {
    padding-right: 8px;
    max-width: initial;
    width: 100%;
  }
}
@media (max-width: 630px) {
  .cid-tMCLVlKD9w .form-group.col-12.col-lg {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
  }
  .cid-tMCLVlKD9w input.form-control {
    margin-bottom: 20px;
    height: 64px;
    width: 100%;
    border-radius: 100px;
    padding: 8px 16px;
  }
  .cid-tMCLVlKD9w .card {
    padding: 61px 25px;
  }
  .cid-tMCLVlKD9w button {
    width: 100%;
  }
  .cid-tMCLVlKD9w .col-auto.button {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
    width: 100%;
  }
}
.cid-tMCLVlKD9w a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLVlKD9w .form-group.col-12.col-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tMCLUMBUSU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCLUMBUSU .card-heading {
  color: #000000;
  margin-bottom: 24px;
}
.cid-tMCLUMBUSU .row {
  justify-content: center;
}
.cid-tMCLUMBUSU .p {
  width: 100%;
}
.cid-tMCLUMBUSU .mbr-iconfont {
  font-size: 23px;
  margin-right: 17px;
  color: #00a851;
}
.cid-tMCLUMBUSU .mbr-text {
  display: inline;
}
.cid-tMCLUMBUSU .mbr-text:last-child {
  margin-bottom: 0px;
}
.cid-tMCLUMBUSU .text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-tMCLUMBUSU .line {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.cid-tMCLUMBUSU .shadow {
  padding: 52px 56px 58px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 568px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tMCLUMBUSU .left-side {
  max-width: 596px;
}
.cid-tMCLUMBUSU .right-side {
  max-width: 473px;
  margin-right: 0;
  margin-left: auto;
}
.cid-tMCLUMBUSU a.btn,
.cid-tMCLUMBUSU button {
  padding: 24px 40px;
  border-radius: 80px;
  width: 100%;
  margin-top: 24px;
}
.cid-tMCLUMBUSU .sel-wrapper {
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  display: flex;
}
.cid-tMCLUMBUSU .sel-wrapper:hover {
  border-color: #14142b;
}
.cid-tMCLUMBUSU .sel-wrapper > select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: color 350ms ease;
}
.cid-tMCLUMBUSU .sel-wrapper > select.form-control:hover {
  color: #000000;
}
.cid-tMCLUMBUSU .form-group {
  margin-bottom: 0;
}
.cid-tMCLUMBUSU .card-title {
  margin-bottom: 7px;
}
.cid-tMCLUMBUSU .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-tMCLUMBUSU .line1 {
  margin-bottom: 40px;
  width: 100%;
  height: 1px;
  background-color: #e2e3e9;
}
.cid-tMCLUMBUSU .card-subtitle {
  margin-top: 24px;
}
.cid-tMCLUMBUSU option[value=""][disabled] {
  display: none;
}
.cid-tMCLUMBUSU select.form-control:hover {
  border-color: #14142b;
}
.cid-tMCLUMBUSU select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: border-color 300ms ease;
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  display: flex;
}
.cid-tMCLUMBUSU .form-check > input {
  height: 1em;
  width: 1em;
  padding: 0;
  float: initial;
  margin-bottom: 0;
}
.cid-tMCLUMBUSU input {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 64px;
  margin-bottom: 30px;
  padding: 8px 26px;
}
.cid-tMCLUMBUSU textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-tMCLUMBUSU input:hover {
  border-color: #14142b !important;
}
.cid-tMCLUMBUSU textarea:hover {
  border-color: #14142b !important;
}
.cid-tMCLUMBUSU input:focus {
  border-color: #14142b !important;
}
.cid-tMCLUMBUSU textarea:focus {
  border-color: #14142b !important;
}
.cid-tMCLUMBUSU .row.main {
  align-items: center;
}
@media (max-width: 990px) {
  .cid-tMCLUMBUSU .shadow {
    width: 100%;
    margin: auto;
    max-width: 720px;
  }
  .cid-tMCLUMBUSU .right-side {
    margin-top: 60px;
  }
  .cid-tMCLUMBUSU .left-side,
  .cid-tMCLUMBUSU .right-side {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 600px) {
  .cid-tMCLUMBUSU .shadow {
    padding: 25px;
  }
  .cid-tMCLUMBUSU input {
    margin-bottom: 20px;
  }
}
.cid-tMCLUMBUSU a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLPlXanx {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMCLPlXanx .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLPlXanx .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLPlXanx .button-align {
  text-align: center;
}
.cid-tMCLPlXanx .margin {
  margin-right: 14px;
}
.cid-tMCLPlXanx .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLPlXanx .margin {
    margin-right: 0px;
  }
  .cid-tMCLPlXanx .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLPlXanx .btn {
  margin-top: 20px;
}
.cid-tMCLPlXanx a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLPmm3dB {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMCLPmm3dB .content {
    text-align: center;
  }
  .cid-tMCLPmm3dB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMCLPmm3dB .logo-subtitle {
  color: #8d97ad;
}
.cid-tMCLPmm3dB .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMCLPmm3dB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMCLPmm3dB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMCLPmm3dB .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMCLPmm3dB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMCLPmm3dB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMCLPmm3dB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMCLPmm3dB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMCLPmm3dB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMCLPmm3dB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMCLPmm3dB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMCLPmm3dB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMCLPmm3dB .list-item {
  display: flex;
}
.cid-tMCLPmm3dB .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMCLPmm3dB ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMCLPmm3dB ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMCLPmm3dB ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMCLPmm3dB .logo-subtitle,
.cid-tMCLPmm3dB .media-wrap {
  color: #ffffff;
}
.cid-tMCLPmm3dB .copyright > p {
  color: #fedb01;
}
.cid-tMCLPmm3dB .mbr-text {
  color: #ffffff;
}
.cid-tMCLPmm3dB .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMCLPmm3dB P {
  color: #ffffff;
}
.cid-tMCLPmm3dB .mbr-text UL {
  text-align: left;
}
.cid-tMCLXWOAMx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMCLXWOAMx nav.navbar {
  position: fixed;
}
.cid-tMCLXWOAMx .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-tMCLXWOAMx .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tMCLXWOAMx .dropdown-item:hover,
.cid-tMCLXWOAMx .dropdown-item:focus {
  color: #00a851 !important;
}
.cid-tMCLXWOAMx .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tMCLXWOAMx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCLXWOAMx .nav-link {
  position: relative;
  padding: 0;
}
.cid-tMCLXWOAMx .container {
  display: flex;
  margin: auto;
}
.cid-tMCLXWOAMx .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCLXWOAMx .dropdown-menu,
.cid-tMCLXWOAMx .navbar.opened {
  background: #ffffff !important;
}
.cid-tMCLXWOAMx .nav-item:focus,
.cid-tMCLXWOAMx .nav-link:focus {
  outline: none;
}
.cid-tMCLXWOAMx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCLXWOAMx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCLXWOAMx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCLXWOAMx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCLXWOAMx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCLXWOAMx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCLXWOAMx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tMCLXWOAMx .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCLXWOAMx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCLXWOAMx .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCLXWOAMx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCLXWOAMx .navbar.collapsed {
  justify-content: center;
}
.cid-tMCLXWOAMx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCLXWOAMx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMCLXWOAMx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tMCLXWOAMx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCLXWOAMx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCLXWOAMx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLXWOAMx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCLXWOAMx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCLXWOAMx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCLXWOAMx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCLXWOAMx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCLXWOAMx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCLXWOAMx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCLXWOAMx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMCLXWOAMx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCLXWOAMx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCLXWOAMx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCLXWOAMx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCLXWOAMx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCLXWOAMx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tMCLXWOAMx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCLXWOAMx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCLXWOAMx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCLXWOAMx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMCLXWOAMx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCLXWOAMx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCLXWOAMx .dropdown-item.active,
.cid-tMCLXWOAMx .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCLXWOAMx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCLXWOAMx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCLXWOAMx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCLXWOAMx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMCLXWOAMx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCLXWOAMx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCLXWOAMx ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tMCLXWOAMx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCLXWOAMx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCLXWOAMx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3e4095;
}
.cid-tMCLXWOAMx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCLXWOAMx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLXWOAMx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCLXWOAMx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCLXWOAMx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLXWOAMx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCLXWOAMx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCLXWOAMx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCLXWOAMx .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tMCLXWOAMx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCLXWOAMx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMCLXWOAMx .navbar {
    height: 70px;
  }
  .cid-tMCLXWOAMx .navbar.opened {
    height: auto;
  }
  .cid-tMCLXWOAMx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMCLXWOAMx a {
  display: inline;
}
.cid-tMCLXWOAMx img {
  display: inline;
  padding-right: 10px;
}
.cid-tMCLXWOAMx .dropdown-toggle:after {
  display: none;
}
.cid-tMCLXWOAMx .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tMCLXWOAMx .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-tMCLXWOAMx .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tMCLXWOAMx .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tMCLXWOAMx .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tMCLXWOAMx .nav-item {
  margin-right: 32px;
}
.cid-tMCLXWOAMx .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tMCLXWOAMx ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tMCLXWOAMx .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tMCLXWOAMx .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tMCLXWOAMx .navbar-nav {
  margin: auto;
}
.cid-tMCLXWOAMx .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tMCLXWOAMx .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tMCLXWOAMx .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tMCLXWOAMx .btn {
  border-radius: 1000px !important;
}
.cid-tMCLXWOAMx .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tMCLXWOAMx .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tMCLXWOAMx .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMCLXWOAMx .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tMCLXWOAMx .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-tMCLXWOAMx .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tMCLXWOAMx .top {
    margin-top: 25px;
  }
}
.cid-tMCLXWOAMx .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tMCLXWOAMx .container,
  .cid-tMCLXWOAMx .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tMCLXWOAMx li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tMCLXWOAMx ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tMCLXWOAMx .icons-menu {
    min-width: initial !important;
  }
  .cid-tMCLXWOAMx a.btn {
    margin-top: 10px;
  }
}
.cid-tMCLXWOAMx a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLXXg6Xh {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMCLXXg6Xh .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tMCLXXg6Xh .mbr-section-title {
  text-align: center;
  color: #fedb01;
  margin: auto;
}
.cid-tMCLXXg6Xh .row {
  align-items: center;
  height: 100%;
}
.cid-tMCLXXg6Xh .wrapper {
  margin: auto;
}
.cid-tMCLXXy7YG {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/colores-top-1920x214.jpg");
}
.cid-tMCLXXy7YG .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLXXy7YG .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLXXy7YG .button-align {
  text-align: center;
}
.cid-tMCLXXy7YG .margin {
  margin-right: 14px;
}
.cid-tMCLXXy7YG .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLXXy7YG .margin {
    margin-right: 0px;
  }
  .cid-tMCLXXy7YG .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLXXy7YG .btn {
  margin-top: 20px;
}
.cid-tMCLXXy7YG a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLXXODhv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tMCLXXODhv .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #00a851;
  display: inline-block;
}
.cid-tMCLXXODhv .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLXXODhv .button-align {
  text-align: center;
}
.cid-tMCLXXODhv .margin {
  margin-right: 14px;
}
.cid-tMCLXXODhv .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLXXODhv .margin {
    margin-right: 0px;
  }
  .cid-tMCLXXODhv .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLXXODhv .btn {
  margin-top: 20px;
}
.cid-tMCLXXODhv a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCM70gzxy {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-tMCM70gzxy .plan {
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: 1px solid #d1d2d7;
  overflow: visible;
  word-break: break-word;
  padding: 67px 30px 58px;
	border-radius: 25px;
}
.cid-tMCM70gzxy .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-tMCM70gzxy .align-center {
    margin-top: 2rem;
  }
  .cid-tMCM70gzxy .align-center:first-child {
    margin-top: 0rem;
  }
  .cid-tMCM70gzxy .align-center:nth-child(2) {
    margin-top: 0rem;
  }
}
.cid-tMCM70gzxy .line {
  width: 100%;
  height: 1px;
  background-color: #5f5d68;
  margin-bottom: 41px;
}
.cid-tMCM70gzxy .list {
  text-align: left;
  margin-bottom: 54px;
}
.cid-tMCM70gzxy .category {
  text-align: left;
  margin-bottom: 24px;
}
.cid-tMCM70gzxy .link {
  text-align: left;
}
.cid-tMCM70gzxy li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
.cid-tMCM70gzxy li:last-child {
  margin-bottom: 0;
}
.cid-tMCM70gzxy ul {
  padding-inline-start: 0px;
}
.cid-tMCM70gzxy .card1 {
  background-color: #ffffff;
}
.cid-tMCM70gzxy .card2 {
  background-color: #f2f2f4;
}
.cid-tMCM70gzxy .card3 {
  background-color: #ffffff;
}
.cid-tMCM70gzxy .card4 {
  background-color: #fedb01;
}
@media (min-width: 990px) and (max-width: 1160px) {
  .cid-tMCM70gzxy .plan {
    padding: 47px;
  }
}
.cid-tMCM70gzxy a.btn {
  margin: auto;
}
.cid-tMCM70gzxy .card {
  border: 1px solid #eff0f6;
}
.cid-tMCM70gzxy .text {
  margin-bottom: 34px;
   color: #5f5d68;
}
.cid-tMCM70gzxy .text2 {
  margin-bottom: 34px;
  text-align: left;
  color: #14142b;
}
.cid-tMCM70gzxy .align {
  margin-bottom: 16px;
}
.cid-tMCM70gzxy .name {
  margin-bottom: 9px;
}
.cid-tMCM70gzxy .price,
.cid-tMCM70gzxy .montn,
.cid-tMCM70gzxy .month2 {
  display: inline !important;
}
.cid-tMCM70gzxy .mbr-text {
  display: inline;
  width: 100%;
}
.cid-tMCM70gzxy .month {
  width: auto;
  display: inline;
  color: #8c8c95;
}
.cid-tMCM70gzxy .month2 {
  width: auto;
  display: inline;
  color: #14142b;
}
.cid-tMCM70gzxy span {
  padding: 6px;
  color: #3e4095;
  font-size: 0.6rem;
  margin-right: 6px;
}
.cid-tMCM70gzxy .name,
.cid-tMCM70gzxy .align {
    color: #14142b;
}
.cid-tMCM70gzxy .mbr-section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tMCM70gzxy .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tMCM70gzxy .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 20px;
  margin: auto;
}
.cid-tMCM70gzxy .card1:hover,
.cid-tMCM70gzxy .card2:hover,
.cid-tMCM70gzxy .card3:hover {
  transform: translate(0px, -6px);
}
@media (max-width: 576px) {
  .cid-tMCM70gzxy .plan {
    padding: 57px 20px 51px;
  }
}
@media (max-width: 768px) {
  .cid-tMCM70gzxy .align-center:nth-child(2) {
    margin-top: 2rem;
  }
}
.cid-tMCM70gzxy a.btn > span {
  margin-left: 0.5rem;
  background-color: transparent;
}
.cid-tMCM68U3Jo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMCM68U3Jo .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tMCM68U3Jo .title-block {
  justify-content: space-between;
  margin: auto;
  margin-bottom: 58px;
  align-items: center;
  max-width: 571px;
}
.cid-tMCM68U3Jo .card-title {
  color: #4c4c4c;
  text-align: left;
  margin-bottom: 16px;
}
.cid-tMCM68U3Jo H3 {
  color: #1d1d1f;
}
.cid-tMCM68U3Jo .card-subtitle {
  text-align: left;
}
.cid-tMCM68U3Jo .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tMCM68U3Jo .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tMCM68U3Jo .card-title,
.cid-tMCM68U3Jo .iconfont-wrapper {
  text-align: center;
  color: #14142b;
}
.cid-tMCM68U3Jo .mbr-section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tMCM68U3Jo .card-text {
  color: #8c8c95;
}
.cid-tMCM68U3Jo .year-title {
  text-align: center;
  color: #14142b;
  margin-bottom: 20px;
  position: relative;
}
.cid-tMCM68U3Jo .year-subtitle {
  text-align: center;
  color: #5f5d68;
}
.cid-tMCM68U3Jo .line {
  width: 20px;
  background-color: #e2e3e9;
  height: 2px;
  margin-top: -20px;
}
.cid-tMCM68U3Jo .accent {
  width: 25px;
  min-height: 25px;
  min-width: 25px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  border-radius: 1000px;
}
.cid-tMCM68U3Jo .accent1 {
  background-color: #fedb01;
}
.cid-tMCM68U3Jo .accent2 {
  background-color: #6c38ff;
}
.cid-tMCM68U3Jo .accent3 {
  background-color: #ff4433;
}
.cid-tMCM68U3Jo .accent4 {
  background-color: #ff9417;
}
.cid-tMCM68U3Jo .accent5 {
  background-color: #4cc9f0;
}
.cid-tMCM68U3Jo .timeline {
  align-items: center;
}
.cid-tMCM68U3Jo .year-title:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: none;
  margin: 11px 40px 0px 0px;
  border-style: solid;
  border-width: 5px;
  border-color: #fff;
  position: absolute;
  left: -40px;
  top: 15px;
}
.cid-tMCM68U3Jo .year-title.year1:before {
  background-color: #fedb01;
}
.cid-tMCM68U3Jo .year-title.year2:before {
  background-color: #6c38ff;
}
.cid-tMCM68U3Jo .year-title.year3:before {
  background-color: #ff4433;
}
.cid-tMCM68U3Jo .year-title.year4:before {
  background-color: #ff9417;
}
.cid-tMCM68U3Jo .year-title.year5:before {
  background-color: #4cc9f0;
}
.cid-tMCM68U3Jo .timeline-year-accent {
  width: 25px;
  min-height: 25px;
}
@media (max-width: 1120px) {
  .cid-tMCM68U3Jo .main {
    display: flex;
    justify-content: space-between;
    max-width: 849px;
  }
  .cid-tMCM68U3Jo .timeline.row {
    flex-direction: column;
    position: relative;
    max-width: 307px;
  }
  .cid-tMCM68U3Jo .year {
    flex-direction: row;
  }
  .cid-tMCM68U3Jo .year-title {
    text-align: left;
    margin-bottom: 4px;
  }
  .cid-tMCM68U3Jo .year-title:before {
    display: block;
  }
  .cid-tMCM68U3Jo .accent {
    display: none;
  }
  .cid-tMCM68U3Jo .row.title-block {
    margin: initial;
    max-width: 407px;
    align-items: flex-start;
  }
  .cid-tMCM68U3Jo .line {
    display: none;
  }
  .cid-tMCM68U3Jo .line1 {
    display: block;
    height: 100%;
    width: 2px;
    background-color: #e2e3e9;
    margin-top: -20px;
    margin-left: -15px;
    padding: 0 !important;
    position: absolute;
    left: 0;
  }
  .cid-tMCM68U3Jo .year-subtitle {
    margin-bottom: 60px;
    text-align: left;
  }
  .cid-tMCM68U3Jo .row.title-block > .col-12 {
    padding: 0 !important;
  }
}
.cid-tMCM68U3Jo .no-padd {
  margin-bottom: 0px !important;
}
@media (max-width: 750px) {
  .cid-tMCM68U3Jo .main {
    flex-direction: column;
  }
  .cid-tMCM68U3Jo .row.title-block,
  .cid-tMCM68U3Jo .timeline {
    margin: auto;
  }
  .cid-tMCM68U3Jo .row.title-block {
    padding-bottom: 40px;
    width: 90%;
  }
  .cid-tMCM68U3Jo .button-align {
    margin-top: 16px;
  }
}
.cid-tMCM68U3Jo .btn {
  margin-top: 20px;
}
.cid-tMCM68U3Jo a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLXZi70k {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/fondo-2000x268.jpg");
}
.cid-tMCLXZi70k .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tMCLXZi70k .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tMCLXZi70k .button-align {
  text-align: center;
}
.cid-tMCLXZi70k .margin {
  margin-right: 14px;
}
.cid-tMCLXZi70k .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tMCLXZi70k .margin {
    margin-right: 0px;
  }
  .cid-tMCLXZi70k .b {
    margin-bottom: 20px;
  }
}
.cid-tMCLXZi70k .btn {
  margin-top: 20px;
}
.cid-tMCLXZi70k a.btn > span {
  margin-left: 0.5rem;
}
.cid-tMCLXZGLZu {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #3e4199;
}
@media (max-width: 767px) {
  .cid-tMCLXZGLZu .content {
    text-align: center;
  }
  .cid-tMCLXZGLZu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tMCLXZGLZu .logo-subtitle {
  color: #8d97ad;
}
.cid-tMCLXZGLZu .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tMCLXZGLZu .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tMCLXZGLZu .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tMCLXZGLZu .media-wrap img {
  height: 6rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-tMCLXZGLZu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tMCLXZGLZu .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tMCLXZGLZu .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tMCLXZGLZu .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tMCLXZGLZu .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tMCLXZGLZu .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tMCLXZGLZu .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tMCLXZGLZu .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tMCLXZGLZu .list-item {
  display: flex;
}
.cid-tMCLXZGLZu .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tMCLXZGLZu ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tMCLXZGLZu ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tMCLXZGLZu ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tMCLXZGLZu .logo-subtitle,
.cid-tMCLXZGLZu .media-wrap {
  color: #ffffff;
}
.cid-tMCLXZGLZu .copyright > p {
  color: #fedb01;
}
.cid-tMCLXZGLZu .mbr-text {
  color: #ffffff;
}
.cid-tMCLXZGLZu .column-title {
  color: #fedb01;
  text-align: left;
}
.cid-tMCLXZGLZu P {
  color: #ffffff;
}
.cid-tMCLXZGLZu .mbr-text UL {
  text-align: left;
}

.cid-tMhDTx59Ye {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/fondo-imagen-2000x959.jpg");
}
.cid-tMhDTx59Ye .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tMhDTx59Ye .shadow {
  border-color: #eff0f6;
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  display: flex;
  flex-direction: row;
  padding: 52px 52px 52px 40px;
  background-color: #ffffff;
}
.cid-tMhDTx59Ye .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tMhDTx59Ye .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  width: 311px;
  height: 311px;
  border-radius: 30px;
  transform: translate(0px, 0px);
}
.cid-tMhDTx59Ye .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tMhDTx59Ye .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):not(.link2),
.cid-tMhDTx59Ye .shadow:hover .mbr-iconfont,
.cid-tMhDTx59Ye .shadow:hover .number,
.cid-tMhDTx59Ye .shadow:hover .card-title {
  color: #3f69ff !important;
}
.cid-tMhDTx59Ye .shadow:hover .btn > .mbr-iconfont {
  color: #fff !important;
}
.cid-tMhDTx59Ye .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tMhDTx59Ye .card-title {
  margin-bottom: 16px;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  color: #3e4199;
}
.cid-tMhDTx59Ye .card-text {
  margin-bottom: 42px;
  color: #8c8c95;
}
.cid-tMhDTx59Ye H3 {
  color: #14142b;
  text-align: center;
}
.cid-tMhDTx59Ye .mbr-iconfont {
  transition: 0.3s;
  margin-left: 0;
}
.cid-tMhDTx59Ye .link-title {
  display: inline-block;
}
.cid-tMhDTx59Ye .button-color {
  padding: 14px 18px !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
  margin-bottom: 12px;
  color: #14142b;
}
.cid-tMhDTx59Ye .position {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.cid-tMhDTx59Ye .link-row,
.cid-tMhDTx59Ye .title-block {
  align-items: center;
}
.cid-tMhDTx59Ye .link2 {
  display: inline;
}
.cid-tMhDTx59Ye .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tMhDTx59Ye .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tMhDTx59Ye .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tMhDTx59Ye .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tMhDTx59Ye .socicon-bg-mail {
  background-color: #134785;
}
.cid-tMhDTx59Ye .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #00a851;
  cursor: pointer;
}
.cid-tMhDTx59Ye .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tMhDTx59Ye .btn-social .mbr-iconfont:hover {
  color: #fff !important;
}
.cid-tMhDTx59Ye .btn-social:hover {
  color: #fff;
}
.cid-tMhDTx59Ye .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tMhDTx59Ye .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tMhDTx59Ye .right {
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tMhDTx59Ye .mbr-social-likes {
  display: flex;
  align-items: center;
}
.cid-tMhDTx59Ye .link1 {
  margin-right: 5px;
  color: #8c8c95;
}
.cid-tMhDTx59Ye .al {
  align-items: center;
}
@media (max-width: 765px) {
  .cid-tMhDTx59Ye .row.al {
    display: flex;
    flex-direction: column;
  }
  .cid-tMhDTx59Ye .right {
    margin-left: 0;
  }
  .cid-tMhDTx59Ye .wrap-img {
    margin-bottom: 30px;
    height: 640px;
    width: 640px;
  }
}
@media (max-width: 760px) {
  .cid-tMhDTx59Ye .wrap-img {
    height: 540px;
    width: 540px;
  }
  .cid-tMhDTx59Ye .bottom {
    display: flex;
    flex-direction: column;
  }
  .cid-tMhDTx59Ye .mbr-social-likes {
    margin-top: 10px;
  }
}
@media (max-width: 665px) {
  .cid-tMhDTx59Ye .wrap-img {
    height: 340px;
    width: 340px;
  }
}
@media (max-width: 460px) {
  .cid-tMhDTx59Ye .wrap-img {
    height: 240px;
    width: 240px;
  }
  .cid-tMhDTx59Ye .shadow {
    padding: 32px;
  }
  .cid-tMhDTx59Ye .mbr-social-likes {
    display: flex;
  }
}
@media (max-width: 390px) {
  .cid-tMhDTx59Ye .wrap-img {
    height: 240px;
    width: 240px;
  }
  .cid-tMhDTx59Ye .shadow {
    padding: 32px;
  }
}
@media (max-width: 550px) {
  .cid-tMhDTx59Ye .shadow {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tMhDTx59Ye .card-title,
.cid-tMhDTx59Ye span {
  transition: 0.35s;
}
