body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.0625rem;
}
.display-5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.875rem;
}
.display-7 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 1.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.91rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.0625rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.0625rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-u2ot5EgoM0 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2ot5EgoM0 .nav-item:focus,
.cid-u2ot5EgoM0 .nav-link:focus {
  outline: none;
}
.cid-u2ot5EgoM0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2ot5EgoM0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2ot5EgoM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u2ot5EgoM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2ot5EgoM0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2ot5EgoM0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2ot5EgoM0 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u2ot5EgoM0 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0b1435;
}
.cid-u2ot5EgoM0 .navbar.opened {
  transition: all 0.3s;
  background: #0b1435 !important;
}
.cid-u2ot5EgoM0 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-u2ot5EgoM0 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2ot5EgoM0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2ot5EgoM0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2ot5EgoM0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-u2ot5EgoM0 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u2ot5EgoM0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2ot5EgoM0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2ot5EgoM0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u2ot5EgoM0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2ot5EgoM0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2ot5EgoM0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2ot5EgoM0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2ot5EgoM0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2ot5EgoM0 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u2ot5EgoM0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2ot5EgoM0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2ot5EgoM0 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u2ot5EgoM0 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u2ot5EgoM0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2ot5EgoM0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2ot5EgoM0 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u2ot5EgoM0 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u2ot5EgoM0 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2ot5EgoM0 .navbar.navbar-short {
  background: #0b1435 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u2ot5EgoM0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u2ot5EgoM0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u2ot5EgoM0 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u2ot5EgoM0 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2ot5EgoM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2ot5EgoM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2ot5EgoM0 .dropdown-item.active,
.cid-u2ot5EgoM0 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u2ot5EgoM0 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u2ot5EgoM0 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2ot5EgoM0 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u2ot5EgoM0 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u2ot5EgoM0 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2ot5EgoM0 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u2ot5EgoM0 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2ot5EgoM0 .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-u2ot5EgoM0 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u2ot5EgoM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b1435;
}
.cid-u2ot5EgoM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2ot5EgoM0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2ot5EgoM0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2ot5EgoM0 .navbar-buttons {
  text-align: center;
}
.cid-u2ot5EgoM0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u2ot5EgoM0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u2ot5EgoM0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2ot5EgoM0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ot5EgoM0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2ot5EgoM0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2ot5EgoM0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ot5EgoM0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2ot5EgoM0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2ot5EgoM0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2ot5EgoM0 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u2ot5EgoM0 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u2ot5EgoM0 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u2ot5EgoM0 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u2ot5EgoM0 .icons-menu span {
  font-size: 20px;
  color: #2299aa;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2ot5EgoM0 .navbar {
    height: 77px;
  }
  .cid-u2ot5EgoM0 .navbar.opened {
    height: auto;
  }
  .cid-u2ot5EgoM0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2ot5EgoM0 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u2ot5EgoM0 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #2299aa;
}
.cid-u2ot5EgoM0 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u2ot5EgoM0 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tXA7uKmBud {
  background-image: url("../../../assets/images/fondo-intro-2.png");
}
.cid-tXA7uKmBud .row {
  flex-direction: row-reverse;
}
.cid-tXA7uKmBud .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tXA7uKmBud .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tXA7uKmBud .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tXA7uKmBud .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-u2jHdS5yUg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2jHdS5yUg .container {
  max-width: 1500px;
}
.cid-u2jHdS5yUg .row {
  background: #182453;
}
.cid-u2jHdS5yUg .img-col {
  padding: 0;
}
.cid-u2jHdS5yUg .title-col {
  padding: 4rem 6rem;
}
.cid-u2jHdS5yUg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2jHdS5yUg h2 {
  padding: 0;
  margin: 0;
}
.cid-u2jHdS5yUg .text-wrap {
  margin: auto;
}
.cid-u2jHdS5yUg .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2jHdS5yUg .row {
    margin: 2rem;
  }
  .cid-u2jHdS5yUg .title-col {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u2jHdS5yUg .row {
    margin: 0rem;
  }
  .cid-u2jHdS5yUg .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2jHdS5yUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2jHdS5yUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2jJPXx0B8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2jJPXx0B8 .container {
  max-width: 1500px;
}
.cid-u2jJPXx0B8 .row {
  background: #182453;
}
.cid-u2jJPXx0B8 .img-col {
  padding: 0;
}
.cid-u2jJPXx0B8 .title-col {
  padding: 4rem 6rem;
}
.cid-u2jJPXx0B8 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2jJPXx0B8 h2 {
  padding: 0;
  margin: 0;
}
.cid-u2jJPXx0B8 .text-wrap {
  margin: auto;
}
.cid-u2jJPXx0B8 .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2jJPXx0B8 .row {
    margin: 2rem;
  }
  .cid-u2jJPXx0B8 .title-col {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-u2jJPXx0B8 .row {
    margin: 0rem;
  }
  .cid-u2jJPXx0B8 .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2jJPXx0B8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2jJPXx0B8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2jLNnnFoL {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background-color: #0e183b;
}
@media (max-width: 767px) {
  .cid-u2jLNnnFoL .card-wrapper {
    margin: 0;
    padding: 0;
  }
}
.cid-u2jLNnnFoL .mbr-section-title,
.cid-u2jLNnnFoL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2jLNnnFoL .card-title,
.cid-u2jLNnnFoL .card-box {
  color: #ffffff;
}
.cid-u2jLNnnFoL .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-u2jLNnnFoL .mbr-section-title {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  .cid-u2jLNnnFoL .border-right {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-u2jLNnnFoL .top {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-u2jLNnnFoL .margin-left {
    margin-left: 5rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cid-u2jLNnnFoL .border-right {
    padding: 3rem 3rem 3rem 0;
  }
}
.cid-u2ohXtJpbD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #182453;
}
.cid-u2ohXtJpbD .left-side {
  text-align: left;
  padding: 0 5rem 0 8rem;
}
.cid-u2ohXtJpbD .row {
  align-items: center;
}
@media (max-width: 600px) {
  .cid-u2ohXtJpbD .mbr-section-btn {
    margin-bottom: 25px;
  }
}
.cid-u2ohXtJpbD .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-u2ohXtJpbD .mbr-section-subtitle {
  color: #ffffff;
  margin: 0;
  text-align: left;
  padding-top: 9px;
}
.cid-u2ohXtJpbD .panel-text {
  margin-bottom: 2.5rem;
  border: 0px;
  color: #ffffff;
}
.cid-u2ohXtJpbD span {
  color: #6592e6;
  float: right;
  margin-top: 2px;
}
.cid-u2ohXtJpbD .panel-title-edit {
  color: #9b9ba5;
  text-transform: uppercase;
  margin: 0;
  padding: 24px 0;
  background-color: rgba(0, 0, 0, 0);
  border-top: 1px solid #313131;
}
.cid-u2ohXtJpbD .card:last-child {
  border-bottom: 1px solid #313131;
}
.cid-u2ohXtJpbD .card-header {
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0;
}
.cid-u2ohXtJpbD .card {
  border-radius: 0;
}
.cid-u2ohXtJpbD .card:first-child {
  padding-top: 2rem;
}
@media (max-width: 1400px) {
  .cid-u2ohXtJpbD img {
    margin-top: 25px;
  }
}
@media (max-width: 990px) {
  .cid-u2ohXtJpbD .left-side {
    padding: 15px;
  }
}
.cid-u2qWp6CvH1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #182453;
}
.cid-u2qWp6CvH1 .item {
  padding-bottom: 2rem;
}
.cid-u2qWp6CvH1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u2qWp6CvH1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u2qWp6CvH1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u2qWp6CvH1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u2qWp6CvH1 .carousel-control,
.cid-u2qWp6CvH1 .close {
  background: #1b1b1b;
}
.cid-u2qWp6CvH1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u2qWp6CvH1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u2qWp6CvH1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u2qWp6CvH1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-u2qWp6CvH1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2qWp6CvH1 .close::before {
  content: '\e91a';
}
.cid-u2qWp6CvH1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2qWp6CvH1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2qWp6CvH1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2qWp6CvH1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2qWp6CvH1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u2qWp6CvH1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u2qWp6CvH1 .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-u2qWp6CvH1 .carousel-indicators li.active,
.cid-u2qWp6CvH1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u2qWp6CvH1 .carousel-indicators li::after,
.cid-u2qWp6CvH1 .carousel-indicators li::before {
  content: none;
}
.cid-u2qWp6CvH1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u2qWp6CvH1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u2qWp6CvH1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u2qWp6CvH1 .carousel-indicators {
    display: none;
  }
}
.cid-u2qWp6CvH1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2qWp6CvH1 .carousel-inner > .active {
  display: block;
}
.cid-u2qWp6CvH1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2qWp6CvH1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2qWp6CvH1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u2qWp6CvH1 .carousel-control,
  .cid-u2qWp6CvH1 .carousel-indicators,
  .cid-u2qWp6CvH1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u2qWp6CvH1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u2qWp6CvH1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2qWp6CvH1 .carousel-indicators .active,
.cid-u2qWp6CvH1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u2qWp6CvH1 .carousel-indicators .active {
  background: #fff;
}
.cid-u2qWp6CvH1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u2qWp6CvH1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u2qWp6CvH1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u2qWp6CvH1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u2qWp6CvH1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u2qWp6CvH1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u2qWp6CvH1 .carousel {
  width: 100%;
}
.cid-u2qWp6CvH1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u2qWp6CvH1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u2qWp6CvH1 .modal.fade .modal-dialog,
.cid-u2qWp6CvH1 .modal.in .modal-dialog {
  transform: none;
}
.cid-u2qWp6CvH1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2qWp6CvH1 H6 {
  text-align: center;
}
.cid-u2qQdYaYjU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fondo-preventivo-web-19.png");
}
.cid-u2qQdYaYjU .mbr-section-subtitle {
  color: #2299aa;
}
.cid-u2qQdYaYjU .mbr-section-title {
  color: #ffffff;
}
.cid-u2jSUyaEjx {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #0e183b;
}
.cid-u2jSUyaEjx .row {
  justify-content: flex-end;
}
.cid-u2jSUyaEjx .container {
  max-width: 1400px;
}
.cid-u2jSUyaEjx .line {
  width: 100%;
  border-bottom: 1px solid #000000;
  margin-bottom: 2rem;
}
.cid-u2jSUyaEjx .content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-u2jSUyaEjx .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-u2jSUyaEjx .team-card:hover {
  transform: translateY(-10px);
}
.cid-u2jSUyaEjx .image-wrap {
  position: relative;
  height: 450px;
  margin-bottom: 1rem;
}
.cid-u2jSUyaEjx .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2jSUyaEjx .image-wrap:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0.4;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #0e183b;
  position: absolute;
  z-index: 10;
}
.cid-u2jSUyaEjx .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-u2jSUyaEjx .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-u2jSUyaEjx .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-u2jSUyaEjx .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-u2jSUyaEjx .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-u2jSUyaEjx .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-u2jSUyaEjx .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-u2jSUyaEjx .card-wrap .image-wrap img {
  width: 100%;
}
.cid-u2jSUyaEjx .card-wrap:hover .soc-item {
  opacity: 1;
}
.cid-u2jSUyaEjx .card-wrap:hover .image-wrap:before {
  opacity: 0.6;
  background: #2299aa;
}
.cid-u2jSUyaEjx .social-row .soc-item {
  opacity: 0;
  display: inline-block;
  border-radius: 50%;
  margin-right: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.2rem;
  transition: all 0.3s;
}
.cid-u2jSUyaEjx .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-u2jSUyaEjx .social-row .soc-item {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .cid-u2jSUyaEjx .social-row {
    text-align: center;
  }
}
.cid-u2jSUyaEjx .mbr-role,
.cid-u2jSUyaEjx .social-row {
  color: #ffffff;
}
.cid-u2jSUyaEjx .card-title,
.cid-u2jSUyaEjx .social-row {
  color: #ffffff;
}
.cid-u2jSUyaEjx .card-text,
.cid-u2jSUyaEjx .mbr-section-btn,
.cid-u2jSUyaEjx .social-row {
  color: #ffffff;
}
.cid-u2jSUyaEjx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2jSUyaEjx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2jSUyaEjx .mbr-section-title {
  color: #ffffff;
}
.cid-u2jSUyaEjx .link,
.cid-u2jSUyaEjx .link-wrapper {
  color: #26346d;
}
.cid-u2jSUyaEjx P {
  color: #ffffff;
  text-align: left;
}
.cid-u2okK8D0k4 {
  padding-top: 0px;
  padding-bottom: 75px;
  position: relative;
  background-color: #0e183b;
}
.cid-u2okK8D0k4 .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #bbbbbb;
}
.cid-u2okK8D0k4 .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-u2okK8D0k4 .p-4 {
  padding: 1rem 0 !important;
}
.cid-u2okK8D0k4 .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-u2okK8D0k4 .mbri-arrow-down:before {
  content: "\e960";
}
.cid-u2okK8D0k4 .mbri-arrow-up:before {
  content: "\e960";
}
.cid-u2okK8D0k4 .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-u2okK8D0k4 .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-u2okK8D0k4 .card {
  border-radius: 0px;
  border-bottom: 2px solid #26346d !important;
}
.cid-u2okK8D0k4 .card:last-child {
  border-bottom: none !important;
}
.cid-u2okK8D0k4 .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-u2okK8D0k4 .card .card-header h4 {
  -webkit-box-pack: start;
  justify-content: flex-start;
  width: 100%;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title .toggle-icon {
  left: 7px;
  position: absolute;
  top: 36px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 18px;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title .toggle-icon:before,
.cid-u2okK8D0k4 .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title .toggle-icon:before {
  height: 19px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -9px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-u2okK8D0k4 .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 19px;
  margin-left: -9px;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .cid-u2okK8D0k4 .column-wrapper2 {
    margin-top: 3rem;
  }
}
.cid-u2okK8D0k4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2okK8D0k4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2okK8D0k4 .first-title {
  color: #ffffff;
}
.cid-u2okK8D0k4 H4 {
  color: #bbbbbb;
}
.cid-u2okK8D0k4 .second-subtitle {
  color: #2299aa;
}
.cid-u2jQKLVtCV {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #0e183b;
}
.cid-u2jQKLVtCV [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-u2jQKLVtCV .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-u2jQKLVtCV .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-u2jQKLVtCV .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-u2jQKLVtCV .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-u2jQKLVtCV .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-u2jQKLVtCV .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-u2jQKLVtCV .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-u2jQKLVtCV .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-u2jQKLVtCV .card-sub-title {
  text-align: center;
}
.cid-u2jQKLVtCV .mbr-section-sub-title {
  text-align: left;
  color: #ffffff;
}
.cid-u2jQKLVtCV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2jQKLVtCV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ozaSRouP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #182453;
}
.cid-u2ozaSRouP [class*="col"] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-u2ozaSRouP .container-fluid {
  padding: 0 !important;
  margin: 3rem 0;
}
.cid-u2ozaSRouP .carousel-item {
  justify-content: center;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u2ozaSRouP .carousel-item {
    width: calc(100% + 100% / 3);
    left: calc(-100% / (2 * 3));
    margin-right: calc(-100% - 100% / 3);
  }
}
.cid-u2ozaSRouP .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-u2ozaSRouP .carousel-item .slider__image {
  height: 500px;
  width: 100%;
  overflow: hidden;
}
.cid-u2ozaSRouP .carousel-item .slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.cid-u2ozaSRouP .carousel-item .slider__image:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u2ozaSRouP .slider__content .slider__title {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .cid-u2ozaSRouP .slider__title {
    margin-left: 2rem;
  }
}
.cid-u2ozaSRouP .carousel-item.active,
.cid-u2ozaSRouP .carousel-item-next,
.cid-u2ozaSRouP .carousel-item-prev {
  display: flex;
}
.cid-u2ozaSRouP .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u2ozaSRouP .carousel-control-next,
.cid-u2ozaSRouP .carousel-control-prev {
  opacity: 1 !important;
}
.cid-u2ozaSRouP .carousel-control-next:hover,
.cid-u2ozaSRouP .carousel-control-prev:hover {
  opacity: 1 !important;
}
.cid-u2ozaSRouP .carousel-controls {
  width: 100%;
  position: absolute;
  z-index: 20;
  top: 43.3%;
  transform: translateY(-50%);
}
.cid-u2ozaSRouP .carousel-controls a span {
  width: 95.7px;
  height: 95.7px;
  line-height: 75.7px;
  font-size: 20px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #2299aa;
  background: #182453;
}
.cid-u2ozaSRouP .carousel-controls a span:hover {
  transform: scale(1.07);
  transform-origin: center;
  transition: transform 0.2s ease 0s;
}
.cid-u2ozaSRouP .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2ozaSRouP .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-u2ozaSRouP .carousel-inner {
    padding-bottom: 3px;
  }
}
@media (max-width: 991px) {
  .cid-u2ozaSRouP .carousel-item .slider__item {
    margin-right: 0;
  }
  .cid-u2ozaSRouP .cloneditem-1,
  .cid-u2ozaSRouP .cloneditem-2,
  .cid-u2ozaSRouP .cloneditem-3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-u2ozaSRouP .carousel-controls {
    display: none;
  }
  .cid-u2ozaSRouP .mbr-text,
  .cid-u2ozaSRouP .mbr-section-title {
    padding: 0 1rem;
  }
}
.cid-u2ozaSRouP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2ozaSRouP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ozaSRouP .mbr-section-title {
  color: #ffffff;
}
.cid-u2ozaSRouP .mbr-text {
  color: #ffffff;
}
.cid-u2opehb6NG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fondo-preventivo-webl-19.png");
}
.cid-u2opehb6NG .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #000000;
}
.cid-u2opehb6NG .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-u2opehb6NG .margin {
  margin-bottom: 10px;
}
.cid-u2opehb6NG .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-u2opehb6NG .description {
  color: #bbbbbb;
  margin-bottom: 50px;
  padding: 0;
}
.cid-u2opehb6NG .title {
  font-size: 24px;
}
.cid-u2opehb6NG .form-heading {
  margin-bottom: 40px;
}
.cid-u2opehb6NG label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-u2opehb6NG input,
.cid-u2opehb6NG textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-u2opehb6NG .gray-button {
  margin: 0;
  background-color: #232323;
  color: #ffffff;
}
.cid-u2opehb6NG .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-u2opehb6NG .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-u2opehb6NG .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-u2opehb6NG .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-u2opehb6NG .gray-button:hover {
  background-color: #000000;
}
.cid-u2opehb6NG ::placeholder {
  color: #a3a6b2;
}
.cid-u2jFo8YzOO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #182453;
}
.cid-u2jFo8YzOO .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-u2jFo8YzOO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2jFo8YzOO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-u2jFo8YzOO .list {
    margin-bottom: 30px;
  }
}
.cid-u2jFo8YzOO .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-u2jFo8YzOO .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-u2jFo8YzOO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2jFo8YzOO .copyright {
  color: #868c90;
}
.cid-u2jFo8YzOO .mbr-section-subtitle {
  color: #868c90;
}
@media (max-width: 576px) {
  .cid-u2jFo8YzOO .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-u2jFo8YzOO .footer {
  padding-top: 66px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-u2jFo8YzOO .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-u2jFo8YzOO .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-u2jFo8YzOO .footer-logo {
    margin: 0 auto;
  }
}
.cid-u2owdk7aJ5 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0e183b;
}
.cid-u2owdk7aJ5 .mbr-text {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-u2owdk7aJ5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2owdk7aJ5 .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-u2owdk7aJ5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u2owdk7aJ5 .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #6592e6;
  transform: translateY(-3px);
}
.cid-u2owdk7aJ5 .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-u2owdk7aJ5 .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-u2owdk7aJ5 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2owdk7aJ5 .copyright > p {
  color: #bbbbbb;
}
.cid-u2N1hmbbnt .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N1hmbbnt .nav-item:focus,
.cid-u2N1hmbbnt .nav-link:focus {
  outline: none;
}
.cid-u2N1hmbbnt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N1hmbbnt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2N1hmbbnt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u2N1hmbbnt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N1hmbbnt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2N1hmbbnt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2N1hmbbnt .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u2N1hmbbnt .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0b1435;
}
.cid-u2N1hmbbnt .navbar.opened {
  transition: all 0.3s;
  background: #0b1435 !important;
}
.cid-u2N1hmbbnt .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-u2N1hmbbnt .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2N1hmbbnt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2N1hmbbnt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2N1hmbbnt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-u2N1hmbbnt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u2N1hmbbnt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2N1hmbbnt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2N1hmbbnt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u2N1hmbbnt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2N1hmbbnt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2N1hmbbnt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2N1hmbbnt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2N1hmbbnt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2N1hmbbnt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u2N1hmbbnt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2N1hmbbnt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2N1hmbbnt .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u2N1hmbbnt .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u2N1hmbbnt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2N1hmbbnt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2N1hmbbnt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u2N1hmbbnt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u2N1hmbbnt .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2N1hmbbnt .navbar.navbar-short {
  background: #0b1435 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u2N1hmbbnt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u2N1hmbbnt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u2N1hmbbnt .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u2N1hmbbnt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2N1hmbbnt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2N1hmbbnt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2N1hmbbnt .dropdown-item.active,
.cid-u2N1hmbbnt .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u2N1hmbbnt .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u2N1hmbbnt .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2N1hmbbnt .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u2N1hmbbnt .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u2N1hmbbnt .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2N1hmbbnt .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u2N1hmbbnt .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2N1hmbbnt .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-u2N1hmbbnt .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u2N1hmbbnt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b1435;
}
.cid-u2N1hmbbnt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2N1hmbbnt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2N1hmbbnt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2N1hmbbnt .navbar-buttons {
  text-align: center;
}
.cid-u2N1hmbbnt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u2N1hmbbnt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u2N1hmbbnt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2N1hmbbnt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N1hmbbnt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N1hmbbnt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2N1hmbbnt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N1hmbbnt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2N1hmbbnt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2N1hmbbnt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N1hmbbnt .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u2N1hmbbnt a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u2N1hmbbnt .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u2N1hmbbnt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u2N1hmbbnt .icons-menu span {
  font-size: 20px;
  color: #2299aa;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2N1hmbbnt .navbar {
    height: 77px;
  }
  .cid-u2N1hmbbnt .navbar.opened {
    height: auto;
  }
  .cid-u2N1hmbbnt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2N1hmbbnt a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u2N1hmbbnt a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #2299aa;
}
.cid-u2N1hmbbnt .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u2N1hmbbnt .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u2N1hv8O0T {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/fondo-preventivo-web-19.png");
}
.cid-u2N1hv8O0T .mbr-section-subtitle {
  color: #2299aa;
}
.cid-u2N1hv8O0T .mbr-section-title {
  color: #ffffff;
}
.cid-u2N1hsqwx6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2N1hsqwx6 .container {
  max-width: 1500px;
}
.cid-u2N1hsqwx6 .row {
  background: #182453;
}
.cid-u2N1hsqwx6 .img-col {
  padding: 0;
}
.cid-u2N1hsqwx6 .title-col {
  padding: 4rem 6rem;
}
.cid-u2N1hsqwx6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2N1hsqwx6 h2 {
  padding: 0;
  margin: 0;
}
.cid-u2N1hsqwx6 .text-wrap {
  margin: auto;
}
.cid-u2N1hsqwx6 .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2N1hsqwx6 .row {
    margin: 2rem;
  }
  .cid-u2N1hsqwx6 .title-col {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N1hsqwx6 .row {
    margin: 0rem;
  }
  .cid-u2N1hsqwx6 .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2N1hsqwx6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N1hsqwx6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N3Epx5Pr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2N3Epx5Pr .container {
  max-width: 1500px;
}
.cid-u2N3Epx5Pr .row {
  background: #182453;
}
.cid-u2N3Epx5Pr .img-col {
  padding: 0;
}
.cid-u2N3Epx5Pr .title-col {
  padding: 4rem 6rem;
}
.cid-u2N3Epx5Pr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2N3Epx5Pr h2 {
  padding: 0;
  margin: 0;
}
.cid-u2N3Epx5Pr .text-wrap {
  margin: auto;
}
.cid-u2N3Epx5Pr .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2N3Epx5Pr .row {
    margin: 2rem;
  }
  .cid-u2N3Epx5Pr .title-col {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N3Epx5Pr .row {
    margin: 0rem;
  }
  .cid-u2N3Epx5Pr .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2N3Epx5Pr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N3Epx5Pr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N1hu1Tgw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0e183b;
}
.cid-u2N1hu1Tgw .item {
  padding-bottom: 2rem;
}
.cid-u2N1hu1Tgw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u2N1hu1Tgw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u2N1hu1Tgw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u2N1hu1Tgw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u2N1hu1Tgw .carousel-control,
.cid-u2N1hu1Tgw .close {
  background: #1b1b1b;
}
.cid-u2N1hu1Tgw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u2N1hu1Tgw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u2N1hu1Tgw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u2N1hu1Tgw .carousel-control-next span {
  margin-left: 5px;
}
.cid-u2N1hu1Tgw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2N1hu1Tgw .close::before {
  content: '\e91a';
}
.cid-u2N1hu1Tgw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2N1hu1Tgw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2N1hu1Tgw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2N1hu1Tgw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2N1hu1Tgw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u2N1hu1Tgw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u2N1hu1Tgw .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-u2N1hu1Tgw .carousel-indicators li.active,
.cid-u2N1hu1Tgw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u2N1hu1Tgw .carousel-indicators li::after,
.cid-u2N1hu1Tgw .carousel-indicators li::before {
  content: none;
}
.cid-u2N1hu1Tgw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u2N1hu1Tgw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u2N1hu1Tgw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N1hu1Tgw .carousel-indicators {
    display: none;
  }
}
.cid-u2N1hu1Tgw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2N1hu1Tgw .carousel-inner > .active {
  display: block;
}
.cid-u2N1hu1Tgw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2N1hu1Tgw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2N1hu1Tgw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u2N1hu1Tgw .carousel-control,
  .cid-u2N1hu1Tgw .carousel-indicators,
  .cid-u2N1hu1Tgw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u2N1hu1Tgw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u2N1hu1Tgw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2N1hu1Tgw .carousel-indicators .active,
