body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #c8f300 !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: #c8f300 !important;
  border-color: #c8f300 !important;
  color: #000000 !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: #819c00 !important;
  border-color: #819c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #819c00 !important;
  border-color: #819c00 !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: #c8f300;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #819c00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #c8f300 !important;
  border-color: #c8f300 !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: #c8f300 !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: #748d00 !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: #c8f300;
}
.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: #c8f300;
  border-color: #c8f300;
  color: #0b0d00;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c8f300;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f4ffc0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #c8f300 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #c8f300;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c8f300;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c8f300;
}
.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: #c8f300;
  border-bottom-color: #c8f300;
}
.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: #000000 !important;
  background-color: #c8f300 !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='%23c8f300' %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-tzJHl9ySei {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tzJHl9ySei nav.navbar {
  position: fixed;
}
.cid-tzJHl9ySei .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzJHl9ySei .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzJHl9ySei .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzJHl9ySei .dropdown-item:hover,
.cid-tzJHl9ySei .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tzJHl9ySei .dropdown-item:hover span {
  color: white;
}
.cid-tzJHl9ySei .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzJHl9ySei .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzJHl9ySei .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tzJHl9ySei .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzJHl9ySei .nav-link {
  position: relative;
}
.cid-tzJHl9ySei .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tzJHl9ySei .container {
    flex-wrap: wrap;
  }
}
.cid-tzJHl9ySei .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tzJHl9ySei .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tzJHl9ySei .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzJHl9ySei .dropdown-menu,
.cid-tzJHl9ySei .navbar.opened {
  background: #000000 !important;
}
.cid-tzJHl9ySei .nav-item:focus,
.cid-tzJHl9ySei .nav-link:focus {
  outline: none;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzJHl9ySei .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzJHl9ySei .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzJHl9ySei .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tzJHl9ySei .navbar.opened {
  transition: all 0.3s;
}
.cid-tzJHl9ySei .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzJHl9ySei .navbar .navbar-logo img {
  width: auto;
}
.cid-tzJHl9ySei .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzJHl9ySei .navbar.collapsed {
  justify-content: center;
}
.cid-tzJHl9ySei .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzJHl9ySei .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzJHl9ySei .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tzJHl9ySei .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzJHl9ySei .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzJHl9ySei .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzJHl9ySei .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tzJHl9ySei .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzJHl9ySei .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzJHl9ySei .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzJHl9ySei .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzJHl9ySei .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tzJHl9ySei .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tzJHl9ySei .navbar.navbar-short {
  min-height: 60px;
}
.cid-tzJHl9ySei .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tzJHl9ySei .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tzJHl9ySei .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzJHl9ySei .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzJHl9ySei .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzJHl9ySei .dropdown-item.active,
.cid-tzJHl9ySei .dropdown-item:active {
  background-color: transparent;
}
.cid-tzJHl9ySei .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzJHl9ySei .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzJHl9ySei .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzJHl9ySei .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzJHl9ySei .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzJHl9ySei .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzJHl9ySei ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzJHl9ySei .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzJHl9ySei button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzJHl9ySei .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tzJHl9ySei a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzJHl9ySei .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzJHl9ySei .navbar {
    height: 70px;
  }
  .cid-tzJHl9ySei .navbar.opened {
    height: auto;
  }
  .cid-tzJHl9ySei .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzJNjcWv5D {
  background-image: url("../../../assets/images/aspersoras-bufalo-encabezado-1920x1280.webp");
}
.cid-tzJNjcWv5D .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tzJNjcWv5D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzJNjcWv5D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzJNjcWv5D .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tzJNjcWv5D .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tzJNjcWv5D .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tzJNjcWv5D .mbr-section-title {
  color: #ffffff;
}
.cid-tLVLCvVa5w {
  background-image: url("../../../assets/images/bufalo-35-aniversario-1920x1280.webp");
}
.cid-tLVLCvVa5w .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tLVLCvVa5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLVLCvVa5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLVLCvVa5w .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tLVLCvVa5w .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tLVLCvVa5w .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tLVLCvVa5w .mbr-section-title {
  color: #ffffff;
}
.cid-tzJUN2XROX {
  background-image: url("../../../assets/images/aspersoras-bufalo-calidad-1920x1280.webp");
}
.cid-tzJUN2XROX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzJUN2XROX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzLRVptucJ {
  background-image: url("../../../assets/images/aspersoras-bufalo-tecnologia-italiana-1920x1280.webp");
}
.cid-tzLRVptucJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzLRVptucJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLVMbEfbcA {
  background-image: url("../../../assets/images/aspersoras-bufalo-energia-estatica-1920x1280.webp");
}
.cid-tLVMbEfbcA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLVMbEfbcA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLVMbEfbcA .imagen_transparente {
  width: 100%;
  height: 100%;
}
.cid-tLVMbEfbcA .enlace {
  position: relative;
  top: 200px;
  left: 100px;
  color: white;
}
.cid-tzKsM9Vfjr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/aspersoras-bifalo-35-experiencia-1920x704.webp");
}
.cid-tzKsM9Vfjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzKsM9Vfjr .texto-transparente {
  color: rgba(0, 0, 0, 0);
}
.cid-tzKsM9Vfjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzKsM9Vfjr .mbr-text,
.cid-tzKsM9Vfjr .mbr-section-btn {
  color: #232323;
}
.cid-tzKsM9Vfjr .card-title,
.cid-tzKsM9Vfjr .card-box {
  color: #000000;
}
.cid-tzKsM9Vfjr .mbr-text,
.cid-tzKsM9Vfjr .link-wrap {
  color: #ffffff;
}
.cid-tzK2rIali4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tzK2rIali4 .mbr-text {
  text-align: center;
  color: #c8f300;
}
.cid-tBTL1GyeBg {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tBTL1GyeBg [class^="socicon-"]:before,
.cid-tBTL1GyeBg [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tBTL1GyeBg .texto {
  color: #c8f300;
  text-align: center;
}
.cid-tBTL1GyeBg img {
  width: 85px;
  height: 85px;
  alignment: center;
}
.cid-tBTL1GyeBg .social-list {
  display: flex;
  justify-content: center;
}
.cid-tBTL1GyeBg .btn-social,
.cid-tBTL1GyeBg .mbr-section-title {
  color: #57468b;
}
.cid-tBTL1GyeBg .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tBTL1GyeBg .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tBTL1GyeBg .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tzJHl9ySei {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tzJHl9ySei nav.navbar {
  position: fixed;
}
.cid-tzJHl9ySei .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzJHl9ySei .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tzJHl9ySei .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzJHl9ySei .dropdown-item:hover,
.cid-tzJHl9ySei .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tzJHl9ySei .dropdown-item:hover span {
  color: white;
}
.cid-tzJHl9ySei .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tzJHl9ySei .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tzJHl9ySei .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tzJHl9ySei .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzJHl9ySei .nav-link {
  position: relative;
}
.cid-tzJHl9ySei .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tzJHl9ySei .container {
    flex-wrap: wrap;
  }
}
.cid-tzJHl9ySei .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tzJHl9ySei .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tzJHl9ySei .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzJHl9ySei .dropdown-menu,
.cid-tzJHl9ySei .navbar.opened {
  background: #000000 !important;
}
.cid-tzJHl9ySei .nav-item:focus,
.cid-tzJHl9ySei .nav-link:focus {
  outline: none;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzJHl9ySei .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzJHl9ySei .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzJHl9ySei .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzJHl9ySei .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tzJHl9ySei .navbar.opened {
  transition: all 0.3s;
}
.cid-tzJHl9ySei .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzJHl9ySei .navbar .navbar-logo img {
  width: auto;
}
.cid-tzJHl9ySei .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzJHl9ySei .navbar.collapsed {
  justify-content: center;
}
.cid-tzJHl9ySei .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzJHl9ySei .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzJHl9ySei .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tzJHl9ySei .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzJHl9ySei .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzJHl9ySei .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzJHl9ySei .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzJHl9ySei .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tzJHl9ySei .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzJHl9ySei .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzJHl9ySei .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzJHl9ySei .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzJHl9ySei .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzJHl9ySei .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tzJHl9ySei .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tzJHl9ySei .navbar.navbar-short {
  min-height: 60px;
}
.cid-tzJHl9ySei .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tzJHl9ySei .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tzJHl9ySei .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzJHl9ySei .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzJHl9ySei .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzJHl9ySei .dropdown-item.active,
.cid-tzJHl9ySei .dropdown-item:active {
  background-color: transparent;
}
.cid-tzJHl9ySei .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzJHl9ySei .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzJHl9ySei .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzJHl9ySei .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzJHl9ySei .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzJHl9ySei .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzJHl9ySei ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzJHl9ySei .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzJHl9ySei button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzJHl9ySei button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzJHl9ySei nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzJHl9ySei .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tzJHl9ySei a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzJHl9ySei .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzJHl9ySei .navbar {
    height: 70px;
  }
  .cid-tzJHl9ySei .navbar.opened {
    height: auto;
  }
  .cid-tzJHl9ySei .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLxBxlEewV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1296.webp");
}
.cid-tLxBxlEewV .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tLxBxlEewV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLxBxlEewV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLxBxlEewV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tLxBxlEewV .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tLxBxlEewV .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tLxBxlEewV .mbr-section-title {
  color: #ffffff;
}
.cid-tAzFsvkScF {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tAzFsvkScF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tAzFsvkScF .grafico {
  position: relative;
  height: 10em;
  width: 10em;
  top: -100px;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tAqPe69Q0u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tAqPe69Q0u nav.navbar {
  position: fixed;
}
.cid-tAqPe69Q0u .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAqPe69Q0u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAqPe69Q0u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAqPe69Q0u .dropdown-item:hover,
.cid-tAqPe69Q0u .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tAqPe69Q0u .dropdown-item:hover span {
  color: white;
}
.cid-tAqPe69Q0u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAqPe69Q0u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAqPe69Q0u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAqPe69Q0u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAqPe69Q0u .nav-link {
  position: relative;
}
.cid-tAqPe69Q0u .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAqPe69Q0u .container {
    flex-wrap: wrap;
  }
}
.cid-tAqPe69Q0u .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAqPe69Q0u .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tAqPe69Q0u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAqPe69Q0u .dropdown-menu,
.cid-tAqPe69Q0u .navbar.opened {
  background: #000000 !important;
}
.cid-tAqPe69Q0u .nav-item:focus,
.cid-tAqPe69Q0u .nav-link:focus {
  outline: none;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAqPe69Q0u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAqPe69Q0u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAqPe69Q0u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tAqPe69Q0u .navbar.opened {
  transition: all 0.3s;
}
.cid-tAqPe69Q0u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAqPe69Q0u .navbar .navbar-logo img {
  width: auto;
}
.cid-tAqPe69Q0u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAqPe69Q0u .navbar.collapsed {
  justify-content: center;
}
.cid-tAqPe69Q0u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAqPe69Q0u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tAqPe69Q0u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tAqPe69Q0u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAqPe69Q0u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAqPe69Q0u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAqPe69Q0u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tAqPe69Q0u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAqPe69Q0u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAqPe69Q0u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAqPe69Q0u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAqPe69Q0u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tAqPe69Q0u .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tAqPe69Q0u .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAqPe69Q0u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAqPe69Q0u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAqPe69Q0u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tAqPe69Q0u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAqPe69Q0u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAqPe69Q0u .dropdown-item.active,
.cid-tAqPe69Q0u .dropdown-item:active {
  background-color: transparent;
}
.cid-tAqPe69Q0u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAqPe69Q0u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAqPe69Q0u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAqPe69Q0u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tAqPe69Q0u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAqPe69Q0u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAqPe69Q0u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAqPe69Q0u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAqPe69Q0u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAqPe69Q0u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAqPe69Q0u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tAqPe69Q0u .navbar {
    height: 70px;
  }
  .cid-tAqPe69Q0u .navbar.opened {
    height: auto;
  }
  .cid-tAqPe69Q0u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAr1v0PAZZ {
  background-image: url("../../../assets/images/imagen-aspersora-turbina-encabezado-1-1920x1280.webp");
}
.cid-tAr1v0PAZZ .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tAr1v0PAZZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAr1v0PAZZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAr1v0PAZZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tAr1v0PAZZ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tAr1v0PAZZ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tAr1v0PAZZ .mbr-section-title {
  color: #ffffff;
}
.cid-tAwqAs2Y8I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0c555e;
}
.cid-tAwqAs2Y8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAwqAs2Y8I .texto-explicacion {
  font-size: 2rem;
}
.cid-tAwqAs2Y8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAwqAs2Y8I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tAqTyqI9tq {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: url("../../../assets/images/aspersora-turbina-fondo-slice-1920x1280.webp");
}
.cid-tAqTyqI9tq .texto-superior {
  top: -50px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tAqTyqI9tq .carousel {
    min-height: 800px;
  }
  .cid-tAqTyqI9tq .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tAqTyqI9tq .carousel {
    min-height: 520px;
  }
  .cid-tAqTyqI9tq .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tAqTyqI9tq .carousel {
    min-height: 440px;
  }
  .cid-tAqTyqI9tq .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tAqTyqI9tq .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tAqTyqI9tq .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tAqTyqI9tq .carousel,
.cid-tAqTyqI9tq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tAqTyqI9tq .item-wrapper {
  width: 100%;
}
.cid-tAqTyqI9tq .carousel-caption {
  bottom: 40px;
}
.cid-tAqTyqI9tq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: .9;
}
.cid-tAqTyqI9tq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tAqTyqI9tq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tAqTyqI9tq .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tAqTyqI9tq .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tAqTyqI9tq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tAqTyqI9tq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tAqTyqI9tq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tAqTyqI9tq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tAqTyqI9tq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tAqTyqI9tq .carousel-indicators li.active,
.cid-tAqTyqI9tq .carousel-indicators li:hover {
  opacity: 0.1;
}
.cid-tAqTyqI9tq .carousel-indicators li::after,
.cid-tAqTyqI9tq .carousel-indicators li::before {
  content: none;
}
.cid-tAqTyqI9tq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tAqTyqI9tq .carousel-indicators {
    display: none !important;
  }
}
.cid-tBIKo12TFY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tBIKo12TFY [class^="socicon-"]:before,
.cid-tBIKo12TFY [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tBIKo12TFY img {
  width: 85px;
  height: 85px;
}
.cid-tBIKo12TFY .social-list {
  display: flex;
  justify-content: center;
}
.cid-tBIKo12TFY .btn-social,
.cid-tBIKo12TFY .mbr-section-title {
  color: #57468b;
}
.cid-tBIKo12TFY .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tBIKo12TFY .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tBIKo12TFY .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tAqPe69Q0u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tAqPe69Q0u nav.navbar {
  position: fixed;
}
.cid-tAqPe69Q0u .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAqPe69Q0u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAqPe69Q0u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAqPe69Q0u .dropdown-item:hover,
.cid-tAqPe69Q0u .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tAqPe69Q0u .dropdown-item:hover span {
  color: white;
}
.cid-tAqPe69Q0u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAqPe69Q0u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAqPe69Q0u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAqPe69Q0u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tAqPe69Q0u .nav-link {
  position: relative;
}
.cid-tAqPe69Q0u .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAqPe69Q0u .container {
    flex-wrap: wrap;
  }
}
.cid-tAqPe69Q0u .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tAqPe69Q0u .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tAqPe69Q0u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAqPe69Q0u .dropdown-menu,
.cid-tAqPe69Q0u .navbar.opened {
  background: #000000 !important;
}
.cid-tAqPe69Q0u .nav-item:focus,
.cid-tAqPe69Q0u .nav-link:focus {
  outline: none;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAqPe69Q0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAqPe69Q0u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAqPe69Q0u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAqPe69Q0u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tAqPe69Q0u .navbar.opened {
  transition: all 0.3s;
}
.cid-tAqPe69Q0u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAqPe69Q0u .navbar .navbar-logo img {
  width: auto;
}
.cid-tAqPe69Q0u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAqPe69Q0u .navbar.collapsed {
  justify-content: center;
}
.cid-tAqPe69Q0u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAqPe69Q0u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tAqPe69Q0u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tAqPe69Q0u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAqPe69Q0u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAqPe69Q0u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAqPe69Q0u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAqPe69Q0u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tAqPe69Q0u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAqPe69Q0u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAqPe69Q0u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAqPe69Q0u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAqPe69Q0u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAqPe69Q0u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tAqPe69Q0u .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tAqPe69Q0u .navbar.navbar-short {
  min-height: 60px;
}
.cid-tAqPe69Q0u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tAqPe69Q0u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAqPe69Q0u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tAqPe69Q0u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAqPe69Q0u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAqPe69Q0u .dropdown-item.active,
.cid-tAqPe69Q0u .dropdown-item:active {
  background-color: transparent;
}
.cid-tAqPe69Q0u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAqPe69Q0u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAqPe69Q0u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAqPe69Q0u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tAqPe69Q0u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAqPe69Q0u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAqPe69Q0u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAqPe69Q0u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAqPe69Q0u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAqPe69Q0u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAqPe69Q0u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAqPe69Q0u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAqPe69Q0u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAqPe69Q0u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tAqPe69Q0u .navbar {
    height: 70px;
  }
  .cid-tAqPe69Q0u .navbar.opened {
    height: auto;
  }
  .cid-tAqPe69Q0u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAr5Gnp3Ek {
  background-image: url("../../../assets/images/imagen-aspersora-turbina-la-bestia-encabezado-1920x1280.webp");
}
.cid-tAr5Gnp3Ek .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tAr5Gnp3Ek .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAr5Gnp3Ek .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAr5Gnp3Ek .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tAr5Gnp3Ek .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tAr5Gnp3Ek .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tAr5Gnp3Ek .mbr-section-title {
  color: #ffffff;
}
.cid-tAwFvLalTs {
  background-image: url("../../../assets/images/imagen-aspersora-bestia-30-boquillas-1-1920x1280.webp");
}
.cid-tAwFvLalTs .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tAwFvLalTs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAwFvLalTs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAwFvLalTs .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tAwFvLalTs .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tAwFvLalTs .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tAwFvLalTs .mbr-section-title {
  color: #ffffff;
}
.cid-tBlcERW8qB {
  background-image: url("../../../assets/images/aspersora-bestia-36-inches-1920x1280.webp");
}
.cid-tBlcERW8qB .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tBlcERW8qB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBlcERW8qB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBlcERW8qB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tBlcERW8qB .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tBlcERW8qB .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tBlcERW8qB .mbr-section-title {
  color: #ffffff;
}
.cid-tBlcERW8qB .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tBqJgUJOIC {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/imagen-titulo-poder-aspersion-1920x366.webp");
}
.cid-tBqJgUJOIC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBqJgUJOIC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAr5WXZxQt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAr5WXZxQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAr5WXZxQt .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tAr5WXZxQt .icono {
  height: 100px;
  width: 100px;
}
.cid-tAr5WXZxQt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAr5WXZxQt .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tAr5WXZxQt .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tAr5WXZxQt .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tAr5WXZxQt .card {
    margin-bottom: 2rem;
  }
  .cid-tAr5WXZxQt .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tAr5WXZxQt .mbr-text,
.cid-tAr5WXZxQt .mbr-section-btn {
  text-align: center;
}
.cid-tAr5WXZxQt .card-title,
.cid-tAr5WXZxQt .card-box {
  text-align: center;
}
.cid-tBkV93n2Lh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBkV93n2Lh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBkV93n2Lh .icono {
  height: 100px;
  width: 100px;
}
.cid-tBkV93n2Lh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBkV93n2Lh .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tBkV93n2Lh .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tBkV93n2Lh .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tBkV93n2Lh .card {
    margin-bottom: 2rem;
  }
  .cid-tBkV93n2Lh .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBl2FQVRDP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBl2FQVRDP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBl2FQVRDP .icono {
  height: 100px;
  width: 100px;
}
.cid-tBl2FQVRDP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBl2FQVRDP .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tBl2FQVRDP .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tBl2FQVRDP .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tBl2FQVRDP .card {
    margin-bottom: 2rem;
  }
  .cid-tBl2FQVRDP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBUcK80fl1 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBUcK80fl1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBUcK80fl1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBUcK80fl1 .video-wrapper iframe {
  width: 100%;
}
.cid-tBUcK80fl1 .mbr-section-title,
.cid-tBUcK80fl1 .mbr-section-subtitle,
.cid-tBUcK80fl1 .mbr-text {
  text-align: center;
}
.cid-tBTY8RPbRO {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tBTY8RPbRO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tBTY8RPbRO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBTY8RPbRO .borde-bloque {
  border: 1px solid black;
}
.cid-tBTY8RPbRO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBTY8RPbRO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tBTY8RPbRO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tBTY8RPbRO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tBTY8RPbRO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tBTY8RPbRO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tBTY8RPbRO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tBldfz7eu9 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-bestia-fondo-final-2-1920x704.webp");
}
.cid-tBldfz7eu9 .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tBldfz7eu9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBldfz7eu9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBldfz7eu9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tBldfz7eu9 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tBldfz7eu9 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tBldfz7eu9 .mbr-section-title {
  color: #ffffff;
}
.cid-tBPjJyy8it {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tBPjJyy8it [class^="socicon-"]:before,
.cid-tBPjJyy8it [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tBPjJyy8it img {
  width: 85px;
  height: 85px;
}
.cid-tBPjJyy8it .social-list {
  display: flex;
  justify-content: center;
}
.cid-tBPjJyy8it .btn-social,
.cid-tBPjJyy8it .mbr-section-title {
  color: #57468b;
}
.cid-tBPjJyy8it .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tBPjJyy8it .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tBPjJyy8it .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tBPfRqjxq4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBPfRqjxq4 nav.navbar {
  position: fixed;
}
.cid-tBPfRqjxq4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPfRqjxq4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBPfRqjxq4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBPfRqjxq4 .dropdown-item:hover,
.cid-tBPfRqjxq4 .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tBPfRqjxq4 .dropdown-item:hover span {
  color: white;
}
.cid-tBPfRqjxq4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBPfRqjxq4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBPfRqjxq4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBPfRqjxq4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBPfRqjxq4 .nav-link {
  position: relative;
}
.cid-tBPfRqjxq4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBPfRqjxq4 .container {
    flex-wrap: wrap;
  }
}
.cid-tBPfRqjxq4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBPfRqjxq4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBPfRqjxq4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBPfRqjxq4 .dropdown-menu,
.cid-tBPfRqjxq4 .navbar.opened {
  background: #000000 !important;
}
.cid-tBPfRqjxq4 .nav-item:focus,
.cid-tBPfRqjxq4 .nav-link:focus {
  outline: none;
}
.cid-tBPfRqjxq4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBPfRqjxq4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBPfRqjxq4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBPfRqjxq4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPfRqjxq4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBPfRqjxq4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBPfRqjxq4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tBPfRqjxq4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tBPfRqjxq4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBPfRqjxq4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tBPfRqjxq4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBPfRqjxq4 .navbar.collapsed {
  justify-content: center;
}
.cid-tBPfRqjxq4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBPfRqjxq4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBPfRqjxq4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBPfRqjxq4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBPfRqjxq4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBPfRqjxq4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tBPfRqjxq4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBPfRqjxq4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBPfRqjxq4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBPfRqjxq4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBPfRqjxq4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBPfRqjxq4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBPfRqjxq4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBPfRqjxq4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tBPfRqjxq4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBPfRqjxq4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBPfRqjxq4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBPfRqjxq4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBPfRqjxq4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBPfRqjxq4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBPfRqjxq4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBPfRqjxq4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBPfRqjxq4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBPfRqjxq4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBPfRqjxq4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBPfRqjxq4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBPfRqjxq4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBPfRqjxq4 .dropdown-item.active,
.cid-tBPfRqjxq4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tBPfRqjxq4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBPfRqjxq4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBPfRqjxq4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBPfRqjxq4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tBPfRqjxq4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBPfRqjxq4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBPfRqjxq4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBPfRqjxq4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBPfRqjxq4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBPfRqjxq4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tBPfRqjxq4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBPfRqjxq4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBPfRqjxq4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBPfRqjxq4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBPfRqjxq4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBPfRqjxq4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBPfRqjxq4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBPfRqjxq4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBPfRqjxq4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBPfRqjxq4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBPfRqjxq4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBPfRqjxq4 .navbar {
    height: 70px;
  }
  .cid-tBPfRqjxq4 .navbar.opened {
    height: auto;
  }
  .cid-tBPfRqjxq4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBPfRqPRbZ {
  background-image: url("../../../assets/images/aspersoras-electrostaticas-encabezado-1920x1280.webp");
}
.cid-tBPfRqPRbZ .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tBPfRqPRbZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBPfRqPRbZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBPfRqPRbZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tBPfRqPRbZ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tBPfRqPRbZ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tBPfRqPRbZ .mbr-section-title {
  color: #e43f3f;
}
.cid-tLrEVZbgUK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0c555e;
}
.cid-tLrEVZbgUK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLrEVZbgUK .texto-explicacion {
  font-size: 2rem;
}
.cid-tLrEVZbgUK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLrEVZbgUK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tBPfRrUNZl {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: url("../../../assets/images/aspersora-electrostatica-tecnologia-italiana-1920x1280.webp");
}
.cid-tBPfRrUNZl .texto-superior {
  top: -50px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tBPfRrUNZl .carousel {
    min-height: 800px;
  }
  .cid-tBPfRrUNZl .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tBPfRrUNZl .carousel {
    min-height: 520px;
  }
  .cid-tBPfRrUNZl .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tBPfRrUNZl .carousel {
    min-height: 440px;
  }
  .cid-tBPfRrUNZl .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tBPfRrUNZl .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tBPfRrUNZl .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tBPfRrUNZl .carousel,
.cid-tBPfRrUNZl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tBPfRrUNZl .item-wrapper {
  width: 100%;
}
.cid-tBPfRrUNZl .carousel-caption {
  bottom: 40px;
}
.cid-tBPfRrUNZl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: .9;
}
.cid-tBPfRrUNZl .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tBPfRrUNZl .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tBPfRrUNZl .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tBPfRrUNZl .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tBPfRrUNZl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBPfRrUNZl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBPfRrUNZl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tBPfRrUNZl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tBPfRrUNZl .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tBPfRrUNZl .carousel-indicators li.active,
.cid-tBPfRrUNZl .carousel-indicators li:hover {
  opacity: 0.1;
}
.cid-tBPfRrUNZl .carousel-indicators li::after,
.cid-tBPfRrUNZl .carousel-indicators li::before {
  content: none;
}
.cid-tBPfRrUNZl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tBPfRrUNZl .carousel-indicators {
    display: none !important;
  }
}
.cid-tBPiUilO7m {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tBPiUilO7m [class^="socicon-"]:before,
.cid-tBPiUilO7m [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tBPiUilO7m img {
  width: 85px;
  height: 85px;
}
.cid-tBPiUilO7m .social-list {
  display: flex;
  justify-content: center;
}
.cid-tBPiUilO7m .btn-social,
.cid-tBPiUilO7m .mbr-section-title {
  color: #57468b;
}
.cid-tBPiUilO7m .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tBPiUilO7m .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tBPiUilO7m .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tBPgCagpKQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBPgCagpKQ nav.navbar {
  position: fixed;
}
.cid-tBPgCagpKQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPgCagpKQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBPgCagpKQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBPgCagpKQ .dropdown-item:hover,
.cid-tBPgCagpKQ .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tBPgCagpKQ .dropdown-item:hover span {
  color: white;
}
.cid-tBPgCagpKQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBPgCagpKQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBPgCagpKQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBPgCagpKQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBPgCagpKQ .nav-link {
  position: relative;
}
.cid-tBPgCagpKQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBPgCagpKQ .container {
    flex-wrap: wrap;
  }
}
.cid-tBPgCagpKQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBPgCagpKQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBPgCagpKQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBPgCagpKQ .dropdown-menu,
.cid-tBPgCagpKQ .navbar.opened {
  background: #000000 !important;
}
.cid-tBPgCagpKQ .nav-item:focus,
.cid-tBPgCagpKQ .nav-link:focus {
  outline: none;
}
.cid-tBPgCagpKQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBPgCagpKQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBPgCagpKQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBPgCagpKQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPgCagpKQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBPgCagpKQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBPgCagpKQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tBPgCagpKQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tBPgCagpKQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBPgCagpKQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tBPgCagpKQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBPgCagpKQ .navbar.collapsed {
  justify-content: center;
}
.cid-tBPgCagpKQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBPgCagpKQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBPgCagpKQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBPgCagpKQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBPgCagpKQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBPgCagpKQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tBPgCagpKQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBPgCagpKQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBPgCagpKQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBPgCagpKQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBPgCagpKQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBPgCagpKQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBPgCagpKQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBPgCagpKQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tBPgCagpKQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBPgCagpKQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBPgCagpKQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBPgCagpKQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBPgCagpKQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBPgCagpKQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBPgCagpKQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBPgCagpKQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBPgCagpKQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBPgCagpKQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBPgCagpKQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBPgCagpKQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBPgCagpKQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBPgCagpKQ .dropdown-item.active,
.cid-tBPgCagpKQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tBPgCagpKQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBPgCagpKQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBPgCagpKQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBPgCagpKQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tBPgCagpKQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBPgCagpKQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBPgCagpKQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBPgCagpKQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBPgCagpKQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBPgCagpKQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tBPgCagpKQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBPgCagpKQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBPgCagpKQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBPgCagpKQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBPgCagpKQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBPgCagpKQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBPgCagpKQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBPgCagpKQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBPgCagpKQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBPgCagpKQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBPgCagpKQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBPgCagpKQ .navbar {
    height: 70px;
  }
  .cid-tBPgCagpKQ .navbar.opened {
    height: auto;
  }
  .cid-tBPgCagpKQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBPgCaR6UV {
  background-image: url("../../../assets/images/asperoras-bufalo-estandar-encabezado-1920x1280.webp");
}
.cid-tBPgCaR6UV .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tBPgCaR6UV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBPgCaR6UV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBPgCaR6UV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tBPgCaR6UV .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tBPgCaR6UV .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tBPgCaR6UV .mbr-section-title {
  color: #c8f300;
}
.cid-tLrE2ipcJU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0c555e;
}
.cid-tLrE2ipcJU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLrE2ipcJU .texto-explicacion {
  font-size: 2rem;
}
.cid-tLrE2ipcJU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLrE2ipcJU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tBPgCbYSmA {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: url("../../../assets/images/aspersora-estandar-fondo-slide-1920x1280.webp");
}
.cid-tBPgCbYSmA .texto-superior {
  top: -50px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tBPgCbYSmA .carousel {
    min-height: 800px;
  }
  .cid-tBPgCbYSmA .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tBPgCbYSmA .carousel {
    min-height: 520px;
  }
  .cid-tBPgCbYSmA .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tBPgCbYSmA .carousel {
    min-height: 440px;
  }
  .cid-tBPgCbYSmA .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tBPgCbYSmA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tBPgCbYSmA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tBPgCbYSmA .carousel,
.cid-tBPgCbYSmA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tBPgCbYSmA .item-wrapper {
  width: 100%;
}
.cid-tBPgCbYSmA .carousel-caption {
  bottom: 40px;
}
.cid-tBPgCbYSmA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: .9;
}
.cid-tBPgCbYSmA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tBPgCbYSmA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tBPgCbYSmA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tBPgCbYSmA .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tBPgCbYSmA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBPgCbYSmA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBPgCbYSmA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tBPgCbYSmA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tBPgCbYSmA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tBPgCbYSmA .carousel-indicators li.active,
.cid-tBPgCbYSmA .carousel-indicators li:hover {
  opacity: 0.1;
}
.cid-tBPgCbYSmA .carousel-indicators li::after,
.cid-tBPgCbYSmA .carousel-indicators li::before {
  content: none;
}
.cid-tBPgCbYSmA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tBPgCbYSmA .carousel-indicators {
    display: none !important;
  }
}
.cid-tBPjx0MwCQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tBPjx0MwCQ [class^="socicon-"]:before,
.cid-tBPjx0MwCQ [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tBPjx0MwCQ img {
  width: 85px;
  height: 85px;
}
.cid-tBPjx0MwCQ .social-list {
  display: flex;
  justify-content: center;
}
.cid-tBPjx0MwCQ .btn-social,
.cid-tBPjx0MwCQ .mbr-section-title {
  color: #57468b;
}
.cid-tBPjx0MwCQ .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tBPjx0MwCQ .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tBPjx0MwCQ .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tBPhn02YGG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tBPhn02YGG nav.navbar {
  position: fixed;
}
.cid-tBPhn02YGG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPhn02YGG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBPhn02YGG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBPhn02YGG .dropdown-item:hover,
.cid-tBPhn02YGG .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tBPhn02YGG .dropdown-item:hover span {
  color: white;
}
.cid-tBPhn02YGG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBPhn02YGG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBPhn02YGG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBPhn02YGG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBPhn02YGG .nav-link {
  position: relative;
}
.cid-tBPhn02YGG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBPhn02YGG .container {
    flex-wrap: wrap;
  }
}
.cid-tBPhn02YGG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tBPhn02YGG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tBPhn02YGG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBPhn02YGG .dropdown-menu,
.cid-tBPhn02YGG .navbar.opened {
  background: #000000 !important;
}
.cid-tBPhn02YGG .nav-item:focus,
.cid-tBPhn02YGG .nav-link:focus {
  outline: none;
}
.cid-tBPhn02YGG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBPhn02YGG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBPhn02YGG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBPhn02YGG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBPhn02YGG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBPhn02YGG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBPhn02YGG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tBPhn02YGG .navbar.opened {
  transition: all 0.3s;
}
.cid-tBPhn02YGG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBPhn02YGG .navbar .navbar-logo img {
  width: auto;
}
.cid-tBPhn02YGG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBPhn02YGG .navbar.collapsed {
  justify-content: center;
}
.cid-tBPhn02YGG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBPhn02YGG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBPhn02YGG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tBPhn02YGG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBPhn02YGG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBPhn02YGG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tBPhn02YGG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBPhn02YGG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBPhn02YGG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBPhn02YGG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBPhn02YGG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBPhn02YGG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBPhn02YGG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBPhn02YGG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tBPhn02YGG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBPhn02YGG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBPhn02YGG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBPhn02YGG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBPhn02YGG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBPhn02YGG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBPhn02YGG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBPhn02YGG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBPhn02YGG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBPhn02YGG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBPhn02YGG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBPhn02YGG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBPhn02YGG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBPhn02YGG .dropdown-item.active,
.cid-tBPhn02YGG .dropdown-item:active {
  background-color: transparent;
}
.cid-tBPhn02YGG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBPhn02YGG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBPhn02YGG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBPhn02YGG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tBPhn02YGG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBPhn02YGG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBPhn02YGG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBPhn02YGG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBPhn02YGG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBPhn02YGG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tBPhn02YGG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBPhn02YGG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBPhn02YGG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBPhn02YGG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBPhn02YGG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBPhn02YGG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBPhn02YGG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBPhn02YGG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBPhn02YGG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBPhn02YGG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBPhn02YGG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBPhn02YGG .navbar {
    height: 70px;
  }
  .cid-tBPhn02YGG .navbar.opened {
    height: auto;
  }
  .cid-tBPhn02YGG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBPhn0BNxx {
  background-image: url("../../../assets/images/desmenuzadora-encabezado-1920x1280.webp");
}
.cid-tBPhn0BNxx .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tBPhn0BNxx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBPhn0BNxx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBPhn0BNxx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tBPhn0BNxx .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tBPhn0BNxx .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tBPhn0BNxx .mbr-section-title {
  color: #4479d9;
}
.cid-tJ9gx03xok {
  background-image: url("../../../assets/images/desmenuzadora-doble-rotor-1920x1280.webp");
}
.cid-tJ9gx03xok .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tJ9gx03xok .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9gx03xok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9gx03xok .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9gx03xok .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9gx03xok .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9gx03xok .mbr-section-title {
  color: #ffffff;
}
.cid-tJ9gNiEhgV {
  background-image: url("../../../assets/images/desmenuzadora-6-1920x1280.webp");
}
.cid-tJ9gNiEhgV .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tJ9gNiEhgV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9gNiEhgV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9gNiEhgV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9gNiEhgV .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9gNiEhgV .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9gNiEhgV .mbr-section-title {
  color: #ffffff;
}
.cid-tJ9hcfwWBk {
  background-image: url("../../../assets/images/desmenuzadora-hidraulico-1920x1280.webp");
}
.cid-tJ9hcfwWBk .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tJ9hcfwWBk .ubicacion-titulo {
  position: relative;
  top: 5px;
}
.cid-tJ9hcfwWBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9hcfwWBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9hcfwWBk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9hcfwWBk .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9hcfwWBk .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9hcfwWBk .mbr-section-title {
  color: #353535;
}
.cid-tJ9iEvIYrZ {
  background-image: url("../../../assets/images/desmenuzadora-separador-1920x1280.webp");
}
.cid-tJ9iEvIYrZ .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tJ9iEvIYrZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9iEvIYrZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9iEvIYrZ .ubicacion-titulo {
  position: relative;
  top: -150px;
}
.cid-tJ9iEvIYrZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9iEvIYrZ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9iEvIYrZ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9iEvIYrZ .mbr-section-title {
  color: #ffffff;
}
.cid-tJ9j7tl9m7 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/desmenuzadora-pie-pagina-1920x704.webp");
}
.cid-tJ9j7tl9m7 .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tJ9j7tl9m7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9j7tl9m7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9j7tl9m7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9j7tl9m7 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9j7tl9m7 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9j7tl9m7 .mbr-section-title {
  color: #ffffff;
}
.cid-tBPjDoJdyF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tBPjDoJdyF [class^="socicon-"]:before,
.cid-tBPjDoJdyF [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tBPjDoJdyF img {
  width: 85px;
  height: 85px;
}
.cid-tBPjDoJdyF .social-list {
  display: flex;
  justify-content: center;
}
.cid-tBPjDoJdyF .btn-social,
.cid-tBPjDoJdyF .mbr-section-title {
  color: #57468b;
}
.cid-tBPjDoJdyF .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tBPjDoJdyF .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tBPjDoJdyF .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tCvfakx3Ew {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCvfakx3Ew nav.navbar {
  position: fixed;
}
.cid-tCvfakx3Ew .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCvfakx3Ew .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCvfakx3Ew .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCvfakx3Ew .dropdown-item:hover,
.cid-tCvfakx3Ew .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tCvfakx3Ew .dropdown-item:hover span {
  color: white;
}
.cid-tCvfakx3Ew .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCvfakx3Ew .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCvfakx3Ew .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCvfakx3Ew .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCvfakx3Ew .nav-link {
  position: relative;
}
.cid-tCvfakx3Ew .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCvfakx3Ew .container {
    flex-wrap: wrap;
  }
}
.cid-tCvfakx3Ew .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCvfakx3Ew .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tCvfakx3Ew .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCvfakx3Ew .dropdown-menu,
.cid-tCvfakx3Ew .navbar.opened {
  background: #000000 !important;
}
.cid-tCvfakx3Ew .nav-item:focus,
.cid-tCvfakx3Ew .nav-link:focus {
  outline: none;
}
.cid-tCvfakx3Ew .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCvfakx3Ew .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCvfakx3Ew .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCvfakx3Ew .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCvfakx3Ew .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCvfakx3Ew .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCvfakx3Ew .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tCvfakx3Ew .navbar.opened {
  transition: all 0.3s;
}
.cid-tCvfakx3Ew .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCvfakx3Ew .navbar .navbar-logo img {
  width: auto;
}
.cid-tCvfakx3Ew .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCvfakx3Ew .navbar.collapsed {
  justify-content: center;
}
.cid-tCvfakx3Ew .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCvfakx3Ew .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCvfakx3Ew .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCvfakx3Ew .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCvfakx3Ew .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCvfakx3Ew .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tCvfakx3Ew .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCvfakx3Ew .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCvfakx3Ew .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCvfakx3Ew .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCvfakx3Ew .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCvfakx3Ew .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCvfakx3Ew .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCvfakx3Ew .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tCvfakx3Ew .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCvfakx3Ew .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCvfakx3Ew .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCvfakx3Ew .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCvfakx3Ew .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCvfakx3Ew .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCvfakx3Ew .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCvfakx3Ew .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCvfakx3Ew .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCvfakx3Ew .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCvfakx3Ew .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCvfakx3Ew .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCvfakx3Ew .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCvfakx3Ew .dropdown-item.active,
.cid-tCvfakx3Ew .dropdown-item:active {
  background-color: transparent;
}
.cid-tCvfakx3Ew .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCvfakx3Ew .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCvfakx3Ew .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCvfakx3Ew .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tCvfakx3Ew .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCvfakx3Ew .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCvfakx3Ew ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCvfakx3Ew .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCvfakx3Ew button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCvfakx3Ew button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tCvfakx3Ew button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCvfakx3Ew button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCvfakx3Ew button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCvfakx3Ew button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCvfakx3Ew nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCvfakx3Ew nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCvfakx3Ew nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCvfakx3Ew nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCvfakx3Ew .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCvfakx3Ew a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCvfakx3Ew .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCvfakx3Ew .navbar {
    height: 70px;
  }
  .cid-tCvfakx3Ew .navbar.opened {
    height: auto;
  }
  .cid-tCvfakx3Ew .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCvfal4ttq {
  background-image: url("../../../assets/images/aspersora-turbina-citrus-encabezado-1920x1280.webp");
}
.cid-tCvfal4ttq .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tCvfal4ttq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfal4ttq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfal4ttq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvfal4ttq .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvfal4ttq .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvfal4ttq .mbr-section-title {
  color: #ffffff;
}
.cid-tCvfalJ448 {
  background-image: url("../../../assets/images/aspersora-turbina-citrus-16-pulgadas-1920x1280.webp");
}
.cid-tCvfalJ448 .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tCvfalJ448 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfalJ448 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfalJ448 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvfalJ448 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvfalJ448 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvfalJ448 .mbr-section-title {
  color: #ffffff;
}
.cid-tCvfamixcg {
  background-image: url("../../../assets/images/aspersora-turbina-citrus-design-1920x1280.webp");
}
.cid-tCvfamixcg .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tCvfamixcg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfamixcg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfamixcg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvfamixcg .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvfamixcg .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvfamixcg .mbr-section-title {
  color: #ffffff;
}
.cid-tCvfamixcg .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tCvfamVcSN {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aspersora-turbina-citrus-ingenieria-1920x366.webp");
}
.cid-tCvfamVcSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfamVcSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfanseJK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCvfanseJK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfanseJK .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tCvfanseJK .icono {
  height: 100px;
  width: 100px;
}
.cid-tCvfanseJK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfanseJK .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tCvfanseJK .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tCvfanseJK .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tCvfanseJK .card {
    margin-bottom: 2rem;
  }
  .cid-tCvfanseJK .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tCvfanseJK .mbr-text,
.cid-tCvfanseJK .mbr-section-btn {
  text-align: center;
}
.cid-tCvfanseJK .card-title,
.cid-tCvfanseJK .card-box {
  text-align: center;
}
.cid-tCvfao8X44 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCvfao8X44 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfao8X44 .icono {
  height: 100px;
  width: 100px;
}
.cid-tCvfao8X44 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfao8X44 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tCvfao8X44 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tCvfao8X44 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tCvfao8X44 .card {
    margin-bottom: 2rem;
  }
  .cid-tCvfao8X44 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tCvfaoTDvA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCvfaoTDvA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfaoTDvA .icono {
  height: 100px;
  width: 100px;
}
.cid-tCvfaoTDvA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfaoTDvA .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tCvfaoTDvA .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tCvfaoTDvA .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tCvfaoTDvA .card {
    margin-bottom: 2rem;
  }
  .cid-tCvfaoTDvA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tCvfapxVXv {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tCvfapxVXv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfapxVXv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfapxVXv .video-wrapper iframe {
  width: 100%;
}
.cid-tCvfapxVXv .mbr-section-title,
.cid-tCvfapxVXv .mbr-section-subtitle,
.cid-tCvfapxVXv .mbr-text {
  text-align: center;
}
.cid-tCvfaqa9Tu {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tCvfaqa9Tu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tCvfaqa9Tu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCvfaqa9Tu .borde-bloque {
  border: 1px solid black;
}
.cid-tCvfaqa9Tu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCvfaqa9Tu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tCvfaqa9Tu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tCvfaqa9Tu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tCvfaqa9Tu .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tCvfaqa9Tu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tCvfaqa9Tu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tCvfaqOg3A {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-turbina-citrus-pie-pagina-1920x704.webp");
}
.cid-tCvfaqOg3A .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tCvfaqOg3A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvfaqOg3A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvfaqOg3A .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvfaqOg3A .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvfaqOg3A .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvfaqOg3A .mbr-section-title {
  color: #ffffff;
}
.cid-tCvfarux93 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tCvfarux93 [class^="socicon-"]:before,
.cid-tCvfarux93 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tCvfarux93 img {
  width: 85px;
  height: 85px;
}
.cid-tCvfarux93 .social-list {
  display: flex;
  justify-content: center;
}
.cid-tCvfarux93 .btn-social,
.cid-tCvfarux93 .mbr-section-title {
  color: #57468b;
}
.cid-tCvfarux93 .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tCvfarux93 .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tCvfarux93 .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tCvoQWGblK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tCvoQWGblK nav.navbar {
  position: fixed;
}
.cid-tCvoQWGblK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCvoQWGblK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCvoQWGblK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCvoQWGblK .dropdown-item:hover,
.cid-tCvoQWGblK .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tCvoQWGblK .dropdown-item:hover span {
  color: white;
}
.cid-tCvoQWGblK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCvoQWGblK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCvoQWGblK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCvoQWGblK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCvoQWGblK .nav-link {
  position: relative;
}
.cid-tCvoQWGblK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCvoQWGblK .container {
    flex-wrap: wrap;
  }
}
.cid-tCvoQWGblK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tCvoQWGblK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tCvoQWGblK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCvoQWGblK .dropdown-menu,
.cid-tCvoQWGblK .navbar.opened {
  background: #000000 !important;
}
.cid-tCvoQWGblK .nav-item:focus,
.cid-tCvoQWGblK .nav-link:focus {
  outline: none;
}
.cid-tCvoQWGblK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCvoQWGblK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCvoQWGblK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCvoQWGblK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCvoQWGblK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCvoQWGblK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCvoQWGblK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tCvoQWGblK .navbar.opened {
  transition: all 0.3s;
}
.cid-tCvoQWGblK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCvoQWGblK .navbar .navbar-logo img {
  width: auto;
}
.cid-tCvoQWGblK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCvoQWGblK .navbar.collapsed {
  justify-content: center;
}
.cid-tCvoQWGblK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCvoQWGblK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCvoQWGblK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tCvoQWGblK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCvoQWGblK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCvoQWGblK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tCvoQWGblK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCvoQWGblK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCvoQWGblK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCvoQWGblK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCvoQWGblK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCvoQWGblK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCvoQWGblK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCvoQWGblK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tCvoQWGblK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCvoQWGblK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCvoQWGblK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCvoQWGblK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCvoQWGblK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCvoQWGblK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tCvoQWGblK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tCvoQWGblK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCvoQWGblK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCvoQWGblK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCvoQWGblK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCvoQWGblK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCvoQWGblK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCvoQWGblK .dropdown-item.active,
.cid-tCvoQWGblK .dropdown-item:active {
  background-color: transparent;
}
.cid-tCvoQWGblK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCvoQWGblK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCvoQWGblK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCvoQWGblK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tCvoQWGblK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCvoQWGblK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCvoQWGblK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCvoQWGblK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCvoQWGblK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCvoQWGblK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tCvoQWGblK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCvoQWGblK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCvoQWGblK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCvoQWGblK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCvoQWGblK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCvoQWGblK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCvoQWGblK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCvoQWGblK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCvoQWGblK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tCvoQWGblK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCvoQWGblK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCvoQWGblK .navbar {
    height: 70px;
  }
  .cid-tCvoQWGblK .navbar.opened {
    height: auto;
  }
  .cid-tCvoQWGblK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCvoQXgRVm {
  background-image: url("../../../assets/images/aspersora-turbina-junior-encabezado-1-1920x1280.webp");
}
.cid-tCvoQXgRVm .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tCvoQXgRVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoQXgRVm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoQXgRVm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvoQXgRVm .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvoQXgRVm .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvoQXgRVm .mbr-section-title {
  color: #ffffff;
}
.cid-tCvoQY2FLe {
  background-image: url("../../../assets/images/aspersora-turbina-junior-16-pulgadas-1920x1280.webp");
}
.cid-tCvoQY2FLe .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tCvoQY2FLe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoQY2FLe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoQY2FLe .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvoQY2FLe .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvoQY2FLe .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvoQY2FLe .mbr-section-title {
  color: #ffffff;
}
.cid-tCvoQYDOdc {
  background-image: url("../../../assets/images/aspersora-turbina-junior-8-palas-1920x1280.webp");
}
.cid-tCvoQYDOdc .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tCvoQYDOdc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoQYDOdc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoQYDOdc .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvoQYDOdc .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvoQYDOdc .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvoQYDOdc .mbr-section-title {
  color: #ffffff;
}
.cid-tCvoQYDOdc .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tLrT7GlW7F {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/aspersora-turbina-junior-calidad2a-1-1920x366.webp");
}
.cid-tLrT7GlW7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLrT7GlW7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoR026zg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCvoR026zg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoR026zg .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tCvoR026zg .icono {
  height: 100px;
  width: 100px;
}
.cid-tCvoR026zg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoR026zg .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tCvoR026zg .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tCvoR026zg .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tCvoR026zg .card {
    margin-bottom: 2rem;
  }
  .cid-tCvoR026zg .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tCvoR026zg .mbr-text,
.cid-tCvoR026zg .mbr-section-btn {
  text-align: center;
}
.cid-tCvoR026zg .card-title,
.cid-tCvoR026zg .card-box {
  text-align: center;
}
.cid-tCvoR0GCGr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCvoR0GCGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoR0GCGr .icono {
  height: 100px;
  width: 100px;
}
.cid-tCvoR0GCGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoR0GCGr .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tCvoR0GCGr .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tCvoR0GCGr .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tCvoR0GCGr .card {
    margin-bottom: 2rem;
  }
  .cid-tCvoR0GCGr .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tCvoR1hw9G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tCvoR1hw9G .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoR1hw9G .icono {
  height: 100px;
  width: 100px;
}
.cid-tCvoR1hw9G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoR1hw9G .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tCvoR1hw9G .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tCvoR1hw9G .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tCvoR1hw9G .card {
    margin-bottom: 2rem;
  }
  .cid-tCvoR1hw9G .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tCvoR1Tw3T {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tCvoR1Tw3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoR1Tw3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoR1Tw3T .video-wrapper iframe {
  width: 100%;
}
.cid-tCvoR1Tw3T .mbr-section-title,
.cid-tCvoR1Tw3T .mbr-section-subtitle,
.cid-tCvoR1Tw3T .mbr-text {
  text-align: center;
}
.cid-tCvoR2v1OK {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tCvoR2v1OK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tCvoR2v1OK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCvoR2v1OK .borde-bloque {
  border: 1px solid black;
}
.cid-tCvoR2v1OK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCvoR2v1OK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tCvoR2v1OK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tCvoR2v1OK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tCvoR2v1OK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tCvoR2v1OK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tCvoR2v1OK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tCvoR3f67w {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-turbina-junior-pie-pagina-1920x704.webp");
}
.cid-tCvoR3f67w .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tCvoR3f67w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCvoR3f67w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCvoR3f67w .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tCvoR3f67w .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tCvoR3f67w .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tCvoR3f67w .mbr-section-title {
  color: #ffffff;
}
.cid-tCvoR46Fhe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tCvoR46Fhe [class^="socicon-"]:before,
.cid-tCvoR46Fhe [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tCvoR46Fhe img {
  width: 85px;
  height: 85px;
}
.cid-tCvoR46Fhe .social-list {
  display: flex;
  justify-content: center;
}
.cid-tCvoR46Fhe .btn-social,
.cid-tCvoR46Fhe .mbr-section-title {
  color: #57468b;
}
.cid-tCvoR46Fhe .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tCvoR46Fhe .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tCvoR46Fhe .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tEcaRzyQCx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEcaRzyQCx nav.navbar {
  position: fixed;
}
.cid-tEcaRzyQCx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcaRzyQCx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEcaRzyQCx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEcaRzyQCx .dropdown-item:hover,
.cid-tEcaRzyQCx .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tEcaRzyQCx .dropdown-item:hover span {
  color: white;
}
.cid-tEcaRzyQCx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEcaRzyQCx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEcaRzyQCx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEcaRzyQCx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEcaRzyQCx .nav-link {
  position: relative;
}
.cid-tEcaRzyQCx .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcaRzyQCx .container {
    flex-wrap: wrap;
  }
}
.cid-tEcaRzyQCx .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcaRzyQCx .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tEcaRzyQCx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEcaRzyQCx .dropdown-menu,
.cid-tEcaRzyQCx .navbar.opened {
  background: #000000 !important;
}
.cid-tEcaRzyQCx .nav-item:focus,
.cid-tEcaRzyQCx .nav-link:focus {
  outline: none;
}
.cid-tEcaRzyQCx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEcaRzyQCx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEcaRzyQCx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEcaRzyQCx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcaRzyQCx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEcaRzyQCx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEcaRzyQCx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tEcaRzyQCx .navbar.opened {
  transition: all 0.3s;
}
.cid-tEcaRzyQCx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEcaRzyQCx .navbar .navbar-logo img {
  width: auto;
}
.cid-tEcaRzyQCx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEcaRzyQCx .navbar.collapsed {
  justify-content: center;
}
.cid-tEcaRzyQCx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEcaRzyQCx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEcaRzyQCx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tEcaRzyQCx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEcaRzyQCx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEcaRzyQCx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tEcaRzyQCx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEcaRzyQCx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEcaRzyQCx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEcaRzyQCx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEcaRzyQCx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEcaRzyQCx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEcaRzyQCx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEcaRzyQCx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tEcaRzyQCx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEcaRzyQCx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEcaRzyQCx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEcaRzyQCx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEcaRzyQCx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEcaRzyQCx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEcaRzyQCx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEcaRzyQCx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEcaRzyQCx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEcaRzyQCx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEcaRzyQCx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEcaRzyQCx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEcaRzyQCx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEcaRzyQCx .dropdown-item.active,
.cid-tEcaRzyQCx .dropdown-item:active {
  background-color: transparent;
}
.cid-tEcaRzyQCx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEcaRzyQCx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEcaRzyQCx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEcaRzyQCx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tEcaRzyQCx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEcaRzyQCx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEcaRzyQCx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEcaRzyQCx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEcaRzyQCx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEcaRzyQCx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tEcaRzyQCx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEcaRzyQCx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcaRzyQCx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcaRzyQCx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEcaRzyQCx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcaRzyQCx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEcaRzyQCx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEcaRzyQCx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcaRzyQCx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEcaRzyQCx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEcaRzyQCx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tEcaRzyQCx .navbar {
    height: 70px;
  }
  .cid-tEcaRzyQCx .navbar.opened {
    height: auto;
  }
  .cid-tEcaRzyQCx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEcaRAaz9Z {
  background-image: url("../../../assets/images/aspersora-aguilon-encabezado-1-1920x1280.webp");
}
.cid-tEcaRAaz9Z .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcaRAaz9Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcaRAaz9Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcaRAaz9Z .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcaRAaz9Z .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcaRAaz9Z .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcaRAaz9Z .mbr-section-title {
  color: #ffffff;
}
.cid-tEcaRAMVXO {
  background-image: url("../../../assets/images/aspersora-aguilon-encabezado-1920x1280.webp");
}
.cid-tEcaRAMVXO .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcaRAMVXO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcaRAMVXO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcaRAMVXO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcaRAMVXO .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcaRAMVXO .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcaRAMVXO .mbr-section-title {
  color: #ffffff;
}
.cid-tEcaRBrT8k {
  background-image: url("../../../assets/images/aspersora-aguilon-18-boquillas-1920x1280.webp");
}
.cid-tEcaRBrT8k .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tEcaRBrT8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcaRBrT8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcaRBrT8k .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcaRBrT8k .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcaRBrT8k .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcaRBrT8k .mbr-section-title {
  color: #ffffff;
}
.cid-tEcaRBrT8k .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tEcaRCKqsb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcaRCKqsb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcaRCKqsb .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tEcaRCKqsb .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcaRCKqsb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcaRCKqsb .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcaRCKqsb .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcaRCKqsb .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcaRCKqsb .card {
    margin-bottom: 2rem;
  }
  .cid-tEcaRCKqsb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcaRCKqsb .mbr-text,
.cid-tEcaRCKqsb .mbr-section-btn {
  text-align: center;
}
.cid-tEcaRCKqsb .card-title,
.cid-tEcaRCKqsb .card-box {
  text-align: center;
}
.cid-tEcaRDlIbN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcaRDlIbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcaRDlIbN .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcaRDlIbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcaRDlIbN .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcaRDlIbN .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcaRDlIbN .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcaRDlIbN .card {
    margin-bottom: 2rem;
  }
  .cid-tEcaRDlIbN .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcaREG0Mk {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEcaREG0Mk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcaREG0Mk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcaREG0Mk .video-wrapper iframe {
  width: 100%;
}
.cid-tEcaREG0Mk .mbr-section-title,
.cid-tEcaREG0Mk .mbr-section-subtitle,
.cid-tEcaREG0Mk .mbr-text {
  text-align: center;
}
.cid-tEcaREG0Mk .mbr-section-title {
  color: #ff8901;
}
.cid-tEcaRFl6HT {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tEcaRFl6HT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEcaRFl6HT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEcaRFl6HT .borde-bloque {
  border: 1px solid black;
}
.cid-tEcaRFl6HT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEcaRFl6HT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEcaRFl6HT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcaRFl6HT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tEcaRFl6HT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tEcaRFl6HT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tEcaRFl6HT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcaRGjuSw {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-aguilon-titulo-1920x704.webp");
}
.cid-tEcaRGjuSw .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcaRGjuSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcaRGjuSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcaRGjuSw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcaRGjuSw .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcaRGjuSw .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcaRGjuSw .mbr-section-title {
  color: #ffffff;
}
.cid-tEcaRH8GdX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tEcaRH8GdX [class^="socicon-"]:before,
.cid-tEcaRH8GdX [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tEcaRH8GdX img {
  width: 85px;
  height: 85px;
}
.cid-tEcaRH8GdX .social-list {
  display: flex;
  justify-content: center;
}
.cid-tEcaRH8GdX .btn-social,
.cid-tEcaRH8GdX .mbr-section-title {
  color: #57468b;
}
.cid-tEcaRH8GdX .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tEcaRH8GdX .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tEcaRH8GdX .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tEchYNA5f2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEchYNA5f2 nav.navbar {
  position: fixed;
}
.cid-tEchYNA5f2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEchYNA5f2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEchYNA5f2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEchYNA5f2 .dropdown-item:hover,
.cid-tEchYNA5f2 .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tEchYNA5f2 .dropdown-item:hover span {
  color: white;
}
.cid-tEchYNA5f2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEchYNA5f2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEchYNA5f2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEchYNA5f2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEchYNA5f2 .nav-link {
  position: relative;
}
.cid-tEchYNA5f2 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEchYNA5f2 .container {
    flex-wrap: wrap;
  }
}
.cid-tEchYNA5f2 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEchYNA5f2 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tEchYNA5f2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEchYNA5f2 .dropdown-menu,
.cid-tEchYNA5f2 .navbar.opened {
  background: #000000 !important;
}
.cid-tEchYNA5f2 .nav-item:focus,
.cid-tEchYNA5f2 .nav-link:focus {
  outline: none;
}
.cid-tEchYNA5f2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEchYNA5f2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEchYNA5f2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEchYNA5f2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEchYNA5f2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEchYNA5f2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEchYNA5f2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tEchYNA5f2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tEchYNA5f2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEchYNA5f2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tEchYNA5f2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEchYNA5f2 .navbar.collapsed {
  justify-content: center;
}
.cid-tEchYNA5f2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEchYNA5f2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEchYNA5f2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tEchYNA5f2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEchYNA5f2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEchYNA5f2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tEchYNA5f2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEchYNA5f2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEchYNA5f2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEchYNA5f2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEchYNA5f2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEchYNA5f2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEchYNA5f2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEchYNA5f2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tEchYNA5f2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEchYNA5f2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEchYNA5f2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEchYNA5f2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEchYNA5f2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEchYNA5f2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEchYNA5f2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEchYNA5f2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEchYNA5f2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEchYNA5f2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEchYNA5f2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEchYNA5f2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEchYNA5f2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEchYNA5f2 .dropdown-item.active,
.cid-tEchYNA5f2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tEchYNA5f2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEchYNA5f2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEchYNA5f2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEchYNA5f2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tEchYNA5f2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEchYNA5f2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEchYNA5f2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEchYNA5f2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEchYNA5f2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEchYNA5f2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tEchYNA5f2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEchYNA5f2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEchYNA5f2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEchYNA5f2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEchYNA5f2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEchYNA5f2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEchYNA5f2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEchYNA5f2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEchYNA5f2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEchYNA5f2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEchYNA5f2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tEchYNA5f2 .navbar {
    height: 70px;
  }
  .cid-tEchYNA5f2 .navbar.opened {
    height: auto;
  }
  .cid-tEchYNA5f2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEchYObT4u {
  background-image: url("../../../assets/images/aspersora-carrete-encabezado-1920x1280.webp");
}
.cid-tEchYObT4u .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEchYObT4u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEchYObT4u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEchYObT4u .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEchYObT4u .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEchYObT4u .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEchYObT4u .mbr-section-title {
  color: #ffffff;
}
.cid-tEchYOSLk2 {
  background-image: url("../../../assets/images/aspersora-carrete-titulo-1920x1280.webp");
}
.cid-tEchYOSLk2 .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEchYOSLk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEchYOSLk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEchYOSLk2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEchYOSLk2 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEchYOSLk2 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEchYOSLk2 .mbr-section-title {
  color: #ffffff;
}
.cid-tEchYPxLow {
  background-image: url("../../../assets/images/aspersora-carrete-practicidad-1920x1280.webp");
}
.cid-tEchYPxLow .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tEchYPxLow .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEchYPxLow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEchYPxLow .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEchYPxLow .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEchYPxLow .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEchYPxLow .mbr-section-title {
  color: #ffffff;
}
.cid-tEchYPxLow .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tEchYQOijW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEchYQOijW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEchYQOijW .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tEchYQOijW .icono {
  height: 100px;
  width: 100px;
}
.cid-tEchYQOijW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEchYQOijW .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEchYQOijW .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEchYQOijW .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEchYQOijW .card {
    margin-bottom: 2rem;
  }
  .cid-tEchYQOijW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEchYQOijW .mbr-text,
.cid-tEchYQOijW .mbr-section-btn {
  text-align: center;
}
.cid-tEchYQOijW .card-title,
.cid-tEchYQOijW .card-box {
  text-align: center;
}
.cid-tEchYRxa0o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEchYRxa0o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEchYRxa0o .icono {
  height: 100px;
  width: 100px;
}
.cid-tEchYRxa0o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEchYRxa0o .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEchYRxa0o .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEchYRxa0o .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEchYRxa0o .card {
    margin-bottom: 2rem;
  }
  .cid-tEchYRxa0o .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEchYScQrd {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEchYScQrd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEchYScQrd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEchYScQrd .video-wrapper iframe {
  width: 100%;
}
.cid-tEchYScQrd .mbr-section-title,
.cid-tEchYScQrd .mbr-section-subtitle,
.cid-tEchYScQrd .mbr-text {
  text-align: center;
}
.cid-tEchYScQrd .mbr-section-title {
  color: #ff8901;
}
.cid-tEchYSNsqf {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tEchYSNsqf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEchYSNsqf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEchYSNsqf .borde-bloque {
  border: 1px solid black;
}
.cid-tEchYSNsqf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEchYSNsqf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEchYSNsqf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEchYSNsqf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tEchYSNsqf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tEchYSNsqf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tEchYSNsqf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEchYTGwdZ {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-carrete-titulo2-1-1920x704.webp");
}
.cid-tEchYTGwdZ .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEchYTGwdZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEchYTGwdZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEchYTGwdZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEchYTGwdZ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEchYTGwdZ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEchYTGwdZ .mbr-section-title {
  color: #ffffff;
}
.cid-tEchYUr8Eq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tEchYUr8Eq [class^="socicon-"]:before,
.cid-tEchYUr8Eq [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tEchYUr8Eq img {
  width: 85px;
  height: 85px;
}
.cid-tEchYUr8Eq .social-list {
  display: flex;
  justify-content: center;
}
.cid-tEchYUr8Eq .btn-social,
.cid-tEchYUr8Eq .mbr-section-title {
  color: #57468b;
}
.cid-tEchYUr8Eq .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tEchYUr8Eq .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tEchYUr8Eq .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tEcmXtRGCM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEcmXtRGCM nav.navbar {
  position: fixed;
}
.cid-tEcmXtRGCM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcmXtRGCM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEcmXtRGCM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEcmXtRGCM .dropdown-item:hover,
.cid-tEcmXtRGCM .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tEcmXtRGCM .dropdown-item:hover span {
  color: white;
}
.cid-tEcmXtRGCM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEcmXtRGCM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEcmXtRGCM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEcmXtRGCM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEcmXtRGCM .nav-link {
  position: relative;
}
.cid-tEcmXtRGCM .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcmXtRGCM .container {
    flex-wrap: wrap;
  }
}
.cid-tEcmXtRGCM .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcmXtRGCM .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tEcmXtRGCM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEcmXtRGCM .dropdown-menu,
.cid-tEcmXtRGCM .navbar.opened {
  background: #000000 !important;
}
.cid-tEcmXtRGCM .nav-item:focus,
.cid-tEcmXtRGCM .nav-link:focus {
  outline: none;
}
.cid-tEcmXtRGCM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEcmXtRGCM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEcmXtRGCM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEcmXtRGCM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcmXtRGCM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEcmXtRGCM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEcmXtRGCM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tEcmXtRGCM .navbar.opened {
  transition: all 0.3s;
}
.cid-tEcmXtRGCM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEcmXtRGCM .navbar .navbar-logo img {
  width: auto;
}
.cid-tEcmXtRGCM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEcmXtRGCM .navbar.collapsed {
  justify-content: center;
}
.cid-tEcmXtRGCM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEcmXtRGCM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEcmXtRGCM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tEcmXtRGCM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEcmXtRGCM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEcmXtRGCM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tEcmXtRGCM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEcmXtRGCM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEcmXtRGCM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEcmXtRGCM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEcmXtRGCM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEcmXtRGCM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEcmXtRGCM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEcmXtRGCM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tEcmXtRGCM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEcmXtRGCM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEcmXtRGCM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEcmXtRGCM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEcmXtRGCM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEcmXtRGCM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEcmXtRGCM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEcmXtRGCM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEcmXtRGCM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEcmXtRGCM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEcmXtRGCM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEcmXtRGCM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEcmXtRGCM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEcmXtRGCM .dropdown-item.active,
.cid-tEcmXtRGCM .dropdown-item:active {
  background-color: transparent;
}
.cid-tEcmXtRGCM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEcmXtRGCM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEcmXtRGCM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEcmXtRGCM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tEcmXtRGCM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEcmXtRGCM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEcmXtRGCM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEcmXtRGCM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEcmXtRGCM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEcmXtRGCM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tEcmXtRGCM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEcmXtRGCM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcmXtRGCM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcmXtRGCM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEcmXtRGCM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcmXtRGCM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEcmXtRGCM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEcmXtRGCM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcmXtRGCM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEcmXtRGCM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEcmXtRGCM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tEcmXtRGCM .navbar {
    height: 70px;
  }
  .cid-tEcmXtRGCM .navbar.opened {
    height: auto;
  }
  .cid-tEcmXtRGCM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEcmXuwRIQ {
  background-image: url("../../../assets/images/aspersora-de-pistolas-encabezado-1920x1280.webp");
}
.cid-tEcmXuwRIQ .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcmXuwRIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcmXuwRIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcmXuwRIQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcmXuwRIQ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcmXuwRIQ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcmXuwRIQ .mbr-section-title {
  color: #ffffff;
}
.cid-tEcmXv9okO {
  background-image: url("../../../assets/images/aspersora-de-pistolas-calidad-1920x1280.webp");
}
.cid-tEcmXv9okO .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcmXv9okO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcmXv9okO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcmXv9okO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcmXv9okO .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcmXv9okO .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcmXv9okO .mbr-section-title {
  color: #ffffff;
}
.cid-tEcmXvL8mb {
  background-image: url("../../../assets/images/aspersora-de-pistolas-poder-aspersion-1920x1280.webp");
}
.cid-tEcmXvL8mb .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tEcmXvL8mb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcmXvL8mb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcmXvL8mb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcmXvL8mb .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcmXvL8mb .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcmXvL8mb .mbr-section-title {
  color: #ffffff;
}
.cid-tEcmXvL8mb .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tEcmXwp98W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcmXwp98W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcmXwp98W .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tEcmXwp98W .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcmXwp98W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcmXwp98W .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcmXwp98W .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcmXwp98W .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcmXwp98W .card {
    margin-bottom: 2rem;
  }
  .cid-tEcmXwp98W .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcmXwp98W .mbr-text,
.cid-tEcmXwp98W .mbr-section-btn {
  text-align: center;
}
.cid-tEcmXwp98W .card-title,
.cid-tEcmXwp98W .card-box {
  text-align: center;
}
.cid-tEcmXxoK1o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcmXxoK1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcmXxoK1o .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcmXxoK1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcmXxoK1o .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcmXxoK1o .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcmXxoK1o .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcmXxoK1o .card {
    margin-bottom: 2rem;
  }
  .cid-tEcmXxoK1o .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcmXy0FGo {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEcmXy0FGo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcmXy0FGo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcmXy0FGo .video-wrapper iframe {
  width: 100%;
}
.cid-tEcmXy0FGo .mbr-section-title,
.cid-tEcmXy0FGo .mbr-section-subtitle,
.cid-tEcmXy0FGo .mbr-text {
  text-align: center;
}
.cid-tEcmXy0FGo .mbr-section-title {
  color: #ff8901;
}
.cid-tEcmXywhXZ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tEcmXywhXZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEcmXywhXZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEcmXywhXZ .borde-bloque {
  border: 1px solid black;
}
.cid-tEcmXywhXZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEcmXywhXZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEcmXywhXZ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcmXywhXZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tEcmXywhXZ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tEcmXywhXZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tEcmXywhXZ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcmXz8NZu {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-de-pistolas-titulo-1920x704.webp");
}
.cid-tEcmXz8NZu .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcmXz8NZu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcmXz8NZu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcmXz8NZu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcmXz8NZu .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcmXz8NZu .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcmXz8NZu .mbr-section-title {
  color: #ffffff;
}
.cid-tEcmXzKjeq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tEcmXzKjeq [class^="socicon-"]:before,
.cid-tEcmXzKjeq [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tEcmXzKjeq img {
  width: 85px;
  height: 85px;
}
.cid-tEcmXzKjeq .social-list {
  display: flex;
  justify-content: center;
}
.cid-tEcmXzKjeq .btn-social,
.cid-tEcmXzKjeq .mbr-section-title {
  color: #57468b;
}
.cid-tEcmXzKjeq .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tEcmXzKjeq .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tEcmXzKjeq .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tEcrZnelxf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEcrZnelxf nav.navbar {
  position: fixed;
}
.cid-tEcrZnelxf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcrZnelxf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEcrZnelxf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEcrZnelxf .dropdown-item:hover,
.cid-tEcrZnelxf .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tEcrZnelxf .dropdown-item:hover span {
  color: white;
}
.cid-tEcrZnelxf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEcrZnelxf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEcrZnelxf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEcrZnelxf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEcrZnelxf .nav-link {
  position: relative;
}
.cid-tEcrZnelxf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcrZnelxf .container {
    flex-wrap: wrap;
  }
}
.cid-tEcrZnelxf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcrZnelxf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tEcrZnelxf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEcrZnelxf .dropdown-menu,
.cid-tEcrZnelxf .navbar.opened {
  background: #000000 !important;
}
.cid-tEcrZnelxf .nav-item:focus,
.cid-tEcrZnelxf .nav-link:focus {
  outline: none;
}
.cid-tEcrZnelxf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEcrZnelxf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEcrZnelxf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEcrZnelxf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcrZnelxf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEcrZnelxf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEcrZnelxf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tEcrZnelxf .navbar.opened {
  transition: all 0.3s;
}
.cid-tEcrZnelxf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEcrZnelxf .navbar .navbar-logo img {
  width: auto;
}
.cid-tEcrZnelxf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEcrZnelxf .navbar.collapsed {
  justify-content: center;
}
.cid-tEcrZnelxf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEcrZnelxf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEcrZnelxf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tEcrZnelxf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEcrZnelxf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEcrZnelxf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tEcrZnelxf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEcrZnelxf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEcrZnelxf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEcrZnelxf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEcrZnelxf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEcrZnelxf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEcrZnelxf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEcrZnelxf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tEcrZnelxf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEcrZnelxf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEcrZnelxf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEcrZnelxf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEcrZnelxf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEcrZnelxf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEcrZnelxf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEcrZnelxf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEcrZnelxf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEcrZnelxf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEcrZnelxf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEcrZnelxf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEcrZnelxf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEcrZnelxf .dropdown-item.active,
.cid-tEcrZnelxf .dropdown-item:active {
  background-color: transparent;
}
.cid-tEcrZnelxf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEcrZnelxf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEcrZnelxf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEcrZnelxf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tEcrZnelxf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEcrZnelxf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEcrZnelxf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEcrZnelxf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEcrZnelxf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEcrZnelxf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tEcrZnelxf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEcrZnelxf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcrZnelxf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcrZnelxf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEcrZnelxf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcrZnelxf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEcrZnelxf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEcrZnelxf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcrZnelxf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEcrZnelxf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEcrZnelxf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tEcrZnelxf .navbar {
    height: 70px;
  }
  .cid-tEcrZnelxf .navbar.opened {
    height: auto;
  }
  .cid-tEcrZnelxf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEcrZnRZq2 {
  background-image: url("../../../assets/images/aspersora-levante-encabezado-1920x1280.webp");
}
.cid-tEcrZnRZq2 .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcrZnRZq2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcrZnRZq2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcrZnRZq2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcrZnRZq2 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcrZnRZq2 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcrZnRZq2 .mbr-section-title {
  color: #ffffff;
}
.cid-tEcrZoAYQW {
  background-image: url("../../../assets/images/aspersora-levante-solida-1920x1280.webp");
}
.cid-tEcrZoAYQW .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcrZoAYQW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcrZoAYQW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcrZoAYQW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcrZoAYQW .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcrZoAYQW .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcrZoAYQW .mbr-section-title {
  color: #ffffff;
}
.cid-tEcrZphAng {
  background-image: url("../../../assets/images/aspersora-levante-eficaz-1920x1280.webp");
}
.cid-tEcrZphAng .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tEcrZphAng .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcrZphAng .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcrZphAng .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcrZphAng .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcrZphAng .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcrZphAng .mbr-section-title {
  color: #ffffff;
}
.cid-tEcrZphAng .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tEcrZpT2bA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcrZpT2bA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcrZpT2bA .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tEcrZpT2bA .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcrZpT2bA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcrZpT2bA .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcrZpT2bA .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcrZpT2bA .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcrZpT2bA .card {
    margin-bottom: 2rem;
  }
  .cid-tEcrZpT2bA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcrZpT2bA .mbr-text,
.cid-tEcrZpT2bA .mbr-section-btn {
  text-align: center;
}
.cid-tEcrZpT2bA .card-title,
.cid-tEcrZpT2bA .card-box {
  text-align: center;
}
.cid-tEcrZqwfx8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcrZqwfx8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcrZqwfx8 .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcrZqwfx8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcrZqwfx8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcrZqwfx8 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcrZqwfx8 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcrZqwfx8 .card {
    margin-bottom: 2rem;
  }
  .cid-tEcrZqwfx8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcrZr9uMS {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEcrZr9uMS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcrZr9uMS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcrZr9uMS .video-wrapper iframe {
  width: 100%;
}
.cid-tEcrZr9uMS .mbr-section-title,
.cid-tEcrZr9uMS .mbr-section-subtitle,
.cid-tEcrZr9uMS .mbr-text {
  text-align: center;
}
.cid-tEcrZr9uMS .mbr-section-title {
  color: #ff8901;
}
.cid-tEcrZrQuOB {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tEcrZrQuOB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEcrZrQuOB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEcrZrQuOB .borde-bloque {
  border: 1px solid black;
}
.cid-tEcrZrQuOB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEcrZrQuOB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEcrZrQuOB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcrZrQuOB .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tEcrZrQuOB .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tEcrZrQuOB .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tEcrZrQuOB .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcrZsxu5k {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-levante-titulo-1920x704.webp");
}
.cid-tEcrZsxu5k .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcrZsxu5k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcrZsxu5k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcrZsxu5k .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcrZsxu5k .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcrZsxu5k .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcrZsxu5k .mbr-section-title {
  color: #ffffff;
}
.cid-tEcrZtcrmB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tEcrZtcrmB [class^="socicon-"]:before,
.cid-tEcrZtcrmB [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tEcrZtcrmB img {
  width: 85px;
  height: 85px;
}
.cid-tEcrZtcrmB .social-list {
  display: flex;
  justify-content: center;
}
.cid-tEcrZtcrmB .btn-social,
.cid-tEcrZtcrmB .mbr-section-title {
  color: #57468b;
}
.cid-tEcrZtcrmB .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tEcrZtcrmB .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tEcrZtcrmB .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tEcvOycyUU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tEcvOycyUU nav.navbar {
  position: fixed;
}
.cid-tEcvOycyUU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcvOycyUU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tEcvOycyUU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tEcvOycyUU .dropdown-item:hover,
.cid-tEcvOycyUU .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tEcvOycyUU .dropdown-item:hover span {
  color: white;
}
.cid-tEcvOycyUU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tEcvOycyUU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tEcvOycyUU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tEcvOycyUU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tEcvOycyUU .nav-link {
  position: relative;
}
.cid-tEcvOycyUU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcvOycyUU .container {
    flex-wrap: wrap;
  }
}
.cid-tEcvOycyUU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tEcvOycyUU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tEcvOycyUU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tEcvOycyUU .dropdown-menu,
.cid-tEcvOycyUU .navbar.opened {
  background: #000000 !important;
}
.cid-tEcvOycyUU .nav-item:focus,
.cid-tEcvOycyUU .nav-link:focus {
  outline: none;
}
.cid-tEcvOycyUU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tEcvOycyUU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tEcvOycyUU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tEcvOycyUU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tEcvOycyUU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tEcvOycyUU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tEcvOycyUU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tEcvOycyUU .navbar.opened {
  transition: all 0.3s;
}
.cid-tEcvOycyUU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tEcvOycyUU .navbar .navbar-logo img {
  width: auto;
}
.cid-tEcvOycyUU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tEcvOycyUU .navbar.collapsed {
  justify-content: center;
}
.cid-tEcvOycyUU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tEcvOycyUU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tEcvOycyUU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tEcvOycyUU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tEcvOycyUU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tEcvOycyUU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tEcvOycyUU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tEcvOycyUU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tEcvOycyUU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tEcvOycyUU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tEcvOycyUU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tEcvOycyUU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tEcvOycyUU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tEcvOycyUU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tEcvOycyUU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tEcvOycyUU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tEcvOycyUU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tEcvOycyUU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tEcvOycyUU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tEcvOycyUU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tEcvOycyUU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tEcvOycyUU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tEcvOycyUU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tEcvOycyUU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tEcvOycyUU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tEcvOycyUU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tEcvOycyUU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tEcvOycyUU .dropdown-item.active,
.cid-tEcvOycyUU .dropdown-item:active {
  background-color: transparent;
}
.cid-tEcvOycyUU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tEcvOycyUU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tEcvOycyUU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tEcvOycyUU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tEcvOycyUU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tEcvOycyUU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tEcvOycyUU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tEcvOycyUU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tEcvOycyUU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tEcvOycyUU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tEcvOycyUU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tEcvOycyUU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcvOycyUU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tEcvOycyUU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tEcvOycyUU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcvOycyUU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tEcvOycyUU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tEcvOycyUU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tEcvOycyUU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tEcvOycyUU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tEcvOycyUU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tEcvOycyUU .navbar {
    height: 70px;
  }
  .cid-tEcvOycyUU .navbar.opened {
    height: auto;
  }
  .cid-tEcvOycyUU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEcvOz0pWr {
  background-image: url("../../../assets/images/aspersora-parihuela-encabezado-1920x1280.webp");
}
.cid-tEcvOz0pWr .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcvOz0pWr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcvOz0pWr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcvOz0pWr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcvOz0pWr .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcvOz0pWr .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcvOz0pWr .mbr-section-title {
  color: #ffffff;
}
.cid-tEcvOzEkfW {
  background-image: url("../../../assets/images/aspersora-parihuela-potencia-1920x1280.webp");
}
.cid-tEcvOzEkfW .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcvOzEkfW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcvOzEkfW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcvOzEkfW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcvOzEkfW .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcvOzEkfW .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcvOzEkfW .mbr-section-title {
  color: #ffffff;
}
.cid-tEcvOAmj9I {
  background-image: url("../../../assets/images/aspersora-parihuela-ideal-sin-tractor-1920x1280.webp");
}
.cid-tEcvOAmj9I .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tEcvOAmj9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcvOAmj9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcvOAmj9I .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcvOAmj9I .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcvOAmj9I .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcvOAmj9I .mbr-section-title {
  color: #ffffff;
}
.cid-tEcvOAmj9I .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tEcvOB0Snt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcvOB0Snt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcvOB0Snt .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tEcvOB0Snt .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcvOB0Snt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcvOB0Snt .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcvOB0Snt .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcvOB0Snt .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcvOB0Snt .card {
    margin-bottom: 2rem;
  }
  .cid-tEcvOB0Snt .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcvOB0Snt .mbr-text,
.cid-tEcvOB0Snt .mbr-section-btn {
  text-align: center;
}
.cid-tEcvOB0Snt .card-title,
.cid-tEcvOB0Snt .card-box {
  text-align: center;
}
.cid-tEcvOBKGn0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEcvOBKGn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcvOBKGn0 .icono {
  height: 100px;
  width: 100px;
}
.cid-tEcvOBKGn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcvOBKGn0 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tEcvOBKGn0 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tEcvOBKGn0 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEcvOBKGn0 .card {
    margin-bottom: 2rem;
  }
  .cid-tEcvOBKGn0 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEcvOCoDaz {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEcvOCoDaz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcvOCoDaz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcvOCoDaz .video-wrapper iframe {
  width: 100%;
}
.cid-tEcvOCoDaz .mbr-section-title,
.cid-tEcvOCoDaz .mbr-section-subtitle,
.cid-tEcvOCoDaz .mbr-text {
  text-align: center;
}
.cid-tEcvOCoDaz .mbr-section-title {
  color: #ff8901;
}
.cid-tEcvOD5NfL {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tEcvOD5NfL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tEcvOD5NfL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEcvOD5NfL .borde-bloque {
  border: 1px solid black;
}
.cid-tEcvOD5NfL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEcvOD5NfL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tEcvOD5NfL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcvOD5NfL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tEcvOD5NfL .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tEcvOD5NfL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tEcvOD5NfL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tEcvODV88A {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-parihuela-titulo-1920x704.webp");
}
.cid-tEcvODV88A .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tEcvODV88A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEcvODV88A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEcvODV88A .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tEcvODV88A .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tEcvODV88A .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tEcvODV88A .mbr-section-title {
  color: #ffffff;
}
.cid-tEcvOEIF4g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tEcvOEIF4g [class^="socicon-"]:before,
.cid-tEcvOEIF4g [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tEcvOEIF4g img {
  width: 85px;
  height: 85px;
}
.cid-tEcvOEIF4g .social-list {
  display: flex;
  justify-content: center;
}
.cid-tEcvOEIF4g .btn-social,
.cid-tEcvOEIF4g .mbr-section-title {
  color: #57468b;
}
.cid-tEcvOEIF4g .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tEcvOEIF4g .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tEcvOEIF4g .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tFc75Ie3Fv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFc75Ie3Fv nav.navbar {
  position: fixed;
}
.cid-tFc75Ie3Fv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFc75Ie3Fv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFc75Ie3Fv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFc75Ie3Fv .dropdown-item:hover,
.cid-tFc75Ie3Fv .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tFc75Ie3Fv .dropdown-item:hover span {
  color: white;
}
.cid-tFc75Ie3Fv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFc75Ie3Fv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFc75Ie3Fv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFc75Ie3Fv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFc75Ie3Fv .nav-link {
  position: relative;
}
.cid-tFc75Ie3Fv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tFc75Ie3Fv .container {
    flex-wrap: wrap;
  }
}
.cid-tFc75Ie3Fv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tFc75Ie3Fv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tFc75Ie3Fv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFc75Ie3Fv .dropdown-menu,
.cid-tFc75Ie3Fv .navbar.opened {
  background: #000000 !important;
}
.cid-tFc75Ie3Fv .nav-item:focus,
.cid-tFc75Ie3Fv .nav-link:focus {
  outline: none;
}
.cid-tFc75Ie3Fv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFc75Ie3Fv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFc75Ie3Fv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFc75Ie3Fv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFc75Ie3Fv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFc75Ie3Fv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFc75Ie3Fv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tFc75Ie3Fv .navbar.opened {
  transition: all 0.3s;
}
.cid-tFc75Ie3Fv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFc75Ie3Fv .navbar .navbar-logo img {
  width: auto;
}
.cid-tFc75Ie3Fv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFc75Ie3Fv .navbar.collapsed {
  justify-content: center;
}
.cid-tFc75Ie3Fv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFc75Ie3Fv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFc75Ie3Fv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tFc75Ie3Fv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFc75Ie3Fv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFc75Ie3Fv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFc75Ie3Fv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFc75Ie3Fv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFc75Ie3Fv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFc75Ie3Fv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFc75Ie3Fv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFc75Ie3Fv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFc75Ie3Fv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFc75Ie3Fv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFc75Ie3Fv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFc75Ie3Fv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFc75Ie3Fv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFc75Ie3Fv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFc75Ie3Fv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFc75Ie3Fv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFc75Ie3Fv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFc75Ie3Fv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFc75Ie3Fv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFc75Ie3Fv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFc75Ie3Fv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFc75Ie3Fv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFc75Ie3Fv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFc75Ie3Fv .dropdown-item.active,
.cid-tFc75Ie3Fv .dropdown-item:active {
  background-color: transparent;
}
.cid-tFc75Ie3Fv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFc75Ie3Fv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFc75Ie3Fv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFc75Ie3Fv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFc75Ie3Fv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFc75Ie3Fv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFc75Ie3Fv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFc75Ie3Fv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFc75Ie3Fv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFc75Ie3Fv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tFc75Ie3Fv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFc75Ie3Fv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFc75Ie3Fv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFc75Ie3Fv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFc75Ie3Fv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFc75Ie3Fv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFc75Ie3Fv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFc75Ie3Fv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFc75Ie3Fv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFc75Ie3Fv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFc75Ie3Fv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFc75Ie3Fv .navbar {
    height: 70px;
  }
  .cid-tFc75Ie3Fv .navbar.opened {
    height: auto;
  }
  .cid-tFc75Ie3Fv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFc75IVNv5 {
  background-image: url("../../../assets/images/aspersora-electrostatica-1000-encabezado-1920x1280.webp");
}
.cid-tFc75IVNv5 .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFc75IVNv5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc75IVNv5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc75IVNv5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFc75IVNv5 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFc75IVNv5 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFc75IVNv5 .mbr-section-title {
  color: #ffffff;
}
.cid-tFc75JvX8U {
  background-image: url("../../../assets/images/aspersora-electrostatica-1000-italiana-1920x1280.webp");
}
.cid-tFc75JvX8U .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFc75JvX8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc75JvX8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc75JvX8U .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFc75JvX8U .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFc75JvX8U .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFc75JvX8U .mbr-section-title {
  color: #ffffff;
}
.cid-tFc7VgZkNx {
  background-image: url("../../../assets/images/aspersora-electrostatica-1000-sin-goteo-1920x1280.webp");
}
.cid-tFc7VgZkNx .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFc7VgZkNx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc7VgZkNx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc7VgZkNx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFc7VgZkNx .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFc7VgZkNx .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFc7VgZkNx .mbr-section-title {
  color: #ffffff;
}
.cid-tFc75K7dgd {
  background-image: url("../../../assets/images/aspersora-electrostatica-1000-ahorro-1920x1280.webp");
}
.cid-tFc75K7dgd .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tFc75K7dgd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc75K7dgd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc75K7dgd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFc75K7dgd .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFc75K7dgd .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFc75K7dgd .mbr-section-title {
  color: #ffffff;
}
.cid-tFc75K7dgd .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tFc75LnULT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFc75LnULT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc75LnULT .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tFc75LnULT .icono {
  height: 100px;
  width: 100px;
}
.cid-tFc75LnULT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc75LnULT .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFc75LnULT .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFc75LnULT .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFc75LnULT .card {
    margin-bottom: 2rem;
  }
  .cid-tFc75LnULT .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFc75LnULT .mbr-text,
.cid-tFc75LnULT .mbr-section-btn {
  text-align: center;
}
.cid-tFc75LnULT .card-title,
.cid-tFc75LnULT .card-box {
  text-align: center;
}
.cid-tFc75M7SDp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFc75M7SDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc75M7SDp .icono {
  height: 100px;
  width: 100px;
}
.cid-tFc75M7SDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc75M7SDp .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFc75M7SDp .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFc75M7SDp .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFc75M7SDp .card {
    margin-bottom: 2rem;
  }
  .cid-tFc75M7SDp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFcb93NnyT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFcb93NnyT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFcb93NnyT .icono {
  height: 100px;
  width: 100px;
}
.cid-tFcb93NnyT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFcb93NnyT .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFcb93NnyT .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFcb93NnyT .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFcb93NnyT .card {
    margin-bottom: 2rem;
  }
  .cid-tFcb93NnyT .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFc75NqVlP {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFc75NqVlP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc75NqVlP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc75NqVlP .video-wrapper iframe {
  width: 100%;
}
.cid-tFc75NqVlP .mbr-section-title,
.cid-tFc75NqVlP .mbr-section-subtitle,
.cid-tFc75NqVlP .mbr-text {
  text-align: center;
}
.cid-tFc75NqVlP .mbr-section-title {
  color: #bbbbbb;
}
.cid-tFc75O21Eh {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tFc75O21Eh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tFc75O21Eh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFc75O21Eh .borde-bloque {
  border: 1px solid black;
}
.cid-tFc75O21Eh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFc75O21Eh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tFc75O21Eh .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tFc75O21Eh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tFc75O21Eh .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tFc75O21Eh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tFc75O21Eh .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tFc75OKxMR {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-electrostatica-1000-pie-pagina-1920x704.webp");
}
.cid-tFc75OKxMR .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFc75OKxMR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFc75OKxMR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFc75OKxMR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFc75OKxMR .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFc75OKxMR .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFc75OKxMR .mbr-section-title {
  color: #ffffff;
}
.cid-tFc75PygYL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tFc75PygYL [class^="socicon-"]:before,
.cid-tFc75PygYL [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tFc75PygYL img {
  width: 85px;
  height: 85px;
}
.cid-tFc75PygYL .social-list {
  display: flex;
  justify-content: center;
}
.cid-tFc75PygYL .btn-social,
.cid-tFc75PygYL .mbr-section-title {
  color: #57468b;
}
.cid-tFc75PygYL .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tFc75PygYL .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tFc75PygYL .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tFccxBxioh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFccxBxioh nav.navbar {
  position: fixed;
}
.cid-tFccxBxioh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFccxBxioh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFccxBxioh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFccxBxioh .dropdown-item:hover,
.cid-tFccxBxioh .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tFccxBxioh .dropdown-item:hover span {
  color: white;
}
.cid-tFccxBxioh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFccxBxioh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFccxBxioh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFccxBxioh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFccxBxioh .nav-link {
  position: relative;
}
.cid-tFccxBxioh .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tFccxBxioh .container {
    flex-wrap: wrap;
  }
}
.cid-tFccxBxioh .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tFccxBxioh .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tFccxBxioh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFccxBxioh .dropdown-menu,
.cid-tFccxBxioh .navbar.opened {
  background: #000000 !important;
}
.cid-tFccxBxioh .nav-item:focus,
.cid-tFccxBxioh .nav-link:focus {
  outline: none;
}
.cid-tFccxBxioh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFccxBxioh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFccxBxioh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFccxBxioh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFccxBxioh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFccxBxioh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFccxBxioh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tFccxBxioh .navbar.opened {
  transition: all 0.3s;
}
.cid-tFccxBxioh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFccxBxioh .navbar .navbar-logo img {
  width: auto;
}
.cid-tFccxBxioh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFccxBxioh .navbar.collapsed {
  justify-content: center;
}
.cid-tFccxBxioh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFccxBxioh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFccxBxioh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tFccxBxioh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFccxBxioh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFccxBxioh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFccxBxioh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFccxBxioh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFccxBxioh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFccxBxioh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFccxBxioh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFccxBxioh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFccxBxioh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFccxBxioh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFccxBxioh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFccxBxioh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFccxBxioh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFccxBxioh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFccxBxioh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFccxBxioh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFccxBxioh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFccxBxioh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFccxBxioh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFccxBxioh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFccxBxioh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFccxBxioh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFccxBxioh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFccxBxioh .dropdown-item.active,
.cid-tFccxBxioh .dropdown-item:active {
  background-color: transparent;
}
.cid-tFccxBxioh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFccxBxioh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFccxBxioh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFccxBxioh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFccxBxioh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFccxBxioh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFccxBxioh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFccxBxioh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFccxBxioh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFccxBxioh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tFccxBxioh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFccxBxioh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFccxBxioh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFccxBxioh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFccxBxioh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFccxBxioh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFccxBxioh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFccxBxioh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFccxBxioh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFccxBxioh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFccxBxioh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFccxBxioh .navbar {
    height: 70px;
  }
  .cid-tFccxBxioh .navbar.opened {
    height: auto;
  }
  .cid-tFccxBxioh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFccxCjiDs {
  background-image: url("../../../assets/images/aspersora-electrostatica-avocado-encabezado-1920x1280.webp");
}
.cid-tFccxCjiDs .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFccxCjiDs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxCjiDs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxCjiDs .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFccxCjiDs .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFccxCjiDs .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFccxCjiDs .mbr-section-title {
  color: #ffffff;
}
.cid-tFccxD5eCJ {
  background-image: url("../../../assets/images/aspersora-electrostatica-avocado-micro-1920x1280.webp");
}
.cid-tFccxD5eCJ .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFccxD5eCJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxD5eCJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxD5eCJ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFccxD5eCJ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFccxD5eCJ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFccxD5eCJ .mbr-section-title {
  color: #ffffff;
}
.cid-tFccxDIJmW {
  background-image: url("../../../assets/images/aspersora-electrostatica-avocado-cobertura-1920x1280.webp");
}
.cid-tFccxDIJmW .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFccxDIJmW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxDIJmW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxDIJmW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFccxDIJmW .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFccxDIJmW .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFccxDIJmW .mbr-section-title {
  color: #ffffff;
}
.cid-tFccxEozZQ {
  background-image: url("../../../assets/images/aspersora-electrostatica-1000-ahorro-1920x1280.webp");
}
.cid-tFccxEozZQ .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tFccxEozZQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxEozZQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxEozZQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFccxEozZQ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFccxEozZQ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFccxEozZQ .mbr-section-title {
  color: #ffffff;
}
.cid-tFccxEozZQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tFccxF7PG8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFccxF7PG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxF7PG8 .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tFccxF7PG8 .icono {
  height: 100px;
  width: 100px;
}
.cid-tFccxF7PG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxF7PG8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFccxF7PG8 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFccxF7PG8 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFccxF7PG8 .card {
    margin-bottom: 2rem;
  }
  .cid-tFccxF7PG8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFccxF7PG8 .mbr-text,
.cid-tFccxF7PG8 .mbr-section-btn {
  text-align: center;
}
.cid-tFccxF7PG8 .card-title,
.cid-tFccxF7PG8 .card-box {
  text-align: center;
}
.cid-tFccxFTaJc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFccxFTaJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxFTaJc .icono {
  height: 100px;
  width: 100px;
}
.cid-tFccxFTaJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxFTaJc .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFccxFTaJc .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFccxFTaJc .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFccxFTaJc .card {
    margin-bottom: 2rem;
  }
  .cid-tFccxFTaJc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFccxGBoLo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFccxGBoLo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxGBoLo .icono {
  height: 100px;
  width: 100px;
}
.cid-tFccxGBoLo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxGBoLo .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFccxGBoLo .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFccxGBoLo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFccxGBoLo .card {
    margin-bottom: 2rem;
  }
  .cid-tFccxGBoLo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFccxHoyat {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFccxHoyat .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxHoyat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxHoyat .video-wrapper iframe {
  width: 100%;
}
.cid-tFccxHoyat .mbr-section-title,
.cid-tFccxHoyat .mbr-section-subtitle,
.cid-tFccxHoyat .mbr-text {
  text-align: center;
}
.cid-tFccxHoyat .mbr-section-title {
  color: #bbbbbb;
}
.cid-tFccxI5jcS {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tFccxI5jcS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tFccxI5jcS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFccxI5jcS .borde-bloque {
  border: 1px solid black;
}
.cid-tFccxI5jcS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFccxI5jcS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tFccxI5jcS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tFccxI5jcS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tFccxI5jcS .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tFccxI5jcS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tFccxI5jcS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tFccxIXPIl {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-electrostatica-avocado-pie-1920x704.webp");
}
.cid-tFccxIXPIl .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFccxIXPIl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFccxIXPIl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFccxIXPIl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFccxIXPIl .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFccxIXPIl .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFccxIXPIl .mbr-section-title {
  color: #ffffff;
}
.cid-tFccxJCDQ0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tFccxJCDQ0 [class^="socicon-"]:before,
.cid-tFccxJCDQ0 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tFccxJCDQ0 img {
  width: 85px;
  height: 85px;
}
.cid-tFccxJCDQ0 .social-list {
  display: flex;
  justify-content: center;
}
.cid-tFccxJCDQ0 .btn-social,
.cid-tFccxJCDQ0 .mbr-section-title {
  color: #57468b;
}
.cid-tFccxJCDQ0 .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tFccxJCDQ0 .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tFccxJCDQ0 .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tJ9ljw1e61 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJ9ljw1e61 nav.navbar {
  position: fixed;
}
.cid-tJ9ljw1e61 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ9ljw1e61 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJ9ljw1e61 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ9ljw1e61 .dropdown-item:hover,
.cid-tJ9ljw1e61 .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tJ9ljw1e61 .dropdown-item:hover span {
  color: white;
}
.cid-tJ9ljw1e61 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJ9ljw1e61 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJ9ljw1e61 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJ9ljw1e61 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJ9ljw1e61 .nav-link {
  position: relative;
}
.cid-tJ9ljw1e61 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJ9ljw1e61 .container {
    flex-wrap: wrap;
  }
}
.cid-tJ9ljw1e61 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJ9ljw1e61 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tJ9ljw1e61 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJ9ljw1e61 .dropdown-menu,
.cid-tJ9ljw1e61 .navbar.opened {
  background: #000000 !important;
}
.cid-tJ9ljw1e61 .nav-item:focus,
.cid-tJ9ljw1e61 .nav-link:focus {
  outline: none;
}
.cid-tJ9ljw1e61 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJ9ljw1e61 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJ9ljw1e61 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJ9ljw1e61 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ9ljw1e61 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJ9ljw1e61 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJ9ljw1e61 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tJ9ljw1e61 .navbar.opened {
  transition: all 0.3s;
}
.cid-tJ9ljw1e61 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJ9ljw1e61 .navbar .navbar-logo img {
  width: auto;
}
.cid-tJ9ljw1e61 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJ9ljw1e61 .navbar.collapsed {
  justify-content: center;
}
.cid-tJ9ljw1e61 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJ9ljw1e61 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJ9ljw1e61 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tJ9ljw1e61 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJ9ljw1e61 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJ9ljw1e61 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tJ9ljw1e61 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJ9ljw1e61 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJ9ljw1e61 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJ9ljw1e61 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJ9ljw1e61 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJ9ljw1e61 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJ9ljw1e61 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJ9ljw1e61 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tJ9ljw1e61 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJ9ljw1e61 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJ9ljw1e61 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJ9ljw1e61 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJ9ljw1e61 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJ9ljw1e61 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJ9ljw1e61 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJ9ljw1e61 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJ9ljw1e61 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJ9ljw1e61 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJ9ljw1e61 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJ9ljw1e61 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJ9ljw1e61 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJ9ljw1e61 .dropdown-item.active,
.cid-tJ9ljw1e61 .dropdown-item:active {
  background-color: transparent;
}
.cid-tJ9ljw1e61 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJ9ljw1e61 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJ9ljw1e61 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJ9ljw1e61 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tJ9ljw1e61 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJ9ljw1e61 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJ9ljw1e61 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJ9ljw1e61 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJ9ljw1e61 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJ9ljw1e61 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tJ9ljw1e61 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJ9ljw1e61 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJ9ljw1e61 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJ9ljw1e61 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJ9ljw1e61 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJ9ljw1e61 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJ9ljw1e61 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJ9ljw1e61 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJ9ljw1e61 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJ9ljw1e61 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJ9ljw1e61 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJ9ljw1e61 .navbar {
    height: 70px;
  }
  .cid-tJ9ljw1e61 .navbar.opened {
    height: auto;
  }
  .cid-tJ9ljw1e61 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJ9ljwZlhU {
  background-image: url("../../../assets/images/tecnologia-electrostatica-01-portada-1920x1280.webp");
}
.cid-tJ9ljwZlhU .texto-sombra {
  text-shadow: -3px -3px 5px white;
}
.cid-tJ9ljwZlhU .texto-ubicacion {
  position: relative;
  top: 250px;
}
.cid-tJ9ljwZlhU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9ljwZlhU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9ljwZlhU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9ljwZlhU .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9ljwZlhU .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9ljwZlhU .mbr-section-title {
  color: #353535;
}
.cid-tJ9ljxLxAW {
  background-image: url("../../../assets/images/tecnologia-electrostatica-2-1920x1280.webp");
}
.cid-tJ9ljxLxAW .texto-sombra {
  text-shadow: -3px -3px 5px white;
}
.cid-tJ9ljxLxAW .ubicacion-texto {
  position: relative;
  top: -300px;
}
.cid-tJ9ljxLxAW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9ljxLxAW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9ljxLxAW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9ljxLxAW .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9ljxLxAW .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9ljxLxAW .mbr-section-title {
  color: #353535;
}
.cid-tJ9ljywB6B {
  background-image: url("../../../assets/images/tecnologia-electrostatica-7-1920x1280.webp");
}
.cid-tJ9ljywB6B .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tJ9ljywB6B .ubicacion-texto {
  postion: absolute;
  top: 50px;
  right: 500px;
}
.cid-tJ9ljywB6B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9ljywB6B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9ljywB6B .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9ljywB6B .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9ljywB6B .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9ljywB6B .mbr-section-title {
  color: #ffffff;
}
.cid-tJ9ljz8h2c {
  background-image: url("../../../assets/images/tecnologia-electrostatica-4-1920x1280.webp");
}
.cid-tJ9ljz8h2c .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tJ9ljz8h2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJ9ljz8h2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJ9ljz8h2c .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tJ9ljz8h2c .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tJ9ljz8h2c .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tJ9ljz8h2c .mbr-section-title {
  color: #ffffff;
}
.cid-tLs4fmkPJ1 {
  background-image: url("../../../assets/images/tecnologia-electrostatica-5-1920x1280.webp");
}
.cid-tLs4fmkPJ1 .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tLs4fmkPJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLs4fmkPJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLs4fmkPJ1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tLs4fmkPJ1 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tLs4fmkPJ1 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tLs4fmkPJ1 .mbr-section-title {
  color: #ffffff;
}
.cid-tLs4ggaJ7K {
  background-image: url("../../../assets/images/tecnologia-electrostatica-6-1920x1280.webp");
}
.cid-tLs4ggaJ7K .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tLs4ggaJ7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLs4ggaJ7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLs4ggaJ7K .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tLs4ggaJ7K .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tLs4ggaJ7K .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tLs4ggaJ7K .mbr-section-title {
  color: #ffffff;
}
.cid-tJ9ljBiFDZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tJ9ljBiFDZ [class^="socicon-"]:before,
.cid-tJ9ljBiFDZ [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tJ9ljBiFDZ img {
  width: 85px;
  height: 85px;
}
.cid-tJ9ljBiFDZ .social-list {
  display: flex;
  justify-content: center;
}
.cid-tJ9ljBiFDZ .btn-social,
.cid-tJ9ljBiFDZ .mbr-section-title {
  color: #57468b;
}
.cid-tJ9ljBiFDZ .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tJ9ljBiFDZ .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tJ9ljBiFDZ .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tFk6LImd9W {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFk6LImd9W nav.navbar {
  position: fixed;
}
.cid-tFk6LImd9W .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFk6LImd9W .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFk6LImd9W .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFk6LImd9W .dropdown-item:hover,
.cid-tFk6LImd9W .dropdown-item:focus {
  background: #c8f300 !important;
  color: white !important;
}
.cid-tFk6LImd9W .dropdown-item:hover span {
  color: white;
}
.cid-tFk6LImd9W .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFk6LImd9W .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFk6LImd9W .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFk6LImd9W .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFk6LImd9W .nav-link {
  position: relative;
}
.cid-tFk6LImd9W .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tFk6LImd9W .container {
    flex-wrap: wrap;
  }
}
.cid-tFk6LImd9W .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tFk6LImd9W .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tFk6LImd9W .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFk6LImd9W .dropdown-menu,
.cid-tFk6LImd9W .navbar.opened {
  background: #000000 !important;
}
.cid-tFk6LImd9W .nav-item:focus,
.cid-tFk6LImd9W .nav-link:focus {
  outline: none;
}
.cid-tFk6LImd9W .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFk6LImd9W .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFk6LImd9W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFk6LImd9W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFk6LImd9W .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFk6LImd9W .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFk6LImd9W .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tFk6LImd9W .navbar.opened {
  transition: all 0.3s;
}
.cid-tFk6LImd9W .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFk6LImd9W .navbar .navbar-logo img {
  width: auto;
}
.cid-tFk6LImd9W .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFk6LImd9W .navbar.collapsed {
  justify-content: center;
}
.cid-tFk6LImd9W .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFk6LImd9W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFk6LImd9W .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tFk6LImd9W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFk6LImd9W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFk6LImd9W .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFk6LImd9W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFk6LImd9W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFk6LImd9W .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFk6LImd9W .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFk6LImd9W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFk6LImd9W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFk6LImd9W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFk6LImd9W .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFk6LImd9W .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFk6LImd9W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFk6LImd9W .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFk6LImd9W .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFk6LImd9W .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFk6LImd9W .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFk6LImd9W .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFk6LImd9W .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFk6LImd9W .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFk6LImd9W .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFk6LImd9W .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFk6LImd9W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFk6LImd9W .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFk6LImd9W .dropdown-item.active,
.cid-tFk6LImd9W .dropdown-item:active {
  background-color: transparent;
}
.cid-tFk6LImd9W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFk6LImd9W .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFk6LImd9W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFk6LImd9W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFk6LImd9W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFk6LImd9W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFk6LImd9W ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFk6LImd9W .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFk6LImd9W button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFk6LImd9W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c8f300;
}
.cid-tFk6LImd9W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFk6LImd9W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFk6LImd9W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFk6LImd9W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFk6LImd9W nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFk6LImd9W nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFk6LImd9W nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFk6LImd9W nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFk6LImd9W .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tFk6LImd9W a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFk6LImd9W .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFk6LImd9W .navbar {
    height: 70px;
  }
  .cid-tFk6LImd9W .navbar.opened {
    height: auto;
  }
  .cid-tFk6LImd9W .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFk6LIYjiI {
  background-image: url("../../../assets/images/aspersora-electrostatica-electro-torre-encabezado-1920x1280.webp");
}
.cid-tFk6LIYjiI .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFk6LIYjiI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LIYjiI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LIYjiI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFk6LIYjiI .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFk6LIYjiI .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFk6LIYjiI .mbr-section-title {
  color: #ffffff;
}
.cid-tFk6LJJrol {
  background-image: url("../../../assets/images/aspersora-electrostatica-electro-torre-poder-1920x1280.webp");
}
.cid-tFk6LJJrol .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFk6LJJrol .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LJJrol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LJJrol .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFk6LJJrol .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFk6LJJrol .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFk6LJJrol .mbr-section-title {
  color: #ffffff;
}
.cid-tFk6LKv4wb {
  background-image: url("../../../assets/images/aspersora-electrostatica-electro-torre-micro-aspersion-1920x1280.webp");
}
.cid-tFk6LKv4wb .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFk6LKv4wb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LKv4wb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LKv4wb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFk6LKv4wb .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFk6LKv4wb .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFk6LKv4wb .mbr-section-title {
  color: #ffffff;
}
.cid-tFk6LLbeR3 {
  background-image: url("../../../assets/images/aspersora-electrostatica-electro-torre-ahorra-1920x1280.webp");
}
.cid-tFk6LLbeR3 .texto-sombra {
  text-shadow: -3px -3px 5px black;
  text-align: right;
  top: 5rem;
  color: white;
}
.cid-tFk6LLbeR3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LLbeR3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LLbeR3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFk6LLbeR3 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFk6LLbeR3 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFk6LLbeR3 .mbr-section-title {
  color: #ffffff;
}
.cid-tFk6LLbeR3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tFk6LLXNSg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFk6LLXNSg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LLXNSg .animacion-rotar {
  position: relative;
  animation-name: rotar;
  animation-duration: 5s;
  animation-delay: 3s;
  animation-iteration-count: 2;
}
@keyframes rotar {
  0% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(170deg);
  }
}
.cid-tFk6LLXNSg .icono {
  height: 100px;
  width: 100px;
}
.cid-tFk6LLXNSg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LLXNSg .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFk6LLXNSg .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFk6LLXNSg .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFk6LLXNSg .card {
    margin-bottom: 2rem;
  }
  .cid-tFk6LLXNSg .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFk6LLXNSg .mbr-text,
.cid-tFk6LLXNSg .mbr-section-btn {
  text-align: center;
}
.cid-tFk6LLXNSg .card-title,
.cid-tFk6LLXNSg .card-box {
  text-align: center;
}
.cid-tFk6LMBvOo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFk6LMBvOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LMBvOo .icono {
  height: 100px;
  width: 100px;
}
.cid-tFk6LMBvOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LMBvOo .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFk6LMBvOo .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFk6LMBvOo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFk6LMBvOo .card {
    margin-bottom: 2rem;
  }
  .cid-tFk6LMBvOo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFk6LNjMyc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFk6LNjMyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LNjMyc .icono {
  height: 100px;
  width: 100px;
}
.cid-tFk6LNjMyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LNjMyc .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tFk6LNjMyc .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tFk6LNjMyc .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFk6LNjMyc .card {
    margin-bottom: 2rem;
  }
  .cid-tFk6LNjMyc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFk6LOeaKd {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFk6LOeaKd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LOeaKd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LOeaKd .video-wrapper iframe {
  width: 100%;
}
.cid-tFk6LOeaKd .mbr-section-title,
.cid-tFk6LOeaKd .mbr-section-subtitle,
.cid-tFk6LOeaKd .mbr-text {
  text-align: center;
}
.cid-tFk6LOeaKd .mbr-section-title {
  color: #bbbbbb;
}
.cid-tFk6LOZkVT {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tFk6LOZkVT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tFk6LOZkVT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFk6LOZkVT .borde-bloque {
  border: 1px solid black;
}
.cid-tFk6LOZkVT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFk6LOZkVT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tFk6LOZkVT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tFk6LOZkVT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tFk6LOZkVT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tFk6LOZkVT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tFk6LOZkVT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tFk6LPQzxX {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aspersora-electrostatica-electro-torre-pie-pagina-1920x704.webp");
}
.cid-tFk6LPQzxX .texto-sombra {
  text-shadow: -3px -3px 5px black;
}
.cid-tFk6LPQzxX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFk6LPQzxX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFk6LPQzxX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFk6LPQzxX .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFk6LPQzxX .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFk6LPQzxX .mbr-section-title {
  color: #ffffff;
}
.cid-tFk6LQB6tc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tFk6LQB6tc [class^="socicon-"]:before,
.cid-tFk6LQB6tc [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tFk6LQB6tc img {
  width: 85px;
  height: 85px;
}
.cid-tFk6LQB6tc .social-list {
  display: flex;
  justify-content: center;
}
.cid-tFk6LQB6tc .btn-social,
.cid-tFk6LQB6tc .mbr-section-title {
  color: #57468b;
}
.cid-tFk6LQB6tc .soc-item {
  width: 85px !important;
  height: 85px !important;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  box-shadow: 0 10px 10px rgba(111, 145, 218, 0.15);
  justify-content: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tFk6LQB6tc .soc-item span {
  font-size: 1.4rem;
  color: #57468b !important;
  transition: all 0.3s;
}
.cid-tFk6LQB6tc .soc-item:hover span {
  color: #c8f300 !important;
}
.cid-tLs1PwvNg6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tLs1PwvNg6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .texto-mini {
  font-size: 10px;
  opacity: .5;
}
.cid-tLs1PwvNg6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tLs1PwvNg6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tLs1PwvNg6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tLs1PwvNg6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tLs1PwvNg6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tLs1PwvNg6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLs1PwvNg6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tLs1PwvNg6 .media-container-row .mbr-text {
  color: #ffffff;
}