.cid-u2N1hu1Tgw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u2N1hu1Tgw .carousel-indicators .active {
  background: #fff;
}
.cid-u2N1hu1Tgw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u2N1hu1Tgw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u2N1hu1Tgw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u2N1hu1Tgw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u2N1hu1Tgw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u2N1hu1Tgw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u2N1hu1Tgw .carousel {
  width: 100%;
}
.cid-u2N1hu1Tgw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u2N1hu1Tgw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u2N1hu1Tgw .modal.fade .modal-dialog,
.cid-u2N1hu1Tgw .modal.in .modal-dialog {
  transform: none;
}
.cid-u2N1hu1Tgw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2N1hu1Tgw H6 {
  text-align: center;
}
.cid-u2N1hD7olw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #182453;
}
.cid-u2N1hD7olw .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-u2N1hD7olw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2N1hD7olw .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-u2N1hD7olw .list {
    margin-bottom: 30px;
  }
}
.cid-u2N1hD7olw .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-u2N1hD7olw .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-u2N1hD7olw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2N1hD7olw .copyright {
  color: #868c90;
}
.cid-u2N1hD7olw .mbr-section-subtitle {
  color: #868c90;
}
@media (max-width: 576px) {
  .cid-u2N1hD7olw .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-u2N1hD7olw .footer {
  padding-top: 66px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-u2N1hD7olw .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-u2N1hD7olw .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-u2N1hD7olw .footer-logo {
    margin: 0 auto;
  }
}
.cid-u2N1hDS5iE {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0e183b;
}
.cid-u2N1hDS5iE .mbr-text {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-u2N1hDS5iE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2N1hDS5iE .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-u2N1hDS5iE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u2N1hDS5iE .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #6592e6;
  transform: translateY(-3px);
}
.cid-u2N1hDS5iE .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-u2N1hDS5iE .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-u2N1hDS5iE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N1hDS5iE .copyright > p {
  color: #bbbbbb;
}
.cid-u2N6puhpNa .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N6puhpNa .nav-item:focus,
.cid-u2N6puhpNa .nav-link:focus {
  outline: none;
}
.cid-u2N6puhpNa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N6puhpNa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2N6puhpNa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u2N6puhpNa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N6puhpNa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2N6puhpNa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2N6puhpNa .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u2N6puhpNa .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0b1435;
}
.cid-u2N6puhpNa .navbar.opened {
  transition: all 0.3s;
  background: #0b1435 !important;
}
.cid-u2N6puhpNa .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-u2N6puhpNa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2N6puhpNa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2N6puhpNa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2N6puhpNa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-u2N6puhpNa .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u2N6puhpNa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2N6puhpNa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2N6puhpNa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u2N6puhpNa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2N6puhpNa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2N6puhpNa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2N6puhpNa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2N6puhpNa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2N6puhpNa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u2N6puhpNa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2N6puhpNa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2N6puhpNa .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u2N6puhpNa .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u2N6puhpNa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2N6puhpNa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2N6puhpNa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u2N6puhpNa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u2N6puhpNa .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2N6puhpNa .navbar.navbar-short {
  background: #0b1435 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u2N6puhpNa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u2N6puhpNa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u2N6puhpNa .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u2N6puhpNa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2N6puhpNa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2N6puhpNa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2N6puhpNa .dropdown-item.active,
.cid-u2N6puhpNa .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u2N6puhpNa .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u2N6puhpNa .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2N6puhpNa .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u2N6puhpNa .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u2N6puhpNa .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2N6puhpNa .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u2N6puhpNa .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2N6puhpNa .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-u2N6puhpNa .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u2N6puhpNa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b1435;
}
.cid-u2N6puhpNa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2N6puhpNa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2N6puhpNa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2N6puhpNa .navbar-buttons {
  text-align: center;
}
.cid-u2N6puhpNa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u2N6puhpNa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u2N6puhpNa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2N6puhpNa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N6puhpNa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N6puhpNa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2N6puhpNa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N6puhpNa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2N6puhpNa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2N6puhpNa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N6puhpNa .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u2N6puhpNa a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u2N6puhpNa .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u2N6puhpNa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u2N6puhpNa .icons-menu span {
  font-size: 20px;
  color: #2299aa;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2N6puhpNa .navbar {
    height: 77px;
  }
  .cid-u2N6puhpNa .navbar.opened {
    height: auto;
  }
  .cid-u2N6puhpNa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2N6puhpNa a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u2N6puhpNa a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #2299aa;
}
.cid-u2N6puhpNa .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u2N6puhpNa .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u2N6pvzivI {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/fondo-preventivo-web-19.png");
}
.cid-u2N6pvzivI .mbr-section-subtitle {
  color: #2299aa;
}
.cid-u2N6pvzivI .mbr-section-title {
  color: #ffffff;
}
.cid-u2N6pw9eJP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2N6pw9eJP .container {
  max-width: 1500px;
}
.cid-u2N6pw9eJP .row {
  background: #182453;
}
.cid-u2N6pw9eJP .img-col {
  padding: 0;
}
.cid-u2N6pw9eJP .title-col {
  padding: 4rem 6rem;
}
.cid-u2N6pw9eJP img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2N6pw9eJP h2 {
  padding: 0;
  margin: 0;
}
.cid-u2N6pw9eJP .text-wrap {
  margin: auto;
}
.cid-u2N6pw9eJP .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2N6pw9eJP .row {
    margin: 2rem;
  }
  .cid-u2N6pw9eJP .title-col {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N6pw9eJP .row {
    margin: 0rem;
  }
  .cid-u2N6pw9eJP .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2N6pw9eJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N6pw9eJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N6pwH1TH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2N6pwH1TH .container {
  max-width: 1500px;
}
.cid-u2N6pwH1TH .row {
  background: #182453;
}
.cid-u2N6pwH1TH .img-col {
  padding: 0;
}
.cid-u2N6pwH1TH .title-col {
  padding: 4rem 6rem;
}
.cid-u2N6pwH1TH img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2N6pwH1TH h2 {
  padding: 0;
  margin: 0;
}
.cid-u2N6pwH1TH .text-wrap {
  margin: auto;
}
.cid-u2N6pwH1TH .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2N6pwH1TH .row {
    margin: 2rem;
  }
  .cid-u2N6pwH1TH .title-col {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N6pwH1TH .row {
    margin: 0rem;
  }
  .cid-u2N6pwH1TH .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2N6pwH1TH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N6pwH1TH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N6pxf4Zw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0e183b;
}
.cid-u2N6pxf4Zw .item {
  padding-bottom: 2rem;
}
.cid-u2N6pxf4Zw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u2N6pxf4Zw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u2N6pxf4Zw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u2N6pxf4Zw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u2N6pxf4Zw .carousel-control,
.cid-u2N6pxf4Zw .close {
  background: #1b1b1b;
}
.cid-u2N6pxf4Zw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u2N6pxf4Zw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u2N6pxf4Zw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u2N6pxf4Zw .carousel-control-next span {
  margin-left: 5px;
}
.cid-u2N6pxf4Zw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2N6pxf4Zw .close::before {
  content: '\e91a';
}
.cid-u2N6pxf4Zw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2N6pxf4Zw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2N6pxf4Zw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2N6pxf4Zw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2N6pxf4Zw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u2N6pxf4Zw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u2N6pxf4Zw .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-u2N6pxf4Zw .carousel-indicators li.active,
.cid-u2N6pxf4Zw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u2N6pxf4Zw .carousel-indicators li::after,
.cid-u2N6pxf4Zw .carousel-indicators li::before {
  content: none;
}
.cid-u2N6pxf4Zw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u2N6pxf4Zw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u2N6pxf4Zw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N6pxf4Zw .carousel-indicators {
    display: none;
  }
}
.cid-u2N6pxf4Zw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2N6pxf4Zw .carousel-inner > .active {
  display: block;
}
.cid-u2N6pxf4Zw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2N6pxf4Zw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2N6pxf4Zw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u2N6pxf4Zw .carousel-control,
  .cid-u2N6pxf4Zw .carousel-indicators,
  .cid-u2N6pxf4Zw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u2N6pxf4Zw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u2N6pxf4Zw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2N6pxf4Zw .carousel-indicators .active,
.cid-u2N6pxf4Zw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u2N6pxf4Zw .carousel-indicators .active {
  background: #fff;
}
.cid-u2N6pxf4Zw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u2N6pxf4Zw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u2N6pxf4Zw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u2N6pxf4Zw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u2N6pxf4Zw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u2N6pxf4Zw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u2N6pxf4Zw .carousel {
  width: 100%;
}
.cid-u2N6pxf4Zw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u2N6pxf4Zw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u2N6pxf4Zw .modal.fade .modal-dialog,
.cid-u2N6pxf4Zw .modal.in .modal-dialog {
  transform: none;
}
.cid-u2N6pxf4Zw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2N6pxf4Zw H6 {
  text-align: center;
}
.cid-u2N6pAkdeN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #182453;
}
.cid-u2N6pAkdeN .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-u2N6pAkdeN .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2N6pAkdeN .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-u2N6pAkdeN .list {
    margin-bottom: 30px;
  }
}
.cid-u2N6pAkdeN .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-u2N6pAkdeN .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-u2N6pAkdeN div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2N6pAkdeN .copyright {
  color: #868c90;
}
.cid-u2N6pAkdeN .mbr-section-subtitle {
  color: #868c90;
}
@media (max-width: 576px) {
  .cid-u2N6pAkdeN .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-u2N6pAkdeN .footer {
  padding-top: 66px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-u2N6pAkdeN .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-u2N6pAkdeN .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-u2N6pAkdeN .footer-logo {
    margin: 0 auto;
  }
}
.cid-u2N6pBkul0 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0e183b;
}
.cid-u2N6pBkul0 .mbr-text {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-u2N6pBkul0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2N6pBkul0 .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-u2N6pBkul0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u2N6pBkul0 .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #6592e6;
  transform: translateY(-3px);
}
.cid-u2N6pBkul0 .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-u2N6pBkul0 .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-u2N6pBkul0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N6pBkul0 .copyright > p {
  color: #bbbbbb;
}
.cid-u2N7Dq1zS4 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N7Dq1zS4 .nav-item:focus,
.cid-u2N7Dq1zS4 .nav-link:focus {
  outline: none;
}
.cid-u2N7Dq1zS4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N7Dq1zS4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2N7Dq1zS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-u2N7Dq1zS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u2N7Dq1zS4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2N7Dq1zS4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2N7Dq1zS4 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-u2N7Dq1zS4 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0b1435;
}
.cid-u2N7Dq1zS4 .navbar.opened {
  transition: all 0.3s;
  background: #0b1435 !important;
}
.cid-u2N7Dq1zS4 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-u2N7Dq1zS4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2N7Dq1zS4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2N7Dq1zS4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2N7Dq1zS4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-u2N7Dq1zS4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u2N7Dq1zS4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2N7Dq1zS4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2N7Dq1zS4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u2N7Dq1zS4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2N7Dq1zS4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2N7Dq1zS4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2N7Dq1zS4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2N7Dq1zS4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2N7Dq1zS4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u2N7Dq1zS4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2N7Dq1zS4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2N7Dq1zS4 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u2N7Dq1zS4 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u2N7Dq1zS4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2N7Dq1zS4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2N7Dq1zS4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u2N7Dq1zS4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u2N7Dq1zS4 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2N7Dq1zS4 .navbar.navbar-short {
  background: #0b1435 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-u2N7Dq1zS4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u2N7Dq1zS4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u2N7Dq1zS4 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-u2N7Dq1zS4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2N7Dq1zS4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2N7Dq1zS4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2N7Dq1zS4 .dropdown-item.active,
.cid-u2N7Dq1zS4 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-u2N7Dq1zS4 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-u2N7Dq1zS4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2N7Dq1zS4 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-u2N7Dq1zS4 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-u2N7Dq1zS4 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2N7Dq1zS4 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-u2N7Dq1zS4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-u2N7Dq1zS4 .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-u2N7Dq1zS4 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-u2N7Dq1zS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0b1435;
}
.cid-u2N7Dq1zS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2N7Dq1zS4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2N7Dq1zS4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2N7Dq1zS4 .navbar-buttons {
  text-align: center;
}
.cid-u2N7Dq1zS4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u2N7Dq1zS4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u2N7Dq1zS4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2N7Dq1zS4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N7Dq1zS4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2N7Dq1zS4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2N7Dq1zS4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N7Dq1zS4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2N7Dq1zS4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2N7Dq1zS4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2N7Dq1zS4 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-u2N7Dq1zS4 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-u2N7Dq1zS4 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-u2N7Dq1zS4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u2N7Dq1zS4 .icons-menu span {
  font-size: 20px;
  color: #2299aa;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2N7Dq1zS4 .navbar {
    height: 77px;
  }
  .cid-u2N7Dq1zS4 .navbar.opened {
    height: auto;
  }
  .cid-u2N7Dq1zS4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2N7Dq1zS4 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-u2N7Dq1zS4 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #2299aa;
}
.cid-u2N7Dq1zS4 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-u2N7Dq1zS4 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-u2N7DrAN6z {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/fondo-preventivo-web-19.png");
}
.cid-u2N7DrAN6z .mbr-section-subtitle {
  color: #2299aa;
}
.cid-u2N7DrAN6z .mbr-section-title {
  color: #ffffff;
}
.cid-u2N7DszqOa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2N7DszqOa .container {
  max-width: 1500px;
}
.cid-u2N7DszqOa .row {
  background: #182453;
}
.cid-u2N7DszqOa .img-col {
  padding: 0;
}
.cid-u2N7DszqOa .title-col {
  padding: 4rem 6rem;
}
.cid-u2N7DszqOa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2N7DszqOa h2 {
  padding: 0;
  margin: 0;
}
.cid-u2N7DszqOa .text-wrap {
  margin: auto;
}
.cid-u2N7DszqOa .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2N7DszqOa .row {
    margin: 2rem;
  }
  .cid-u2N7DszqOa .title-col {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N7DszqOa .row {
    margin: 0rem;
  }
  .cid-u2N7DszqOa .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2N7DszqOa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N7DszqOa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N7DtcwwZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-u2N7DtcwwZ .container {
  max-width: 1500px;
}
.cid-u2N7DtcwwZ .row {
  background: #182453;
}
.cid-u2N7DtcwwZ .img-col {
  padding: 0;
}
.cid-u2N7DtcwwZ .title-col {
  padding: 4rem 6rem;
}
.cid-u2N7DtcwwZ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2N7DtcwwZ h2 {
  padding: 0;
  margin: 0;
}
.cid-u2N7DtcwwZ .text-wrap {
  margin: auto;
}
.cid-u2N7DtcwwZ .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 1200px) {
  .cid-u2N7DtcwwZ .row {
    margin: 2rem;
  }
  .cid-u2N7DtcwwZ .title-col {
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N7DtcwwZ .row {
    margin: 0rem;
  }
  .cid-u2N7DtcwwZ .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2N7DtcwwZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N7DtcwwZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N7DtE7ZF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0e183b;
}
.cid-u2N7DtE7ZF .item {
  padding-bottom: 2rem;
}
.cid-u2N7DtE7ZF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-u2N7DtE7ZF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u2N7DtE7ZF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u2N7DtE7ZF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u2N7DtE7ZF .carousel-control,
.cid-u2N7DtE7ZF .close {
  background: #1b1b1b;
}
.cid-u2N7DtE7ZF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u2N7DtE7ZF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u2N7DtE7ZF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u2N7DtE7ZF .carousel-control-next span {
  margin-left: 5px;
}
.cid-u2N7DtE7ZF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2N7DtE7ZF .close::before {
  content: '\e91a';
}
.cid-u2N7DtE7ZF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2N7DtE7ZF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u2N7DtE7ZF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2N7DtE7ZF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2N7DtE7ZF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u2N7DtE7ZF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u2N7DtE7ZF .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-u2N7DtE7ZF .carousel-indicators li.active,
.cid-u2N7DtE7ZF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u2N7DtE7ZF .carousel-indicators li::after,
.cid-u2N7DtE7ZF .carousel-indicators li::before {
  content: none;
}
.cid-u2N7DtE7ZF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u2N7DtE7ZF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u2N7DtE7ZF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u2N7DtE7ZF .carousel-indicators {
    display: none;
  }
}
.cid-u2N7DtE7ZF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2N7DtE7ZF .carousel-inner > .active {
  display: block;
}
.cid-u2N7DtE7ZF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2N7DtE7ZF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2N7DtE7ZF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u2N7DtE7ZF .carousel-control,
  .cid-u2N7DtE7ZF .carousel-indicators,
  .cid-u2N7DtE7ZF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u2N7DtE7ZF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u2N7DtE7ZF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2N7DtE7ZF .carousel-indicators .active,
.cid-u2N7DtE7ZF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u2N7DtE7ZF .carousel-indicators .active {
  background: #fff;
}
.cid-u2N7DtE7ZF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u2N7DtE7ZF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u2N7DtE7ZF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u2N7DtE7ZF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u2N7DtE7ZF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u2N7DtE7ZF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u2N7DtE7ZF .carousel {
  width: 100%;
}
.cid-u2N7DtE7ZF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u2N7DtE7ZF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u2N7DtE7ZF .modal.fade .modal-dialog,
.cid-u2N7DtE7ZF .modal.in .modal-dialog {
  transform: none;
}
.cid-u2N7DtE7ZF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u2N7DtE7ZF H6 {
  text-align: center;
}
.cid-u2N7DutnZP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #182453;
}
.cid-u2N7DutnZP .list {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 991px) {
  .cid-u2N7DutnZP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2N7DutnZP .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-u2N7DutnZP .list {
    margin-bottom: 30px;
  }
}
.cid-u2N7DutnZP .item-wrap {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .cid-u2N7DutnZP .item-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-u2N7DutnZP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2N7DutnZP .copyright {
  color: #868c90;
}
.cid-u2N7DutnZP .mbr-section-subtitle {
  color: #868c90;
}
@media (max-width: 576px) {
  .cid-u2N7DutnZP .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-u2N7DutnZP .footer {
  padding-top: 66px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .cid-u2N7DutnZP .footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }
}
@media (max-width: 767px) {
  .cid-u2N7DutnZP .footer {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .cid-u2N7DutnZP .footer-logo {
    margin: 0 auto;
  }
}
.cid-u2N7DuU2Xe {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #0e183b;
}
.cid-u2N7DuU2Xe .mbr-text {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-u2N7DuU2Xe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2N7DuU2Xe .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-u2N7DuU2Xe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}
.cid-u2N7DuU2Xe .footer-lower .social-list .mbr-iconfont-social:hover {
  color: #6592e6;
  transform: translateY(-3px);
}
.cid-u2N7DuU2Xe .footer-lower .social-list .soc-item {
  margin: 0 1rem;
}
.cid-u2N7DuU2Xe .footer-lower .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (max-width: 992px) {
  .cid-u2N7DuU2Xe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2N7DuU2Xe .copyright > p {
  color: #bbbbbb;
}
