body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #1f2732 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ff5100 !important;
}
.bg-danger {
  background-color: #4f5d70 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1f2732 !important;
  border-color: #1f2732 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #020203 !important;
  border-color: #020203 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #020203 !important;
  border-color: #020203 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff5100 !important;
  border-color: #ff5100 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b33900 !important;
  border-color: #b33900 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b33900 !important;
  border-color: #b33900 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #4f5d70 !important;
  border-color: #4f5d70 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #2f3843 !important;
  border-color: #2f3843 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #2f3843 !important;
  border-color: #2f3843 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #1f2732;
  border-color: #1f2732;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1f2732 !important;
  border-color: #1f2732 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #993100;
  color: #993100;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #ff5100;
  border-color: #ff5100;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5100 !important;
  border-color: #ff5100 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #252b34;
  color: #252b34;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #4f5d70;
  border-color: #4f5d70;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #4f5d70 !important;
  border-color: #4f5d70 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #1f2732 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ff5100 !important;
}
.text-danger {
  color: #4f5d70 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #993100 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #4f5d70 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ff5100;
}
.alert-danger {
  background-color: #4f5d70;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1f2732;
  border-color: #1f2732;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1f2732;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d3dae3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffdccc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #8f9db0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #1f2732;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1f2732;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1f2732;
  border-bottom-color: #1f2732;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #1f2732 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%231f2732' %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;
}
hr {
  border: none;
  background-color: #4f5d70;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #4f5d70;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #4f5d70;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #4f5d70;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #4f5d70 !important;
}
.btn-danger:hover {
  color: #4f5d70 !important;
}
.btn-warning:hover {
  color: #ff5100 !important;
}
.btn-success:hover {
  color: #f7ed4a !important;
}
.btn-info:hover {
  color: #ffffff !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #ffffff !important;
}
.btn-primary:hover {
  color: #1f2732 !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #4f5d70 !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #4f5d70;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-success-outline:hover::before {
  background-color: #f7ed4a !important;
}
.btn-info-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-primary-outline:hover::before {
  background-color: #1f2732 !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #ff5100 !important;
}
.btn-danger-outline:hover::before {
  background-color: #4f5d70 !important;
}
.cid-sdZ2Rn7J9q .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdZ2Rn7J9q .nav-item:focus,
.cid-sdZ2Rn7J9q .nav-link:focus {
  outline: none;
}
.cid-sdZ2Rn7J9q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdZ2Rn7J9q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sdZ2Rn7J9q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sdZ2Rn7J9q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sdZ2Rn7J9q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sdZ2Rn7J9q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sdZ2Rn7J9q .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sdZ2Rn7J9q .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sdZ2Rn7J9q .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sdZ2Rn7J9q .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sdZ2Rn7J9q .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sdZ2Rn7J9q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sdZ2Rn7J9q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sdZ2Rn7J9q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sdZ2Rn7J9q .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sdZ2Rn7J9q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sdZ2Rn7J9q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sdZ2Rn7J9q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sdZ2Rn7J9q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sdZ2Rn7J9q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sdZ2Rn7J9q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sdZ2Rn7J9q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sdZ2Rn7J9q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sdZ2Rn7J9q .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sdZ2Rn7J9q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sdZ2Rn7J9q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sdZ2Rn7J9q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sdZ2Rn7J9q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sdZ2Rn7J9q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sdZ2Rn7J9q .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sdZ2Rn7J9q .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sdZ2Rn7J9q .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sdZ2Rn7J9q .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sdZ2Rn7J9q .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sdZ2Rn7J9q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sdZ2Rn7J9q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sdZ2Rn7J9q .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sdZ2Rn7J9q .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sdZ2Rn7J9q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sdZ2Rn7J9q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sdZ2Rn7J9q .dropdown-item.active,
.cid-sdZ2Rn7J9q .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sdZ2Rn7J9q .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sdZ2Rn7J9q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sdZ2Rn7J9q .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sdZ2Rn7J9q .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sdZ2Rn7J9q .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sdZ2Rn7J9q .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sdZ2Rn7J9q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sdZ2Rn7J9q .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sdZ2Rn7J9q .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sdZ2Rn7J9q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sdZ2Rn7J9q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sdZ2Rn7J9q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sdZ2Rn7J9q ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sdZ2Rn7J9q .navbar-buttons {
  text-align: center;
}
.cid-sdZ2Rn7J9q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdZ2Rn7J9q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sdZ2Rn7J9q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sdZ2Rn7J9q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZ2Rn7J9q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sdZ2Rn7J9q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sdZ2Rn7J9q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZ2Rn7J9q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sdZ2Rn7J9q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sdZ2Rn7J9q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sdZ2Rn7J9q .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sdZ2Rn7J9q a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sdZ2Rn7J9q .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sdZ2Rn7J9q .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sdZ2Rn7J9q .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sdZ2Rn7J9q .navbar {
    height: 77px;
  }
  .cid-sdZ2Rn7J9q .navbar.opened {
    height: auto;
  }
  .cid-sdZ2Rn7J9q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sdZ2Rn7J9q a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sdZ2Rn7J9q a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sdZ2Rn7J9q .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sdZ2Rn7J9q .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-rRBKNNng2r {
  padding-top: 240px;
  padding-bottom: 0px;
}
.cid-rRBKNNng2r .mbr-iconfont {
  color: #ff5100;
  font-size: 3rem;
  transition: 0.7s;
}
.cid-rRBKNNng2r .card-inner {
  background-color: #1f2732;
  transition: 0.7s;
  z-index: 10;
}
.cid-rRBKNNng2r .btn {
  margin-left: 0rem;
}
.cid-rRBKNNng2r .row {
  padding-bottom: 8rem;
}
.cid-rRBKNNng2r .link {
  margin: 0;
}
.cid-rRBKNNng2r .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-rRBKNNng2r .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #4f5d70;
  transition: 0.7s;
}
.cid-rRBKNNng2r .card-img {
  margin-bottom: 3.2rem;
}
.cid-rRBKNNng2r .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-rRBKNNng2r .card:hover .card-inner {
  background-color: #4f5d70;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-rRBKNNng2r .card:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-rRBKNNng2r .card:hover .card-title:after {
  background: #fff;
}
.cid-rRBKNNng2r .media-container-row {
  align-items: flex-end;
}
.cid-rRBKNNng2r .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-rRBKNNng2r .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-rRBKNNng2r .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBKNNng2r .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-rRBKNNng2r .card {
    margin-bottom: 2rem;
  }
  .cid-rRBKNNng2r .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-rRBKNNng2r .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-rRBKNNng2r .card {
  position: relative;
}
.cid-rRBKNNng2r .card-3::after {
  content: "";
  background-color: #4f5d70;
  height: 70px;
  width: 97%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
}
.cid-rRBKNNng2r .card:first-child .card-inner {
  background-color: #4f5d70;
}
.cid-rRBKNNng2r .card:first-child .card-inner .mbr-iconfont {
  color: #fff;
}
.cid-rRBKNNng2r .card:first-child .card-inner .card-title:after {
  background: #fff;
}
.cid-rRBL3bEAXX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1f2732;
}
@media (max-width: 767px) {
  .cid-rRBL3bEAXX h2 {
    margin-bottom: 1rem;
  }
  .cid-rRBL3bEAXX .wrapper {
    display: flex;
    flex-direction: column;
  }
  .cid-rRBL3bEAXX .mbr-section-btn {
    margin-left: 1px;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) and (min-width: 992px) {
  .cid-rRBL3bEAXX .container-column {
    text-align: center;
  }
}
@media (min-width: 767px) {
  .cid-rRBL3bEAXX .wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .cid-rRBL3bEAXX .container {
    position: relative;
  }
  .cid-rRBL3bEAXX h2 {
    margin: 0;
  }
}
.cid-rRBL3bEAXX .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
  color: #101010 !important;
}
.cid-rRBL3bEAXX hr {
  width: 40px;
  height: 2px;
  top: -2.6rem;
}
.cid-rRBL3bEAXX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRBL3bEAXX .btn:hover {
  color: #ffffff !important;
}
.cid-rRBL3bEAXX .container-column,
.cid-rRBL3bEAXX h2 {
  color: #ffffff;
  text-align: left;
}
.cid-sm1x35cTUC {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #1f2732, #1f2732);
}
.cid-sm1x35cTUC a {
  text-align: center;
}
.cid-sm1x35cTUC p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sm1x35cTUC span {
  font-size: 2rem;
}
.cid-sm1x35cTUC .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sm1x35cTUC .socicon-twitter {
  color: #4da7de;
}
.cid-sm1x35cTUC .socicon-facebook {
  color: #3e5b98;
}
.cid-sm1x35cTUC .socicon-googleplus {
  color: #dd4b39;
}
.cid-sm1x35cTUC .socicon-instagram {
  color: #3f729b;
}
.cid-sm1x35cTUC .social-list a:focus {
  text-decoration: none;
}
.cid-sm1x35cTUC .text-copyright {
  width: 100%;
}
.cid-sm1x35cTUC .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sm1x35cTUC .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sm1x35cTUC .logo-footer {
  line-height: normal;
}
.cid-sm1x35cTUC .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm1x35cTUC .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sm1x35cTUC .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm1x35cTUC .media-container-row a {
  margin: 0 1rem;
}
.cid-sm1x35cTUC P {
  color: #ffffff;
  text-align: right;
}
.cid-sebFPpyWE7 {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-sebFPpyWE7 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sebFPpyWE7 .container {
    position: relative;
  }
  .cid-sebFPpyWE7 .row {
    margin: 0;
  }
  .cid-sebFPpyWE7 h2 {
    margin: 0;
  }
}
.cid-sebFPpyWE7 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sebFPpyWE7 .mbr-text {
  margin-top: 1.4rem;
  text-align: center;
}
.cid-sebFPpyWE7 h2 {
  text-align: center;
}
.cid-sdY77hRBDB {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f3f3f3;
}
.cid-sdY77hRBDB .mbr-text {
  color: #767676;
}
.cid-sdY77hRBDB .mbr-title {
  color: #1f2732;
}
@media (max-width: 767px) {
  .cid-sdY77hRBDB .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-sdY77hRBDB h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-sdY77hRBDB .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sdY77hRBDB .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sdY77hRBDB .row {
    margin: 0;
  }
}
.cid-sfS0EXSbal {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #1f2732;
}
.cid-sfS0EXSbal .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sfS0EXSbal .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-rRBL43d8gF {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rRBL43d8gF h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBL43d8gF .container {
    position: relative;
  }
  .cid-rRBL43d8gF .row {
    margin: 0;
  }
  .cid-rRBL43d8gF h2 {
    margin: 0;
  }
}
.cid-rRBL43d8gF .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-rRBL43d8gF .mbr-section-subtitle {
  color: #ff5100;
  text-align: left;
}
.cid-rRBL43d8gF .container-column,
.cid-rRBL43d8gF h2 {
  text-align: left;
}
.cid-rRBLcBRw6R {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 75px;
}
.cid-rRBLcBRw6R h3 {
  margin-bottom: 0 !important;
}
.cid-rRBLcBRw6R figcaption {
  position: relative;
}
.cid-rRBLcBRw6R figcaption .wrap {
  position: absolute;
  bottom: 0rem;
  width: 100%;
  padding: 1rem 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-rRBLcBRw6R img {
  width: 100%;
  transition: all 3s;
  opacity: 0.5;
}
@media (min-width: 767px) {
  .cid-rRBLcBRw6R .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-rRBLcBRw6R .image-block-1 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-rRBLcBRw6R .img-big {
    height: 100%;
  }
  .cid-rRBLcBRw6R .image-block-1 {
    height: 100%;
  }
}
.cid-rRBLcBRw6R .image-block-2 {
  margin-bottom: 2rem;
}
.cid-rRBLcBRw6R .image-block {
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  position: relative;
  background-color: #000;
}
.cid-rRBLcBRw6R .image-block:hover {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}
.cid-rRBLASuUGF {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-rRBLASuUGF h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rRBLASuUGF .container {
    position: relative;
  }
  .cid-rRBLASuUGF .row {
    margin: 0;
  }
  .cid-rRBLASuUGF h2 {
    margin: 0;
  }
}
.cid-rRBLASuUGF .mbr-section-subtitle {
  color: #e9204f;
}
.cid-rRBLASuUGF .mbr-text {
  margin-top: 1.4rem;
  text-align: center;
}
.cid-rRBLASuUGF h2 {
  text-align: center;
}
.cid-rRBLBfWvXW {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #f3f3f3;
}
.cid-rRBLBfWvXW .mbr-iconfont-1 {
  color: #ff5100;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBLBfWvXW .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-rRBLBfWvXW .link {
  margin: 0;
}
.cid-rRBLBfWvXW .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBLBfWvXW .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-rRBLBfWvXW .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-rRBLBfWvXW .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-rRBLBfWvXW .card:hover .card-title {
  color: #4f5d70;
}
.cid-rRBLBfWvXW .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-rRBLBfWvXW .card {
    padding: 0;
  }
  .cid-rRBLBfWvXW .card-inner {
    flex-direction: column;
  }
  .cid-rRBLBfWvXW .card-title {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-rRBLBfWvXW .row {
    margin: 0;
  }
}
.cid-rRBLBfWvXW .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-rRBLBfWvXW .mbr-section-subtitle {
  color: #e9204f;
}
.cid-rRBLBfWvXW .mbr-section-title {
  font-weight: 800;
}
.cid-rRBLBfWvXW h2 {
  margin-bottom: 0;
}
.cid-rRBLBfWvXW .title-block {
  margin-bottom: 3rem;
}
.cid-rRBLBfWvXW .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-rRBLBfWvXW .card-box {
    margin-left: 1.5rem;
  }
}
.cid-sdvErq3XCc {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #39485d;
}
.cid-sdvErq3XCc img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-sdvErq3XCc .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-sdvErq3XCc .card:hover {
  opacity: 0.9;
}
.cid-sdvErq3XCc H1 {
  color: #ffffff;
  text-align: center;
}
.cid-sdvErq3XCc .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-sdvErq3XCc .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-sdv5X7de5l {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #39485d;
}
.cid-sdv5X7de5l img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-sdv5X7de5l .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-sdv5X7de5l .card:hover {
  opacity: 0.9;
}
.cid-sdv5X7de5l H1 {
  color: #ffffff;
}
.cid-sdv5X7de5l .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-sdv5X7de5l .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-sdU18UeJHP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background16.jpg");
}
.cid-sdU18UeJHP .mbr-overlay {
  background-color: #4f4943;
  opacity: 0.5;
}
.cid-sdU18UeJHP textarea {
  min-height: 150px;
}
.cid-sdU18UeJHP .form-col {
  background: #39485d;
  padding: 3rem 1rem;
}
.cid-sdU18UeJHP .form-wrap {
  max-width: 520px;
  margin: auto;
}
.cid-sdU18UeJHP .text-wrap {
  max-width: 400px;
  border: 2px solid #ffffff;
  padding: 3rem;
  margin: 4rem auto!important;
}
@media (max-width: 992px) {
  .cid-sdU18UeJHP .form-wrap {
    max-width: 690px;
  }
  .cid-sdU18UeJHP .md-pb {
    padding-bottom: 3rem;
  }
  .cid-sdU18UeJHP .text-wrap {
    max-width: 690px;
  }
}
.cid-sdU18UeJHP .input-group-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-sdU18UeJHP .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #149dcc;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sdU18UeJHP H2 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sdU18UeJHP .col-auto {
    margin: auto;
  }
}
.cid-sdU18UeJHP H3 {
  color: #ffffff;
}
.cid-sdU18UeJHP H4 {
  color: #ffffff;
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-se43xuhJIx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se43xuhJIx .nav-item:focus,
.cid-se43xuhJIx .nav-link:focus {
  outline: none;
}
.cid-se43xuhJIx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se43xuhJIx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se43xuhJIx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-se43xuhJIx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se43xuhJIx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se43xuhJIx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se43xuhJIx .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-se43xuhJIx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-se43xuhJIx .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-se43xuhJIx .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-se43xuhJIx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-se43xuhJIx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se43xuhJIx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se43xuhJIx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-se43xuhJIx .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se43xuhJIx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se43xuhJIx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se43xuhJIx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se43xuhJIx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se43xuhJIx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se43xuhJIx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se43xuhJIx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se43xuhJIx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se43xuhJIx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se43xuhJIx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se43xuhJIx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se43xuhJIx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se43xuhJIx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se43xuhJIx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se43xuhJIx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se43xuhJIx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-se43xuhJIx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se43xuhJIx .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se43xuhJIx .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-se43xuhJIx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se43xuhJIx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se43xuhJIx .navbar-short {
  padding: 1rem 0 !important;
}
.cid-se43xuhJIx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se43xuhJIx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se43xuhJIx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se43xuhJIx .dropdown-item.active,
.cid-se43xuhJIx .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-se43xuhJIx .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-se43xuhJIx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se43xuhJIx .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-se43xuhJIx .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-se43xuhJIx .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-se43xuhJIx .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-se43xuhJIx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se43xuhJIx .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-se43xuhJIx .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-se43xuhJIx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-se43xuhJIx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se43xuhJIx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se43xuhJIx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se43xuhJIx .navbar-buttons {
  text-align: center;
}
.cid-se43xuhJIx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se43xuhJIx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se43xuhJIx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se43xuhJIx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se43xuhJIx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se43xuhJIx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se43xuhJIx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se43xuhJIx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se43xuhJIx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se43xuhJIx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se43xuhJIx .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-se43xuhJIx a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-se43xuhJIx .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-se43xuhJIx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-se43xuhJIx .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se43xuhJIx .navbar {
    height: 77px;
  }
  .cid-se43xuhJIx .navbar.opened {
    height: auto;
  }
  .cid-se43xuhJIx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se43xuhJIx a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-se43xuhJIx a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-se43xuhJIx .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-se43xuhJIx .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-se43xtaDCH {
  padding-top: 135px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1-1920x1202.jpg");
}
.cid-se43xtaDCH .mbr-text {
  color: #767676;
}
.cid-se43xtaDCH .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(255, 255, 255, 0.35);
}
.cid-se43xtaDCH .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-se43xtaDCH .card-wrapper:hover .ico2 {
  color: #1f2732 !important;
}
.cid-se43xtaDCH .text-info:hover {
  color: inherit!important;
}
.cid-se43xtaDCH .ico2 {
  color: #ff5100 !important;
  transition: all 0.6s;
}
.cid-se43xtaDCH .card-box {
  padding: 0rem 1rem;
}
.cid-se43xtaDCH .card-img {
  width: auto;
}
.cid-se43xtaDCH .ico1 {
  font-size: 3rem !important;
}
.cid-se43xtaDCH h3,
.cid-se43xtaDCH h4 {
  padding: 0;
  margin: 0;
}
.cid-se43xtaDCH .card-title,
.cid-se43xtaDCH .card-img {
  color: #232323;
}
.cid-se43xtaDCH H3 {
  color: #9b9b9b;
}
.cid-se43xtaDCH H1 {
  color: #ffffff;
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-se4Clndzya .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se4Clndzya .nav-item:focus,
.cid-se4Clndzya .nav-link:focus {
  outline: none;
}
.cid-se4Clndzya .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se4Clndzya .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se4Clndzya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-se4Clndzya .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se4Clndzya .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se4Clndzya .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se4Clndzya .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-se4Clndzya .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-se4Clndzya .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-se4Clndzya .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-se4Clndzya .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-se4Clndzya .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se4Clndzya .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se4Clndzya .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-se4Clndzya .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se4Clndzya .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se4Clndzya .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se4Clndzya .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se4Clndzya .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se4Clndzya .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se4Clndzya .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se4Clndzya .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se4Clndzya .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se4Clndzya .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se4Clndzya .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se4Clndzya .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se4Clndzya .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se4Clndzya .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se4Clndzya .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se4Clndzya .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se4Clndzya .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-se4Clndzya .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se4Clndzya .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se4Clndzya .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-se4Clndzya .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se4Clndzya .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se4Clndzya .navbar-short {
  padding: 1rem 0 !important;
}
.cid-se4Clndzya .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se4Clndzya .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se4Clndzya .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se4Clndzya .dropdown-item.active,
.cid-se4Clndzya .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-se4Clndzya .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-se4Clndzya .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se4Clndzya .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-se4Clndzya .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-se4Clndzya .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-se4Clndzya .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-se4Clndzya .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se4Clndzya .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-se4Clndzya .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-se4Clndzya .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-se4Clndzya .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se4Clndzya .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se4Clndzya ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se4Clndzya .navbar-buttons {
  text-align: center;
}
.cid-se4Clndzya button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se4Clndzya button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se4Clndzya button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se4Clndzya button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se4Clndzya button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se4Clndzya button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se4Clndzya nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se4Clndzya nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se4Clndzya nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se4Clndzya nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se4Clndzya .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-se4Clndzya a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-se4Clndzya .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-se4Clndzya .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-se4Clndzya .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se4Clndzya .navbar {
    height: 77px;
  }
  .cid-se4Clndzya .navbar.opened {
    height: auto;
  }
  .cid-se4Clndzya .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se4Clndzya a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-se4Clndzya a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-se4Clndzya .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-se4Clndzya .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sefJRWZTug {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-16-a-las-16.34.55-2000x1500.png");
}
.cid-sefJRWZTug .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sefJRWZTug .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sefJRWZTug .align-center {
    text-align: center;
  }
}
.cid-sefJRWZTug h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sefJRWZTug .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sefJRWZTug .row {
    margin: 0;
  }
}
.cid-sefJRWZTug .btn {
  margin-left: 0rem;
}
.cid-sefJWBGFWM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sefJWBGFWM .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefJWBGFWM .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-sefJWBGFWM .link {
  margin: 0;
}
.cid-sefJWBGFWM .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefJWBGFWM .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefJWBGFWM .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sefJWBGFWM .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-sefJWBGFWM .card:hover .card-title {
  color: #4f5d70;
}
.cid-sefJWBGFWM .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sefJWBGFWM .card {
    padding: 0;
  }
  .cid-sefJWBGFWM .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-sefJWBGFWM .card-title {
    margin-top: 2rem;
  }
  .cid-sefJWBGFWM .mbr-section-title,
  .cid-sefJWBGFWM .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sefJWBGFWM .row {
    margin: 0;
  }
}
.cid-sefJWBGFWM .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-sefJWBGFWM .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sefJWBGFWM .mbr-section-title {
  font-weight: 800;
}
.cid-sefJWBGFWM h2 {
  margin-bottom: 0;
}
.cid-sefJWBGFWM .title-block {
  margin-bottom: 3rem;
}
.cid-sefJWBGFWM .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-sefJWBGFWM .card-box {
    margin-left: 1.5rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-se5JHSiSGy .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se5JHSiSGy .nav-item:focus,
.cid-se5JHSiSGy .nav-link:focus {
  outline: none;
}
.cid-se5JHSiSGy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se5JHSiSGy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se5JHSiSGy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-se5JHSiSGy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se5JHSiSGy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se5JHSiSGy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se5JHSiSGy .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-se5JHSiSGy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-se5JHSiSGy .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-se5JHSiSGy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-se5JHSiSGy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-se5JHSiSGy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se5JHSiSGy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se5JHSiSGy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-se5JHSiSGy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se5JHSiSGy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se5JHSiSGy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se5JHSiSGy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se5JHSiSGy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se5JHSiSGy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se5JHSiSGy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se5JHSiSGy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se5JHSiSGy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se5JHSiSGy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se5JHSiSGy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se5JHSiSGy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se5JHSiSGy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se5JHSiSGy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se5JHSiSGy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se5JHSiSGy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se5JHSiSGy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-se5JHSiSGy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se5JHSiSGy .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se5JHSiSGy .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-se5JHSiSGy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se5JHSiSGy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se5JHSiSGy .navbar-short {
  padding: 1rem 0 !important;
}
.cid-se5JHSiSGy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se5JHSiSGy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se5JHSiSGy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se5JHSiSGy .dropdown-item.active,
.cid-se5JHSiSGy .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-se5JHSiSGy .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-se5JHSiSGy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se5JHSiSGy .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-se5JHSiSGy .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-se5JHSiSGy .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-se5JHSiSGy .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-se5JHSiSGy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se5JHSiSGy .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-se5JHSiSGy .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-se5JHSiSGy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-se5JHSiSGy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se5JHSiSGy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se5JHSiSGy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se5JHSiSGy .navbar-buttons {
  text-align: center;
}
.cid-se5JHSiSGy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se5JHSiSGy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se5JHSiSGy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se5JHSiSGy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se5JHSiSGy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se5JHSiSGy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se5JHSiSGy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se5JHSiSGy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se5JHSiSGy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se5JHSiSGy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se5JHSiSGy .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-se5JHSiSGy a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-se5JHSiSGy .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-se5JHSiSGy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-se5JHSiSGy .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se5JHSiSGy .navbar {
    height: 77px;
  }
  .cid-se5JHSiSGy .navbar.opened {
    height: auto;
  }
  .cid-se5JHSiSGy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se5JHSiSGy a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-se5JHSiSGy a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-se5JHSiSGy .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-se5JHSiSGy .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-seg7CEtr4A {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/seo2mbr-5-1920x992.png");
}
.cid-seg7CEtr4A .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-seg7CEtr4A .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-seg7CEtr4A .align-center {
    text-align: center;
  }
}
.cid-seg7CEtr4A h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-seg7CEtr4A .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-seg7CEtr4A .row {
    margin: 0;
  }
}
.cid-seg7CEtr4A .btn {
  margin-left: 0rem;
}
.cid-seg7MlvOFc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seg7MlvOFc .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg7MlvOFc .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-seg7MlvOFc .link {
  margin: 0;
}
.cid-seg7MlvOFc .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg7MlvOFc .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg7MlvOFc .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-seg7MlvOFc .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-seg7MlvOFc .card:hover .card-title {
  color: #4f5d70;
}
.cid-seg7MlvOFc .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-seg7MlvOFc .card {
    padding: 0;
  }
  .cid-seg7MlvOFc .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-seg7MlvOFc .card-title {
    margin-top: 2rem;
  }
  .cid-seg7MlvOFc .mbr-section-title,
  .cid-seg7MlvOFc .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-seg7MlvOFc .row {
    margin: 0;
  }
}
.cid-seg7MlvOFc .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-seg7MlvOFc .mbr-section-subtitle {
  color: #e9204f;
}
.cid-seg7MlvOFc .mbr-section-title {
  font-weight: 800;
}
.cid-seg7MlvOFc h2 {
  margin-bottom: 0;
}
.cid-seg7MlvOFc .title-block {
  margin-bottom: 3rem;
}
.cid-seg7MlvOFc .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-seg7MlvOFc .card-box {
    margin-left: 1.5rem;
  }
}
.cid-seg7EAfYgt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-seg7EAfYgt .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg7EAfYgt .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-seg7EAfYgt .link {
  margin: 0;
}
.cid-seg7EAfYgt .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg7EAfYgt .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg7EAfYgt .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-seg7EAfYgt .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-seg7EAfYgt .card:hover .card-title {
  color: #4f5d70;
}
.cid-seg7EAfYgt .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-seg7EAfYgt .card {
    padding: 0;
  }
  .cid-seg7EAfYgt .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-seg7EAfYgt .card-title {
    margin-top: 2rem;
  }
  .cid-seg7EAfYgt .mbr-section-title,
  .cid-seg7EAfYgt .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-seg7EAfYgt .row {
    margin: 0;
  }
}
.cid-seg7EAfYgt .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-seg7EAfYgt .mbr-section-subtitle {
  color: #e9204f;
}
.cid-seg7EAfYgt .mbr-section-title {
  font-weight: 800;
}
.cid-seg7EAfYgt h2 {
  margin-bottom: 0;
}
.cid-seg7EAfYgt .title-block {
  margin-bottom: 3rem;
}
.cid-seg7EAfYgt .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-seg7EAfYgt .card-box {
    margin-left: 1.5rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-selWa8Zgii .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-selWa8Zgii .nav-item:focus,
.cid-selWa8Zgii .nav-link:focus {
  outline: none;
}
.cid-selWa8Zgii .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-selWa8Zgii .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-selWa8Zgii .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-selWa8Zgii .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-selWa8Zgii .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-selWa8Zgii .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-selWa8Zgii .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-selWa8Zgii .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-selWa8Zgii .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-selWa8Zgii .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-selWa8Zgii .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-selWa8Zgii .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-selWa8Zgii .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-selWa8Zgii .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-selWa8Zgii .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-selWa8Zgii .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-selWa8Zgii .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-selWa8Zgii .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-selWa8Zgii .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-selWa8Zgii .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-selWa8Zgii .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-selWa8Zgii .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-selWa8Zgii .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-selWa8Zgii .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-selWa8Zgii .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-selWa8Zgii .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-selWa8Zgii .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-selWa8Zgii .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-selWa8Zgii .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-selWa8Zgii .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-selWa8Zgii .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-selWa8Zgii .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-selWa8Zgii .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-selWa8Zgii .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-selWa8Zgii .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-selWa8Zgii .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-selWa8Zgii .navbar-short {
  padding: 1rem 0 !important;
}
.cid-selWa8Zgii .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-selWa8Zgii .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-selWa8Zgii .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-selWa8Zgii .dropdown-item.active,
.cid-selWa8Zgii .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-selWa8Zgii .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-selWa8Zgii .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-selWa8Zgii .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-selWa8Zgii .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-selWa8Zgii .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-selWa8Zgii .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-selWa8Zgii .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-selWa8Zgii .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-selWa8Zgii .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-selWa8Zgii .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-selWa8Zgii .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-selWa8Zgii .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-selWa8Zgii ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-selWa8Zgii .navbar-buttons {
  text-align: center;
}
.cid-selWa8Zgii button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-selWa8Zgii button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-selWa8Zgii button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-selWa8Zgii button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-selWa8Zgii button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-selWa8Zgii button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-selWa8Zgii nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-selWa8Zgii nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-selWa8Zgii nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-selWa8Zgii nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-selWa8Zgii .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-selWa8Zgii a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-selWa8Zgii .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-selWa8Zgii .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-selWa8Zgii .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-selWa8Zgii .navbar {
    height: 77px;
  }
  .cid-selWa8Zgii .navbar.opened {
    height: auto;
  }
  .cid-selWa8Zgii .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-selWa8Zgii a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-selWa8Zgii a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-selWa8Zgii .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-selWa8Zgii .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-selWa7TUGJ {
  padding-top: 165px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-selWa7TUGJ .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-selWa7TUGJ .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-selWa7TUGJ .align-center {
    text-align: center;
  }
}
.cid-selWa7TUGJ h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-selWa7TUGJ .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-selWa7TUGJ .row {
    margin: 0;
  }
}
.cid-selWa7TUGJ .btn {
  margin-left: 0rem;
}
.cid-selWI0Vy4k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #10cfc9;
}
@media (min-width: 767px) {
  .cid-selWI0Vy4k .container {
    padding: 1rem;
  }
}
.cid-selWI0Vy4k .card-box {
  padding: 0 2rem;
}
.cid-selWI0Vy4k .card {
  padding: 0!important;
}
.cid-selWI0Vy4k .mbr-section-btn {
  padding-top: 2rem;
}
.cid-selWI0Vy4k .container-fluid {
  padding: 0;
}
.cid-selWI0Vy4k .card1 {
  background-image: url("../../../assets/images/medio-foton2-736x736.png");
}
.cid-selWI0Vy4k .card2 {
  background-image: url("../../../assets/images/magazine-mockup-vasser-2000x1273.png");
}
.cid-selWI0Vy4k .card3 {
  background-image: url("../../../assets/images/captura-de-pantalla-2020-10-19-a-las-21.41.51-1490x1326.png");
}
.cid-selWI0Vy4k h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-selWI0Vy4k p {
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-selWI0Vy4k .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-selWI0Vy4k .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-selWI0Vy4k .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-selWI0Vy4k .card-title {
  color: #ffffff;
}
.cid-selXmsd1LC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-selXmsd1LC .container {
    padding: 1rem;
  }
}
.cid-selXmsd1LC .card-box {
  padding: 0 2rem;
}
.cid-selXmsd1LC .card {
  padding: 0!important;
}
.cid-selXmsd1LC .mbr-section-btn {
  padding-top: 2rem;
}
.cid-selXmsd1LC .container-fluid {
  padding: 0;
}
.cid-selXmsd1LC .card1 {
  background-image: url("../../../assets/images/phyg2-709x750.jpg");
}
.cid-selXmsd1LC .card2 {
  background-image: url("../../../assets/images/essen2-1048x1048.jpg");
}
.cid-selXmsd1LC .card3 {
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-13-a-las-14.19.26-1132x794.png");
}
.cid-selXmsd1LC h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-selXmsd1LC p {
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-selXmsd1LC .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-selXmsd1LC .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-selXmsd1LC .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sfHejAJgWt .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfHejAJgWt .nav-item:focus,
.cid-sfHejAJgWt .nav-link:focus {
  outline: none;
}
.cid-sfHejAJgWt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfHejAJgWt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sfHejAJgWt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sfHejAJgWt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfHejAJgWt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfHejAJgWt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfHejAJgWt .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sfHejAJgWt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sfHejAJgWt .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sfHejAJgWt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sfHejAJgWt .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfHejAJgWt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfHejAJgWt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfHejAJgWt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sfHejAJgWt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfHejAJgWt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfHejAJgWt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sfHejAJgWt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sfHejAJgWt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfHejAJgWt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sfHejAJgWt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfHejAJgWt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfHejAJgWt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfHejAJgWt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfHejAJgWt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfHejAJgWt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sfHejAJgWt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sfHejAJgWt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfHejAJgWt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfHejAJgWt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sfHejAJgWt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfHejAJgWt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sfHejAJgWt .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfHejAJgWt .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sfHejAJgWt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfHejAJgWt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfHejAJgWt .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sfHejAJgWt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfHejAJgWt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfHejAJgWt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfHejAJgWt .dropdown-item.active,
.cid-sfHejAJgWt .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sfHejAJgWt .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sfHejAJgWt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfHejAJgWt .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sfHejAJgWt .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sfHejAJgWt .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sfHejAJgWt .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sfHejAJgWt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfHejAJgWt .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sfHejAJgWt .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sfHejAJgWt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sfHejAJgWt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfHejAJgWt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfHejAJgWt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sfHejAJgWt .navbar-buttons {
  text-align: center;
}
.cid-sfHejAJgWt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sfHejAJgWt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sfHejAJgWt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfHejAJgWt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfHejAJgWt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfHejAJgWt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfHejAJgWt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfHejAJgWt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfHejAJgWt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfHejAJgWt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfHejAJgWt .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sfHejAJgWt a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sfHejAJgWt .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sfHejAJgWt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sfHejAJgWt .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfHejAJgWt .navbar {
    height: 77px;
  }
  .cid-sfHejAJgWt .navbar.opened {
    height: auto;
  }
  .cid-sfHejAJgWt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfHejAJgWt a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sfHejAJgWt a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sfHejAJgWt .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sfHejAJgWt .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sfHejyNOCH {
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #1f2732;
}
.cid-sfHejyNOCH .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sfHejyNOCH .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sfHejyNOCH .align-center {
    text-align: center;
  }
}
.cid-sfHejyNOCH h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sfHejyNOCH .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sfHejyNOCH .row {
    margin: 0;
  }
}
.cid-sfHejyNOCH .btn {
  margin-left: 0rem;
}
.cid-sg45paTKoQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/slide-agatha-2000x696.jpeg");
}
.cid-sg45paTKoQ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sg45paTKoQ .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sg45paTKoQ .text-block {
  padding-right: 5rem;
}
.cid-sg45paTKoQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sg45paTKoQ .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sg45paTKoQ .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sg45paTKoQ .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sg45paTKoQ .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sg45paTKoQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sg45paTKoQ .img-block {
    margin-bottom: 1rem;
  }
  .cid-sg45paTKoQ .text-block {
    padding: 0 15px;
  }
}
.cid-sg4akNAFjN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg4akNAFjN .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sg4akNAFjN .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sg4akNAFjN .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sg4akNAFjN .wrap-img {
  padding-bottom: 1rem;
}
.cid-sg4akNAFjN .wrap-img img {
  max-width: 100%;
}
.cid-sg4akNAFjN .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sfHUfPvnID {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mockup-vasser-fondo-copia-2000x1333.png");
}
.cid-sfHUfPvnID .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfHUfPvnID .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfHUfPvnID .text-block {
  padding-right: 5rem;
}
.cid-sfHUfPvnID .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfHUfPvnID .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfHUfPvnID .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfHUfPvnID .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfHUfPvnID .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfHUfPvnID .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfHUfPvnID .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfHUfPvnID .text-block {
    padding: 0 15px;
  }
}
.cid-sfHLtcz1Dv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/fondo1vasser2-1900x1247.png");
}
.cid-sfHLtcz1Dv .mbr-section-title,
.cid-sfHLtcz1Dv .mbr-section-subtitle {
  color: #000000;
}
.cid-sfHLtcz1Dv .mbr-section-text {
  color: #232323;
}
.cid-sfHLtcz1Dv .mbr-text,
.cid-sfHLtcz1Dv .typed-text,
.cid-sfHLtcz1Dv .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfHLtcz1Dv .btn {
  margin-left: 4px !important;
}
.cid-sfHLtcz1Dv .animated-element {
  color: #ff3366;
}
.cid-sfHLtcz1Dv .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfHLtcz1Dv .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfHLtcz1Dv .typed-text,
  .cid-sfHLtcz1Dv .mbr-section-subtitle,
  .cid-sfHLtcz1Dv .mbr-section-text,
  .cid-sfHLtcz1Dv .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sg583YDksG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/posters-vasser2-1900x1390.png");
}
.cid-sg583YDksG .mbr-section-title,
.cid-sg583YDksG .mbr-section-subtitle {
  color: #000000;
}
.cid-sg583YDksG .mbr-section-text {
  color: #232323;
}
.cid-sg583YDksG .mbr-text,
.cid-sg583YDksG .typed-text,
.cid-sg583YDksG .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sg583YDksG .btn {
  margin-left: 4px !important;
}
.cid-sg583YDksG .animated-element {
  color: #ff3366;
}
.cid-sg583YDksG .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sg583YDksG .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sg583YDksG .typed-text,
  .cid-sg583YDksG .mbr-section-subtitle,
  .cid-sg583YDksG .mbr-section-text,
  .cid-sg583YDksG .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfI36rFXsD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/fondo1vasser2-3-1900x1247.png");
}
.cid-sfI36rFXsD .mbr-section-title,
.cid-sfI36rFXsD .mbr-section-subtitle {
  color: #000000;
}
.cid-sfI36rFXsD .mbr-section-text {
  color: #232323;
}
.cid-sfI36rFXsD .mbr-text,
.cid-sfI36rFXsD .typed-text,
.cid-sfI36rFXsD .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfI36rFXsD .btn {
  margin-left: 4px !important;
}
.cid-sfI36rFXsD .animated-element {
  color: #ff3366;
}
.cid-sfI36rFXsD .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfI36rFXsD .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfI36rFXsD .typed-text,
  .cid-sfI36rFXsD .mbr-section-subtitle,
  .cid-sfI36rFXsD .mbr-section-text,
  .cid-sfI36rFXsD .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfI36rFXsD .mbr-section-text,
.cid-sfI36rFXsD .mbr-section-btn {
  color: #005cb8;
}
.cid-sg59TEWygR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #10cfc9;
}
@media (max-width: 992px) {
  .cid-sg59TEWygR {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-sg59TEWygR .text {
  padding: 0;
}
.cid-sg59TEWygR section {
  position: relative;
}
.cid-sg59TEWygR h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-sg59TEWygR .mbr-iconfont {
  padding: 0!important;
}
.cid-sg59TEWygR .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #10cfc9;
}
.cid-sg59TEWygR .box {
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-07-a-las-19.35.15-1320x656.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sg59TEWygR .icon-wrap {
  background-color: #10cfc9 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sg59TEWygR .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sg59TEWygR .icon-wrap span {
  padding-left: 8px;
}
.cid-sg59TEWygR .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sg59TEWygR .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sg59TEWygR .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sg59TEWygR .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sg59TEWygR .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sg59TEWygR a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sg59TEWygR a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sg59TEWygR {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sg59TEWygR .box {
    height: 250px;
  }
  .cid-sg59TEWygR .row {
    padding: 1rem!important;
  }
}
.cid-sg59TEWygR H2 {
  text-align: left;
  color: #ffffff;
}
.cid-sfKQ0TIojk {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/vasser-fotos2-2000x271.png");
}
.cid-sgCvoIW0aS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sgCvoIW0aS .wrapper {
  overflow: hidden;
}
.cid-sgCvoIW0aS .wrapper img {
  transition: all .5s;
}
.cid-sgCvoIW0aS .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sgCvoIW0aS .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-sgCvoIW0aS .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 25rem;
}
.cid-sgCvoIW0aS .wrapper .mbr-overlay {
  background: #232323;
  opacity: 0;
  border-top-right-radius: 25%;
  z-index: 1;
}
.cid-sgCvoIW0aS .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgCvoIW0aS .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-sgCvoIW0aS .popup-btn .mbr-overlay {
  border-top-right-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-sgCvoIW0aS .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sfL3vjZzwl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfL3vjZzwl .nav-item:focus,
.cid-sfL3vjZzwl .nav-link:focus {
  outline: none;
}
.cid-sfL3vjZzwl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfL3vjZzwl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sfL3vjZzwl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sfL3vjZzwl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfL3vjZzwl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfL3vjZzwl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfL3vjZzwl .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sfL3vjZzwl .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sfL3vjZzwl .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sfL3vjZzwl .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sfL3vjZzwl .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfL3vjZzwl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfL3vjZzwl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfL3vjZzwl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sfL3vjZzwl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfL3vjZzwl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfL3vjZzwl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sfL3vjZzwl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sfL3vjZzwl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfL3vjZzwl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sfL3vjZzwl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfL3vjZzwl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfL3vjZzwl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfL3vjZzwl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfL3vjZzwl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfL3vjZzwl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sfL3vjZzwl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sfL3vjZzwl .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfL3vjZzwl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfL3vjZzwl .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sfL3vjZzwl .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfL3vjZzwl .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sfL3vjZzwl .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfL3vjZzwl .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sfL3vjZzwl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfL3vjZzwl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfL3vjZzwl .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sfL3vjZzwl .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfL3vjZzwl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfL3vjZzwl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfL3vjZzwl .dropdown-item.active,
.cid-sfL3vjZzwl .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sfL3vjZzwl .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sfL3vjZzwl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfL3vjZzwl .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sfL3vjZzwl .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sfL3vjZzwl .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sfL3vjZzwl .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sfL3vjZzwl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfL3vjZzwl .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sfL3vjZzwl .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sfL3vjZzwl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sfL3vjZzwl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfL3vjZzwl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfL3vjZzwl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sfL3vjZzwl .navbar-buttons {
  text-align: center;
}
.cid-sfL3vjZzwl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sfL3vjZzwl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sfL3vjZzwl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfL3vjZzwl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfL3vjZzwl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfL3vjZzwl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfL3vjZzwl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfL3vjZzwl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfL3vjZzwl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfL3vjZzwl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfL3vjZzwl .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sfL3vjZzwl a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sfL3vjZzwl .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sfL3vjZzwl .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sfL3vjZzwl .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfL3vjZzwl .navbar {
    height: 77px;
  }
  .cid-sfL3vjZzwl .navbar.opened {
    height: auto;
  }
  .cid-sfL3vjZzwl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfL3vjZzwl a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sfL3vjZzwl a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sfL3vjZzwl .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sfL3vjZzwl .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sfL3vglIYe {
  padding-top: 165px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/foton-apaisada-2000x960.jpg");
}
.cid-sfL3vglIYe .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sfL3vglIYe .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sfL3vglIYe .align-center {
    text-align: center;
  }
}
.cid-sfL3vglIYe h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sfL3vglIYe .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sfL3vglIYe .row {
    margin: 0;
  }
}
.cid-sfL3vglIYe .btn {
  margin-left: 0rem;
}
.cid-sg8N18iwGC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/f1-2000x1126.jpeg");
}
.cid-sg8N18iwGC .mbr-section-title,
.cid-sg8N18iwGC .mbr-section-subtitle {
  color: #000000;
}
.cid-sg8N18iwGC .mbr-section-text {
  color: #232323;
}
.cid-sg8N18iwGC .mbr-text,
.cid-sg8N18iwGC .typed-text,
.cid-sg8N18iwGC .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sg8N18iwGC .btn {
  margin-left: 4px !important;
}
.cid-sg8N18iwGC .animated-element {
  color: #ff3366;
}
.cid-sg8N18iwGC .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sg8N18iwGC .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sg8N18iwGC .typed-text,
  .cid-sg8N18iwGC .mbr-section-subtitle,
  .cid-sg8N18iwGC .mbr-section-text,
  .cid-sg8N18iwGC .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sg8q5IDIfZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg8q5IDIfZ .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sg8q5IDIfZ .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sg8q5IDIfZ .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sg8q5IDIfZ .wrap-img {
  padding-bottom: 1rem;
}
.cid-sg8q5IDIfZ .wrap-img img {
  max-width: 100%;
}
.cid-sg8q5IDIfZ .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sgaaMjdsby {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/magazine-mockup-3-foton2-2000x1160.png");
}
.cid-sgaaMjdsby .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sgaaMjdsby .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sgaaMjdsby .text-block {
  padding-right: 5rem;
}
.cid-sgaaMjdsby .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgaaMjdsby .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sgaaMjdsby .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sgaaMjdsby .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sgaaMjdsby .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sgaaMjdsby .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sgaaMjdsby .img-block {
    margin-bottom: 1rem;
  }
  .cid-sgaaMjdsby .text-block {
    padding: 0 15px;
  }
}
.cid-sfL3vgPoSJ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sfL3vgPoSJ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfL3vgPoSJ .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfL3vgPoSJ .text-block {
  padding-right: 5rem;
}
.cid-sfL3vgPoSJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfL3vgPoSJ .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfL3vgPoSJ .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfL3vgPoSJ .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfL3vgPoSJ .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfL3vgPoSJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfL3vgPoSJ .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfL3vgPoSJ .text-block {
    padding: 0 15px;
  }
}
.cid-sfL3vhmpZ3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-12-a-las-17.51.52-2000x1049.png");
}
.cid-sfL3vhmpZ3 .mbr-section-title,
.cid-sfL3vhmpZ3 .mbr-section-subtitle {
  color: #000000;
}
.cid-sfL3vhmpZ3 .mbr-section-text {
  color: #232323;
}
.cid-sfL3vhmpZ3 .mbr-text,
.cid-sfL3vhmpZ3 .typed-text,
.cid-sfL3vhmpZ3 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfL3vhmpZ3 .btn {
  margin-left: 4px !important;
}
.cid-sfL3vhmpZ3 .animated-element {
  color: #ff3366;
}
.cid-sfL3vhmpZ3 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfL3vhmpZ3 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfL3vhmpZ3 .typed-text,
  .cid-sfL3vhmpZ3 .mbr-section-subtitle,
  .cid-sfL3vhmpZ3 .mbr-section-text,
  .cid-sfL3vhmpZ3 .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfL3vhmpZ3 .mbr-section-subtitle,
.cid-sfL3vhmpZ3 .typed-text {
  color: #205394;
}
.cid-sfL3vhDNvS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #205394;
}
@media (max-width: 991px) {
  .cid-sfL3vhDNvS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sfL3vhDNvS .row {
  flex-direction: row-reverse;
}
.cid-sfL3vhDNvS img {
  width: 100%;
}
.cid-sfL3vhQKyV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/foton-apaisada-2000x960.jpg");
}
.cid-sfL3vhQKyV .mbr-section-title,
.cid-sfL3vhQKyV .mbr-section-subtitle {
  color: #000000;
}
.cid-sfL3vhQKyV .mbr-section-text {
  color: #232323;
}
.cid-sfL3vhQKyV .mbr-text,
.cid-sfL3vhQKyV .typed-text,
.cid-sfL3vhQKyV .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfL3vhQKyV .btn {
  margin-left: 4px !important;
}
.cid-sfL3vhQKyV .animated-element {
  color: #ff3366;
}
.cid-sfL3vhQKyV .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfL3vhQKyV .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfL3vhQKyV .typed-text,
  .cid-sfL3vhQKyV .mbr-section-subtitle,
  .cid-sfL3vhQKyV .mbr-section-text,
  .cid-sfL3vhQKyV .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfL3vhQKyV .mbr-section-text,
.cid-sfL3vhQKyV .mbr-section-btn {
  color: #ffffff;
}
.cid-sfL3viW9E0 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-09-a-las-00.15.12-2000x467.png");
}
.cid-sfL3vjaRlV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #9b9b9b;
}
@media (max-width: 992px) {
  .cid-sfL3vjaRlV {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-sfL3vjaRlV .text {
  padding: 0;
}
.cid-sfL3vjaRlV section {
  position: relative;
}
.cid-sfL3vjaRlV h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-sfL3vjaRlV .mbr-iconfont {
  padding: 0!important;
}
.cid-sfL3vjaRlV .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #205394;
}
.cid-sfL3vjaRlV .box {
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-09-a-las-00.13.12-2000x927.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sfL3vjaRlV .icon-wrap {
  background-color: #205394 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sfL3vjaRlV .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sfL3vjaRlV .icon-wrap span {
  padding-left: 8px;
}
.cid-sfL3vjaRlV .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sfL3vjaRlV .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sfL3vjaRlV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sfL3vjaRlV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sfL3vjaRlV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sfL3vjaRlV a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sfL3vjaRlV a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sfL3vjaRlV {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sfL3vjaRlV .box {
    height: 250px;
  }
  .cid-sfL3vjaRlV .row {
    padding: 1rem!important;
  }
}
.cid-sfL3vjaRlV H2 {
  text-align: left;
  color: #ffffff;
}
.cid-sgCpVWxVkP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sgCpVWxVkP .wrapper {
  overflow: hidden;
}
.cid-sgCpVWxVkP .wrapper img {
  transition: all .5s;
}
.cid-sgCpVWxVkP .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sgCpVWxVkP .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-sgCpVWxVkP .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 25rem;
}
.cid-sgCpVWxVkP .wrapper .mbr-overlay {
  background: #232323;
  opacity: 0.1;
  border-top-right-radius: 25%;
  z-index: 1;
}
.cid-sgCpVWxVkP .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgCpVWxVkP .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-sgCpVWxVkP .popup-btn .mbr-overlay {
  border-top-right-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-sgCpVWxVkP .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sfR4cA55bW .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfR4cA55bW .nav-item:focus,
.cid-sfR4cA55bW .nav-link:focus {
  outline: none;
}
.cid-sfR4cA55bW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfR4cA55bW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sfR4cA55bW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sfR4cA55bW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfR4cA55bW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfR4cA55bW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfR4cA55bW .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sfR4cA55bW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sfR4cA55bW .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sfR4cA55bW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sfR4cA55bW .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfR4cA55bW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfR4cA55bW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfR4cA55bW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sfR4cA55bW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfR4cA55bW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfR4cA55bW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sfR4cA55bW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sfR4cA55bW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfR4cA55bW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sfR4cA55bW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfR4cA55bW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfR4cA55bW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfR4cA55bW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfR4cA55bW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfR4cA55bW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sfR4cA55bW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sfR4cA55bW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfR4cA55bW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfR4cA55bW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sfR4cA55bW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfR4cA55bW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sfR4cA55bW .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfR4cA55bW .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sfR4cA55bW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfR4cA55bW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfR4cA55bW .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sfR4cA55bW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfR4cA55bW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfR4cA55bW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfR4cA55bW .dropdown-item.active,
.cid-sfR4cA55bW .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sfR4cA55bW .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sfR4cA55bW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfR4cA55bW .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sfR4cA55bW .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sfR4cA55bW .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sfR4cA55bW .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sfR4cA55bW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfR4cA55bW .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sfR4cA55bW .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sfR4cA55bW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sfR4cA55bW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfR4cA55bW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfR4cA55bW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sfR4cA55bW .navbar-buttons {
  text-align: center;
}
.cid-sfR4cA55bW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sfR4cA55bW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sfR4cA55bW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfR4cA55bW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfR4cA55bW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfR4cA55bW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfR4cA55bW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfR4cA55bW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfR4cA55bW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfR4cA55bW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfR4cA55bW .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sfR4cA55bW a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sfR4cA55bW .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sfR4cA55bW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sfR4cA55bW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfR4cA55bW .navbar {
    height: 77px;
  }
  .cid-sfR4cA55bW .navbar.opened {
    height: auto;
  }
  .cid-sfR4cA55bW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfR4cA55bW a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sfR4cA55bW a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sfR4cA55bW .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sfR4cA55bW .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sfR4cwMhnE {
  padding-top: 165px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fachada-tortu-con-grafica-2000x395.jpg");
}
.cid-sfR4cwMhnE .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sfR4cwMhnE .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sfR4cwMhnE .align-center {
    text-align: center;
  }
}
.cid-sfR4cwMhnE h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sfR4cwMhnE .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sfR4cwMhnE .row {
    margin: 0;
  }
}
.cid-sfR4cwMhnE .btn {
  margin-left: 0rem;
}
.cid-sg9Fr5emfu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/sodimac-1894x943.jpeg");
}
.cid-sg9Fr5emfu .mbr-section-title,
.cid-sg9Fr5emfu .mbr-section-subtitle {
  color: #000000;
}
.cid-sg9Fr5emfu .mbr-section-text {
  color: #232323;
}
.cid-sg9Fr5emfu .mbr-text,
.cid-sg9Fr5emfu .typed-text,
.cid-sg9Fr5emfu .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sg9Fr5emfu .btn {
  margin-left: 4px !important;
}
.cid-sg9Fr5emfu .animated-element {
  color: #ff3366;
}
.cid-sg9Fr5emfu .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sg9Fr5emfu .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sg9Fr5emfu .typed-text,
  .cid-sg9Fr5emfu .mbr-section-subtitle,
  .cid-sg9Fr5emfu .mbr-section-text,
  .cid-sg9Fr5emfu .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sg9j8IzNzJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg9j8IzNzJ .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sg9j8IzNzJ .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sg9j8IzNzJ .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sg9j8IzNzJ .wrap-img {
  padding-bottom: 1rem;
}
.cid-sg9j8IzNzJ .wrap-img img {
  max-width: 100%;
}
.cid-sg9j8IzNzJ .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sfR4cxdYN4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mockup-vs-sodim-fondo-copia2-2000x1333.png");
}
.cid-sfR4cxdYN4 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfR4cxdYN4 .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfR4cxdYN4 .text-block {
  padding-right: 5rem;
}
.cid-sfR4cxdYN4 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfR4cxdYN4 .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfR4cxdYN4 .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfR4cxdYN4 .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfR4cxdYN4 .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfR4cxdYN4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfR4cxdYN4 .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfR4cxdYN4 .text-block {
    padding: 0 15px;
  }
}
.cid-sfR4cxdYN4 .mbr-section-title {
  color: #006ab3;
}
.cid-sfRyi0Xh7t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-09-a-las-14.01.46-2000x1250.png");
}
.cid-sfRyi0Xh7t .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfRyi0Xh7t .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfRyi0Xh7t .text-block {
  padding-right: 5rem;
}
.cid-sfRyi0Xh7t .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfRyi0Xh7t .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfRyi0Xh7t .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfRyi0Xh7t .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfRyi0Xh7t .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfRyi0Xh7t .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfRyi0Xh7t .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfRyi0Xh7t .text-block {
    padding: 0 15px;
  }
}
.cid-sfRyi0Xh7t .mbr-section-title {
  color: #ffffff;
}
.cid-sfR4cxKIkh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-09-a-las-12.44.53-2000x1188.png");
}
.cid-sfR4cxKIkh .mbr-section-title,
.cid-sfR4cxKIkh .mbr-section-subtitle {
  color: #000000;
}
.cid-sfR4cxKIkh .mbr-section-text {
  color: #232323;
}
.cid-sfR4cxKIkh .mbr-text,
.cid-sfR4cxKIkh .typed-text,
.cid-sfR4cxKIkh .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfR4cxKIkh .btn {
  margin-left: 4px !important;
}
.cid-sfR4cxKIkh .animated-element {
  color: #ff3366;
}
.cid-sfR4cxKIkh .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfR4cxKIkh .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfR4cxKIkh .typed-text,
  .cid-sfR4cxKIkh .mbr-section-subtitle,
  .cid-sfR4cxKIkh .mbr-section-text,
  .cid-sfR4cxKIkh .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfR4cxKIkh .mbr-section-subtitle,
.cid-sfR4cxKIkh .typed-text {
  color: #006ab3;
}
.cid-sfR4cxKIkh .mbr-section-text,
.cid-sfR4cxKIkh .mbr-section-btn {
  color: #006ab3;
}
.cid-sfR4cy0r6Z {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sfR4cy0r6Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sfR4cy0r6Z .row {
  flex-direction: row-reverse;
}
.cid-sfR4cy0r6Z img {
  width: 100%;
}
.cid-sfR4cy0r6Z .mbr-text {
  color: #ffffff;
}
.cid-sfR4cybkTr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/hicube-uruguay-griferias-2000x1106.jpg");
}
.cid-sfR4cybkTr .mbr-section-title,
.cid-sfR4cybkTr .mbr-section-subtitle {
  color: #000000;
}
.cid-sfR4cybkTr .mbr-section-text {
  color: #232323;
}
.cid-sfR4cybkTr .mbr-text,
.cid-sfR4cybkTr .typed-text,
.cid-sfR4cybkTr .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfR4cybkTr .btn {
  margin-left: 4px !important;
}
.cid-sfR4cybkTr .animated-element {
  color: #e1061f;
}
.cid-sfR4cybkTr .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #e1061f;
}
.cid-sfR4cybkTr .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfR4cybkTr .typed-text,
  .cid-sfR4cybkTr .mbr-section-subtitle,
  .cid-sfR4cybkTr .mbr-section-text,
  .cid-sfR4cybkTr .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfR4cybkTr .mbr-section-text,
.cid-sfR4cybkTr .mbr-section-btn {
  color: #ffffff;
}
.cid-sfR4cybkTr .mbr-section-subtitle,
.cid-sfR4cybkTr .typed-text {
  color: #ffffff;
}
.cid-sfS2NMDZbi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/vs-qr-1000x750.jpg");
}
.cid-sfS2NMDZbi .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfS2NMDZbi .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfS2NMDZbi .text-block {
  padding-right: 5rem;
}
.cid-sfS2NMDZbi .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfS2NMDZbi .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfS2NMDZbi .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfS2NMDZbi .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfS2NMDZbi .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfS2NMDZbi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfS2NMDZbi .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfS2NMDZbi .text-block {
    padding: 0 15px;
  }
}
.cid-sfS2NMDZbi .mbr-section-title {
  color: #ffffff;
}
.cid-sfS2NMDZbi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfR4cyEzRG {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/corral-2000x893.jpg");
}
.cid-sfR4cz8mL2 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-09-a-las-13.21.01-2000x314.png");
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sfSmDV0FsN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfSmDV0FsN .nav-item:focus,
.cid-sfSmDV0FsN .nav-link:focus {
  outline: none;
}
.cid-sfSmDV0FsN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfSmDV0FsN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sfSmDV0FsN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sfSmDV0FsN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfSmDV0FsN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfSmDV0FsN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfSmDV0FsN .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sfSmDV0FsN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sfSmDV0FsN .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sfSmDV0FsN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sfSmDV0FsN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfSmDV0FsN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfSmDV0FsN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfSmDV0FsN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sfSmDV0FsN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfSmDV0FsN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfSmDV0FsN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sfSmDV0FsN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sfSmDV0FsN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfSmDV0FsN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sfSmDV0FsN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfSmDV0FsN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfSmDV0FsN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfSmDV0FsN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfSmDV0FsN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfSmDV0FsN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sfSmDV0FsN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sfSmDV0FsN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfSmDV0FsN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfSmDV0FsN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sfSmDV0FsN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfSmDV0FsN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sfSmDV0FsN .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfSmDV0FsN .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sfSmDV0FsN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfSmDV0FsN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfSmDV0FsN .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sfSmDV0FsN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfSmDV0FsN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfSmDV0FsN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfSmDV0FsN .dropdown-item.active,
.cid-sfSmDV0FsN .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sfSmDV0FsN .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sfSmDV0FsN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfSmDV0FsN .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sfSmDV0FsN .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sfSmDV0FsN .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sfSmDV0FsN .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sfSmDV0FsN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfSmDV0FsN .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sfSmDV0FsN .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sfSmDV0FsN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sfSmDV0FsN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfSmDV0FsN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfSmDV0FsN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sfSmDV0FsN .navbar-buttons {
  text-align: center;
}
.cid-sfSmDV0FsN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sfSmDV0FsN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sfSmDV0FsN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfSmDV0FsN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfSmDV0FsN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfSmDV0FsN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfSmDV0FsN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfSmDV0FsN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfSmDV0FsN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfSmDV0FsN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfSmDV0FsN .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sfSmDV0FsN a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sfSmDV0FsN .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sfSmDV0FsN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sfSmDV0FsN .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfSmDV0FsN .navbar {
    height: 77px;
  }
  .cid-sfSmDV0FsN .navbar.opened {
    height: auto;
  }
  .cid-sfSmDV0FsN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfSmDV0FsN a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sfSmDV0FsN a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sfSmDV0FsN .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sfSmDV0FsN .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sfSmDOLPBz {
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #1f2732;
}
.cid-sfSmDOLPBz .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sfSmDOLPBz .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sfSmDOLPBz .align-center {
    text-align: center;
  }
}
.cid-sfSmDOLPBz h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sfSmDOLPBz .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sfSmDOLPBz .row {
    margin: 0;
  }
}
.cid-sfSmDOLPBz .btn {
  margin-left: 0rem;
}
.cid-sg9w6OJttg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/essen2-1048x1048.jpg");
}
.cid-sg9w6OJttg .mbr-section-title,
.cid-sg9w6OJttg .mbr-section-subtitle {
  color: #000000;
}
.cid-sg9w6OJttg .mbr-section-text {
  color: #232323;
}
.cid-sg9w6OJttg .mbr-text,
.cid-sg9w6OJttg .typed-text,
.cid-sg9w6OJttg .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sg9w6OJttg .btn {
  margin-left: 4px !important;
}
.cid-sg9w6OJttg .animated-element {
  color: #ff3366;
}
.cid-sg9w6OJttg .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sg9w6OJttg .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sg9w6OJttg .typed-text,
  .cid-sg9w6OJttg .mbr-section-subtitle,
  .cid-sg9w6OJttg .mbr-section-text,
  .cid-sg9w6OJttg .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sg9tDExvXx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg9tDExvXx .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sg9tDExvXx .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sg9tDExvXx .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sg9tDExvXx .wrap-img {
  padding-bottom: 1rem;
}
.cid-sg9tDExvXx .wrap-img img {
  max-width: 100%;
}
.cid-sg9tDExvXx .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sfSmDPwYXH {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mock-up-libro-essen2-2000x1766.jpg");
}
.cid-sfSmDPwYXH .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfSmDPwYXH .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfSmDPwYXH .text-block {
  padding-right: 5rem;
}
.cid-sfSmDPwYXH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfSmDPwYXH .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfSmDPwYXH .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfSmDPwYXH .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfSmDPwYXH .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfSmDPwYXH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfSmDPwYXH .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfSmDPwYXH .text-block {
    padding: 0 15px;
  }
}
.cid-sfSmDQAmHY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cacerolas-2-1194x855.jpg");
}
.cid-sfSmDQAmHY .mbr-section-title,
.cid-sfSmDQAmHY .mbr-section-subtitle {
  color: #000000;
}
.cid-sfSmDQAmHY .mbr-section-text {
  color: #232323;
}
.cid-sfSmDQAmHY .mbr-text,
.cid-sfSmDQAmHY .typed-text,
.cid-sfSmDQAmHY .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfSmDQAmHY .btn {
  margin-left: 4px !important;
}
.cid-sfSmDQAmHY .animated-element {
  color: #ff3366;
}
.cid-sfSmDQAmHY .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfSmDQAmHY .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfSmDQAmHY .typed-text,
  .cid-sfSmDQAmHY .mbr-section-subtitle,
  .cid-sfSmDQAmHY .mbr-section-text,
  .cid-sfSmDQAmHY .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfSmDRpOJU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-09-a-las-17.18.30-2000x1135.png");
}
.cid-sfSmDRpOJU .mbr-section-title,
.cid-sfSmDRpOJU .mbr-section-subtitle {
  color: #000000;
}
.cid-sfSmDRpOJU .mbr-section-text {
  color: #232323;
}
.cid-sfSmDRpOJU .mbr-text,
.cid-sfSmDRpOJU .typed-text,
.cid-sfSmDRpOJU .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfSmDRpOJU .btn {
  margin-left: 4px !important;
}
.cid-sfSmDRpOJU .animated-element {
  color: #ff3366;
}
.cid-sfSmDRpOJU .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfSmDRpOJU .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfSmDRpOJU .typed-text,
  .cid-sfSmDRpOJU .mbr-section-subtitle,
  .cid-sfSmDRpOJU .mbr-section-text,
  .cid-sfSmDRpOJU .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfSmDRpOJU .mbr-section-text,
.cid-sfSmDRpOJU .mbr-section-btn {
  color: #005cb8;
}
.cid-sfSmDTbl4y {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/eesen-barra-2000x250.png");
}
.cid-sfSmDTB7jH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ff5d08;
}
@media (max-width: 992px) {
  .cid-sfSmDTB7jH {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-sfSmDTB7jH .text {
  padding: 0;
}
.cid-sfSmDTB7jH section {
  position: relative;
}
.cid-sfSmDTB7jH h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-sfSmDTB7jH .mbr-iconfont {
  padding: 0!important;
}
.cid-sfSmDTB7jH .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ff5d08;
}
.cid-sfSmDTB7jH .box {
  background-image: url("../../../assets/images/captura-de-pantalla-2020-10-19-a-las-21.38.25-2000x1183.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sfSmDTB7jH .icon-wrap {
  background-color: #ff5d08 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sfSmDTB7jH .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sfSmDTB7jH .icon-wrap span {
  padding-left: 8px;
}
.cid-sfSmDTB7jH .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sfSmDTB7jH .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sfSmDTB7jH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sfSmDTB7jH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sfSmDTB7jH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sfSmDTB7jH a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sfSmDTB7jH a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sfSmDTB7jH {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sfSmDTB7jH .box {
    height: 250px;
  }
  .cid-sfSmDTB7jH .row {
    padding: 1rem!important;
  }
}
.cid-sfSmDTB7jH H2 {
  text-align: left;
  color: #ffffff;
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sfW3B2gSzM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfW3B2gSzM .nav-item:focus,
.cid-sfW3B2gSzM .nav-link:focus {
  outline: none;
}
.cid-sfW3B2gSzM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfW3B2gSzM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sfW3B2gSzM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sfW3B2gSzM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfW3B2gSzM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfW3B2gSzM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfW3B2gSzM .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sfW3B2gSzM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sfW3B2gSzM .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sfW3B2gSzM .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sfW3B2gSzM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfW3B2gSzM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfW3B2gSzM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfW3B2gSzM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sfW3B2gSzM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfW3B2gSzM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfW3B2gSzM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sfW3B2gSzM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sfW3B2gSzM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfW3B2gSzM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sfW3B2gSzM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfW3B2gSzM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfW3B2gSzM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfW3B2gSzM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfW3B2gSzM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfW3B2gSzM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sfW3B2gSzM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sfW3B2gSzM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfW3B2gSzM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfW3B2gSzM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sfW3B2gSzM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfW3B2gSzM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sfW3B2gSzM .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfW3B2gSzM .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sfW3B2gSzM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfW3B2gSzM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfW3B2gSzM .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sfW3B2gSzM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfW3B2gSzM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfW3B2gSzM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfW3B2gSzM .dropdown-item.active,
.cid-sfW3B2gSzM .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sfW3B2gSzM .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sfW3B2gSzM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfW3B2gSzM .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sfW3B2gSzM .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sfW3B2gSzM .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sfW3B2gSzM .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sfW3B2gSzM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sfW3B2gSzM .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sfW3B2gSzM .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sfW3B2gSzM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sfW3B2gSzM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfW3B2gSzM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfW3B2gSzM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sfW3B2gSzM .navbar-buttons {
  text-align: center;
}
.cid-sfW3B2gSzM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sfW3B2gSzM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sfW3B2gSzM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfW3B2gSzM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfW3B2gSzM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfW3B2gSzM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfW3B2gSzM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfW3B2gSzM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfW3B2gSzM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfW3B2gSzM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfW3B2gSzM .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sfW3B2gSzM a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sfW3B2gSzM .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sfW3B2gSzM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sfW3B2gSzM .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfW3B2gSzM .navbar {
    height: 77px;
  }
  .cid-sfW3B2gSzM .navbar.opened {
    height: auto;
  }
  .cid-sfW3B2gSzM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfW3B2gSzM a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sfW3B2gSzM a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sfW3B2gSzM .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sfW3B2gSzM .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sfW3AYJoo7 {
  padding-top: 165px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/jpg-2000x1306.jpg");
}
.cid-sfW3AYJoo7 .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sfW3AYJoo7 .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sfW3AYJoo7 .align-center {
    text-align: center;
  }
}
.cid-sfW3AYJoo7 h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sfW3AYJoo7 .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sfW3AYJoo7 .row {
    margin: 0;
  }
}
.cid-sfW3AYJoo7 .btn {
  margin-left: 0rem;
}
.cid-sg9a8tQddY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-17-a-las-17.29.16-2000x960.png");
}
.cid-sg9a8tQddY .mbr-section-title,
.cid-sg9a8tQddY .mbr-section-subtitle {
  color: #000000;
}
.cid-sg9a8tQddY .mbr-section-text {
  color: #232323;
}
.cid-sg9a8tQddY .mbr-text,
.cid-sg9a8tQddY .typed-text,
.cid-sg9a8tQddY .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sg9a8tQddY .btn {
  margin-left: 4px !important;
}
.cid-sg9a8tQddY .animated-element {
  color: #ff3366;
}
.cid-sg9a8tQddY .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sg9a8tQddY .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sg9a8tQddY .typed-text,
  .cid-sg9a8tQddY .mbr-section-subtitle,
  .cid-sg9a8tQddY .mbr-section-text,
  .cid-sg9a8tQddY .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sg9821mqGo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg9821mqGo .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sg9821mqGo .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sg9821mqGo .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sg9821mqGo .wrap-img {
  padding-bottom: 1rem;
}
.cid-sg9821mqGo .wrap-img img {
  max-width: 100%;
}
.cid-sg9821mqGo .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sfW3AZe6aX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sfW3AZe6aX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfW3AZe6aX .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfW3AZe6aX .text-block {
  padding-right: 5rem;
}
.cid-sfW3AZe6aX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfW3AZe6aX .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfW3AZe6aX .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfW3AZe6aX .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfW3AZe6aX .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfW3AZe6aX .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfW3AZe6aX .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfW3AZe6aX .text-block {
    padding: 0 15px;
  }
}
.cid-sfW3AZe6aX .mbr-section-title {
  color: #272727;
}
.cid-sfW3AZKppX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-10-a-las-12.25.00-2000x584.png");
}
.cid-sfW3AZKppX .mbr-section-title,
.cid-sfW3AZKppX .mbr-section-subtitle {
  color: #000000;
}
.cid-sfW3AZKppX .mbr-section-text {
  color: #232323;
}
.cid-sfW3AZKppX .mbr-text,
.cid-sfW3AZKppX .typed-text,
.cid-sfW3AZKppX .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sfW3AZKppX .btn {
  margin-left: 4px !important;
}
.cid-sfW3AZKppX .animated-element {
  color: #ff3366;
}
.cid-sfW3AZKppX .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sfW3AZKppX .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sfW3AZKppX .typed-text,
  .cid-sfW3AZKppX .mbr-section-subtitle,
  .cid-sfW3AZKppX .mbr-section-text,
  .cid-sfW3AZKppX .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sfW3AZKppX .mbr-section-subtitle,
.cid-sfW3AZKppX .typed-text {
  color: #ff5d08;
}
.cid-sfW3B01PxJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ff5d08;
}
@media (max-width: 991px) {
  .cid-sfW3B01PxJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sfW3B01PxJ .row {
  flex-direction: row-reverse;
}
.cid-sfW3B01PxJ img {
  width: 100%;
}
.cid-sfW3B01PxJ .mbr-text {
  color: #ffffff;
}
.cid-sgDdIaDMNm {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/free-stationery-mockup-corven-2000x1500.png");
}
.cid-sgDdIaDMNm .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sgDdIaDMNm .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sgDdIaDMNm .text-block {
  padding-right: 5rem;
}
.cid-sgDdIaDMNm .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgDdIaDMNm .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sgDdIaDMNm .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sgDdIaDMNm .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sgDdIaDMNm .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sgDdIaDMNm .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sgDdIaDMNm .img-block {
    margin-bottom: 1rem;
  }
  .cid-sgDdIaDMNm .text-block {
    padding: 0 15px;
  }
}
.cid-sgDdIaDMNm .mbr-section-title {
  color: #ffffff;
}
.cid-sfXVE5f6Bd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/jpg-2000x1306.jpeg");
}
.cid-sfXVE5f6Bd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sfXVE5f6Bd .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sfXVE5f6Bd .text-block {
  padding-right: 5rem;
}
.cid-sfXVE5f6Bd .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sfXVE5f6Bd .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sfXVE5f6Bd .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sfXVE5f6Bd .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sfXVE5f6Bd .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfXVE5f6Bd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sfXVE5f6Bd .img-block {
    margin-bottom: 1rem;
  }
  .cid-sfXVE5f6Bd .text-block {
    padding: 0 15px;
  }
}
.cid-sfXVE5f6Bd .mbr-section-title {
  color: #101010;
}
.cid-sfW3B1eGqh {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-10-a-las-15.56.47-1750x346.png");
}
.cid-sfW3B1rhxD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #9b9b9b;
}
@media (max-width: 992px) {
  .cid-sfW3B1rhxD {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-sfW3B1rhxD .text {
  padding: 0;
}
.cid-sfW3B1rhxD section {
  position: relative;
}
.cid-sfW3B1rhxD h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-sfW3B1rhxD .mbr-iconfont {
  padding: 0!important;
}
.cid-sfW3B1rhxD .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ff5100;
}
.cid-sfW3B1rhxD .box {
  background-image: url("../../../assets/images/captura-de-pantalla-2020-10-19-a-las-21.46.22-1364x674.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sfW3B1rhxD .icon-wrap {
  background-color: #ff5100 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sfW3B1rhxD .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sfW3B1rhxD .icon-wrap span {
  padding-left: 8px;
}
.cid-sfW3B1rhxD .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sfW3B1rhxD .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sfW3B1rhxD .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sfW3B1rhxD .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sfW3B1rhxD .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sfW3B1rhxD a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sfW3B1rhxD a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sfW3B1rhxD {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sfW3B1rhxD .box {
    height: 250px;
  }
  .cid-sfW3B1rhxD .row {
    padding: 1rem!important;
  }
}
.cid-sfW3B1rhxD H2 {
  text-align: left;
  color: #ffffff;
}
.cid-sgCsqtFxQU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sgCsqtFxQU .wrapper {
  overflow: hidden;
}
.cid-sgCsqtFxQU .wrapper img {
  transition: all .5s;
}
.cid-sgCsqtFxQU .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sgCsqtFxQU .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-sgCsqtFxQU .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 25rem;
}
.cid-sgCsqtFxQU .wrapper .mbr-overlay {
  background: #232323;
  opacity: 0.1;
  border-top-right-radius: 25%;
  z-index: 1;
}
.cid-sgCsqtFxQU .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgCsqtFxQU .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-sgCsqtFxQU .popup-btn .mbr-overlay {
  border-top-right-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-sgCsqtFxQU .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sgf2veinRa .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sgf2veinRa .nav-item:focus,
.cid-sgf2veinRa .nav-link:focus {
  outline: none;
}
.cid-sgf2veinRa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sgf2veinRa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sgf2veinRa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sgf2veinRa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sgf2veinRa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgf2veinRa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgf2veinRa .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sgf2veinRa .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sgf2veinRa .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sgf2veinRa .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sgf2veinRa .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgf2veinRa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgf2veinRa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgf2veinRa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sgf2veinRa .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgf2veinRa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgf2veinRa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgf2veinRa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sgf2veinRa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgf2veinRa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sgf2veinRa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sgf2veinRa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgf2veinRa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgf2veinRa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgf2veinRa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgf2veinRa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgf2veinRa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sgf2veinRa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sgf2veinRa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgf2veinRa .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sgf2veinRa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sgf2veinRa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sgf2veinRa .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sgf2veinRa .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sgf2veinRa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sgf2veinRa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgf2veinRa .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sgf2veinRa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgf2veinRa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgf2veinRa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgf2veinRa .dropdown-item.active,
.cid-sgf2veinRa .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sgf2veinRa .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sgf2veinRa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sgf2veinRa .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sgf2veinRa .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sgf2veinRa .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sgf2veinRa .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sgf2veinRa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sgf2veinRa .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sgf2veinRa .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sgf2veinRa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sgf2veinRa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgf2veinRa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgf2veinRa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgf2veinRa .navbar-buttons {
  text-align: center;
}
.cid-sgf2veinRa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sgf2veinRa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgf2veinRa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sgf2veinRa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sgf2veinRa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sgf2veinRa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sgf2veinRa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgf2veinRa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sgf2veinRa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sgf2veinRa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgf2veinRa .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sgf2veinRa a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sgf2veinRa .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sgf2veinRa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sgf2veinRa .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgf2veinRa .navbar {
    height: 77px;
  }
  .cid-sgf2veinRa .navbar.opened {
    height: auto;
  }
  .cid-sgf2veinRa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sgf2veinRa a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sgf2veinRa a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sgf2veinRa .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sgf2veinRa .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sgf2vaT0Pt {
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #1f2732;
}
.cid-sgf2vaT0Pt .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sgf2vaT0Pt .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sgf2vaT0Pt .align-center {
    text-align: center;
  }
}
.cid-sgf2vaT0Pt h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sgf2vaT0Pt .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sgf2vaT0Pt .row {
    margin: 0;
  }
}
.cid-sgf2vaT0Pt .btn {
  margin-left: 0rem;
}
.cid-sgf2vbjkvq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/kawas-fondo-2000x1002.jpg");
}
.cid-sgf2vbjkvq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sgf2vbjkvq .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sgf2vbjkvq .text-block {
  padding-right: 5rem;
}
.cid-sgf2vbjkvq .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgf2vbjkvq .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sgf2vbjkvq .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sgf2vbjkvq .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sgf2vbjkvq .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sgf2vbjkvq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sgf2vbjkvq .img-block {
    margin-bottom: 1rem;
  }
  .cid-sgf2vbjkvq .text-block {
    padding: 0 15px;
  }
}
.cid-sgf2vbM67e {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgf2vbM67e .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sgf2vbM67e .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sgf2vbM67e .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sgf2vbM67e .wrap-img {
  padding-bottom: 1rem;
}
.cid-sgf2vbM67e .wrap-img img {
  max-width: 100%;
}
.cid-sgf2vbM67e .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sgf2vcdfkH {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/magazine-mockup-kawa-abierto-2000x1333.png");
}
.cid-sgf2vcdfkH .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sgf2vcdfkH .text-block {
  padding-right: 15px !important;
  padding-left: 5rem;
}
.cid-sgf2vcdfkH .text-block {
  padding-right: 5rem;
}
.cid-sgf2vcdfkH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sgf2vcdfkH .underline .line {
  width: 5rem;
  height: 3px;
  background: #efefef;
  display: inline-block;
}
.cid-sgf2vcdfkH .social-media ul li {
  margin-left: 1rem;
  margin: 0;
  margin-right: 1rem;
}
.cid-sgf2vcdfkH .social-media ul li .mbr-iconfont {
  color: #000000;
}
.cid-sgf2vcdfkH .social-media ul li .mbr-iconfont:hover {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sgf2vcdfkH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sgf2vcdfkH .img-block {
    margin-bottom: 1rem;
  }
  .cid-sgf2vcdfkH .text-block {
    padding: 0 15px;
  }
}
.cid-sgf2vcQOko {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-13-a-las-19.24.13-2000x660.png");
}
.cid-sgf2vcQOko .mbr-section-title,
.cid-sgf2vcQOko .mbr-section-subtitle {
  color: #000000;
}
.cid-sgf2vcQOko .mbr-section-text {
  color: #232323;
}
.cid-sgf2vcQOko .mbr-text,
.cid-sgf2vcQOko .typed-text,
.cid-sgf2vcQOko .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sgf2vcQOko .btn {
  margin-left: 4px !important;
}
.cid-sgf2vcQOko .animated-element {
  color: #ff3366;
}
.cid-sgf2vcQOko .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sgf2vcQOko .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sgf2vcQOko .typed-text,
  .cid-sgf2vcQOko .mbr-section-subtitle,
  .cid-sgf2vcQOko .mbr-section-text,
  .cid-sgf2vcQOko .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sgf2vd4LCQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #76bc21;
}
.cid-sgf2vd4LCQ .mbr-section-title,
.cid-sgf2vd4LCQ .mbr-section-subtitle {
  color: #000000;
}
.cid-sgf2vd4LCQ .mbr-section-text {
  color: #232323;
}
.cid-sgf2vd4LCQ .mbr-text,
.cid-sgf2vd4LCQ .typed-text,
.cid-sgf2vd4LCQ .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sgf2vd4LCQ .btn {
  margin-left: 4px !important;
}
.cid-sgf2vd4LCQ .animated-element {
  color: #ff3366;
}
.cid-sgf2vd4LCQ .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-sgf2vd4LCQ .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sgf2vd4LCQ .typed-text,
  .cid-sgf2vd4LCQ .mbr-section-subtitle,
  .cid-sgf2vd4LCQ .mbr-section-text,
  .cid-sgf2vd4LCQ .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sgf2vd4LCQ .mbr-section-text,
.cid-sgf2vd4LCQ .mbr-section-btn {
  color: #ffffff;
}
.cid-sgf2vdkane {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sgf2vdkane {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-sgf2vdkane .text {
  padding: 0;
}
.cid-sgf2vdkane section {
  position: relative;
}
.cid-sgf2vdkane h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-sgf2vdkane .mbr-iconfont {
  padding: 0!important;
}
.cid-sgf2vdkane .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #76bc21;
}
.cid-sgf2vdkane .box {
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-13-a-las-19.53.26-2000x977.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sgf2vdkane .icon-wrap {
  background-color: #76bc21 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sgf2vdkane .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sgf2vdkane .icon-wrap span {
  padding-left: 8px;
}
.cid-sgf2vdkane .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sgf2vdkane .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sgf2vdkane .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sgf2vdkane .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sgf2vdkane .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sgf2vdkane a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sgf2vdkane a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sgf2vdkane {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sgf2vdkane .box {
    height: 250px;
  }
  .cid-sgf2vdkane .row {
    padding: 1rem!important;
  }
}
.cid-sgf2vdkane H2 {
  text-align: left;
  color: #76bc21;
}
.cid-sgCGHW5jzP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sgCGHW5jzP .wrapper {
  overflow: hidden;
}
.cid-sgCGHW5jzP .wrapper img {
  transition: all .5s;
}
.cid-sgCGHW5jzP .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sgCGHW5jzP .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-sgCGHW5jzP .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 25rem;
}
.cid-sgCGHW5jzP .wrapper .mbr-overlay {
  background: #232323;
  opacity: 0.1;
  border-top-right-radius: 25%;
  z-index: 1;
}
.cid-sgCGHW5jzP .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgCGHW5jzP .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-sgCGHW5jzP .popup-btn .mbr-overlay {
  border-top-right-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-sgCGHW5jzP .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-sgf2vdz0KA {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/kawa-barra-de-fotos-2000x294.png");
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sebp6tzNtO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sebp6tzNtO .nav-item:focus,
.cid-sebp6tzNtO .nav-link:focus {
  outline: none;
}
.cid-sebp6tzNtO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sebp6tzNtO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sebp6tzNtO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-sebp6tzNtO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sebp6tzNtO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sebp6tzNtO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sebp6tzNtO .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-sebp6tzNtO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-sebp6tzNtO .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-sebp6tzNtO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sebp6tzNtO .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sebp6tzNtO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sebp6tzNtO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sebp6tzNtO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sebp6tzNtO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sebp6tzNtO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sebp6tzNtO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sebp6tzNtO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sebp6tzNtO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sebp6tzNtO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sebp6tzNtO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sebp6tzNtO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sebp6tzNtO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sebp6tzNtO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sebp6tzNtO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sebp6tzNtO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sebp6tzNtO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sebp6tzNtO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sebp6tzNtO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sebp6tzNtO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sebp6tzNtO .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sebp6tzNtO .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sebp6tzNtO .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sebp6tzNtO .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-sebp6tzNtO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sebp6tzNtO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sebp6tzNtO .navbar-short {
  padding: 1rem 0 !important;
}
.cid-sebp6tzNtO .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sebp6tzNtO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sebp6tzNtO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sebp6tzNtO .dropdown-item.active,
.cid-sebp6tzNtO .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-sebp6tzNtO .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-sebp6tzNtO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sebp6tzNtO .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sebp6tzNtO .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-sebp6tzNtO .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sebp6tzNtO .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-sebp6tzNtO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-sebp6tzNtO .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-sebp6tzNtO .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-sebp6tzNtO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-sebp6tzNtO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sebp6tzNtO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sebp6tzNtO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sebp6tzNtO .navbar-buttons {
  text-align: center;
}
.cid-sebp6tzNtO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sebp6tzNtO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sebp6tzNtO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sebp6tzNtO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sebp6tzNtO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sebp6tzNtO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sebp6tzNtO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sebp6tzNtO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sebp6tzNtO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sebp6tzNtO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sebp6tzNtO .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-sebp6tzNtO a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-sebp6tzNtO .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sebp6tzNtO .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sebp6tzNtO .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sebp6tzNtO .navbar {
    height: 77px;
  }
  .cid-sebp6tzNtO .navbar.opened {
    height: auto;
  }
  .cid-sebp6tzNtO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sebp6tzNtO a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-sebp6tzNtO a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-sebp6tzNtO .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-sebp6tzNtO .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sebsSKdeuH {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/local-qr-1920x1279.png");
}
.cid-sebsSKdeuH .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sebsSKdeuH .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sebsSKdeuH .align-center {
    text-align: center;
  }
}
.cid-sebsSKdeuH h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sebsSKdeuH .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sebsSKdeuH .row {
    margin: 0;
  }
}
.cid-sebsSKdeuH .btn {
  margin-left: 0rem;
}
.cid-sebtV1V3Us {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sebtV1V3Us .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sebtV1V3Us .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-sebtV1V3Us .link {
  margin: 0;
}
.cid-sebtV1V3Us .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sebtV1V3Us .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sebtV1V3Us .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sebtV1V3Us .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-sebtV1V3Us .card:hover .card-title {
  color: #4f5d70;
}
.cid-sebtV1V3Us .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sebtV1V3Us .card {
    padding: 0;
  }
  .cid-sebtV1V3Us .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-sebtV1V3Us .card-title {
    margin-top: 2rem;
  }
  .cid-sebtV1V3Us .mbr-section-title,
  .cid-sebtV1V3Us .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sebtV1V3Us .row {
    margin: 0;
  }
}
.cid-sebtV1V3Us .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-sebtV1V3Us .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sebtV1V3Us .mbr-section-title {
  font-weight: 800;
}
.cid-sebtV1V3Us h2 {
  margin-bottom: 0;
}
.cid-sebtV1V3Us .title-block {
  margin-bottom: 3rem;
}
.cid-sebtV1V3Us .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-sebtV1V3Us .card-box {
    margin-left: 1.5rem;
  }
}
.cid-sebJYR319U {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sebJYR319U .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sebJYR319U .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-sebJYR319U .link {
  margin: 0;
}
.cid-sebJYR319U .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sebJYR319U .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sebJYR319U .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sebJYR319U .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-sebJYR319U .card:hover .card-title {
  color: #4f5d70;
}
.cid-sebJYR319U .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sebJYR319U .card {
    padding: 0;
  }
  .cid-sebJYR319U .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-sebJYR319U .card-title {
    margin-top: 2rem;
  }
  .cid-sebJYR319U .mbr-section-title,
  .cid-sebJYR319U .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sebJYR319U .row {
    margin: 0;
  }
}
.cid-sebJYR319U .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-sebJYR319U .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sebJYR319U .mbr-section-title {
  font-weight: 800;
}
.cid-sebJYR319U h2 {
  margin-bottom: 0;
}
.cid-sebJYR319U .title-block {
  margin-bottom: 3rem;
}
.cid-sebJYR319U .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-sebJYR319U .card-box {
    margin-left: 1.5rem;
  }
}
.cid-sm1vwyCPjr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #39485d, #39485d);
}
.cid-sm1vwyCPjr a {
  text-align: center;
}
.cid-sm1vwyCPjr p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sm1vwyCPjr span {
  font-size: 2rem;
}
.cid-sm1vwyCPjr .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sm1vwyCPjr .socicon-twitter {
  color: #4da7de;
}
.cid-sm1vwyCPjr .socicon-facebook {
  color: #3e5b98;
}
.cid-sm1vwyCPjr .socicon-googleplus {
  color: #dd4b39;
}
.cid-sm1vwyCPjr .socicon-instagram {
  color: #3f729b;
}
.cid-sm1vwyCPjr .social-list a:focus {
  text-decoration: none;
}
.cid-sm1vwyCPjr .text-copyright {
  width: 100%;
}
.cid-sm1vwyCPjr .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sm1vwyCPjr .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sm1vwyCPjr .logo-footer {
  line-height: normal;
}
.cid-sm1vwyCPjr .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm1vwyCPjr .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sm1vwyCPjr .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm1vwyCPjr .media-container-row a {
  margin: 0 1rem;
}
.cid-sm1vwyCPjr P {
  color: #ffffff;
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-se4VRLvoa1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se4VRLvoa1 .nav-item:focus,
.cid-se4VRLvoa1 .nav-link:focus {
  outline: none;
}
.cid-se4VRLvoa1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se4VRLvoa1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se4VRLvoa1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-se4VRLvoa1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se4VRLvoa1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se4VRLvoa1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se4VRLvoa1 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-se4VRLvoa1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-se4VRLvoa1 .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-se4VRLvoa1 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-se4VRLvoa1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-se4VRLvoa1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se4VRLvoa1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se4VRLvoa1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-se4VRLvoa1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se4VRLvoa1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se4VRLvoa1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se4VRLvoa1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se4VRLvoa1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se4VRLvoa1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se4VRLvoa1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se4VRLvoa1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se4VRLvoa1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se4VRLvoa1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se4VRLvoa1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se4VRLvoa1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se4VRLvoa1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se4VRLvoa1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se4VRLvoa1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se4VRLvoa1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se4VRLvoa1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-se4VRLvoa1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se4VRLvoa1 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se4VRLvoa1 .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-se4VRLvoa1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se4VRLvoa1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se4VRLvoa1 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-se4VRLvoa1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se4VRLvoa1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se4VRLvoa1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se4VRLvoa1 .dropdown-item.active,
.cid-se4VRLvoa1 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-se4VRLvoa1 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-se4VRLvoa1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se4VRLvoa1 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-se4VRLvoa1 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-se4VRLvoa1 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-se4VRLvoa1 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-se4VRLvoa1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se4VRLvoa1 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-se4VRLvoa1 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-se4VRLvoa1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-se4VRLvoa1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se4VRLvoa1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se4VRLvoa1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se4VRLvoa1 .navbar-buttons {
  text-align: center;
}
.cid-se4VRLvoa1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se4VRLvoa1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se4VRLvoa1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se4VRLvoa1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se4VRLvoa1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se4VRLvoa1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se4VRLvoa1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se4VRLvoa1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se4VRLvoa1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se4VRLvoa1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se4VRLvoa1 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-se4VRLvoa1 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-se4VRLvoa1 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-se4VRLvoa1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-se4VRLvoa1 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se4VRLvoa1 .navbar {
    height: 77px;
  }
  .cid-se4VRLvoa1 .navbar.opened {
    height: auto;
  }
  .cid-se4VRLvoa1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se4VRLvoa1 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-se4VRLvoa1 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-se4VRLvoa1 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-se4VRLvoa1 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sefNf4ou5v {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/fondo-redes-1620x1080.jpg");
}
.cid-sefNf4ou5v .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sefNf4ou5v .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sefNf4ou5v .align-center {
    text-align: center;
  }
}
.cid-sefNf4ou5v h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sefNf4ou5v .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sefNf4ou5v .row {
    margin: 0;
  }
}
.cid-sefNf4ou5v .btn {
  margin-left: 0rem;
}
.cid-sefNhtlRSm {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sefNhtlRSm .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefNhtlRSm .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-sefNhtlRSm .link {
  margin: 0;
}
.cid-sefNhtlRSm .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefNhtlRSm .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefNhtlRSm .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sefNhtlRSm .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-sefNhtlRSm .card:hover .card-title {
  color: #4f5d70;
}
.cid-sefNhtlRSm .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sefNhtlRSm .card {
    padding: 0;
  }
  .cid-sefNhtlRSm .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-sefNhtlRSm .card-title {
    margin-top: 2rem;
  }
  .cid-sefNhtlRSm .mbr-section-title,
  .cid-sefNhtlRSm .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sefNhtlRSm .row {
    margin: 0;
  }
}
.cid-sefNhtlRSm .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-sefNhtlRSm .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sefNhtlRSm .mbr-section-title {
  font-weight: 800;
}
.cid-sefNhtlRSm h2 {
  margin-bottom: 0;
}
.cid-sefNhtlRSm .title-block {
  margin-bottom: 3rem;
}
.cid-sefNhtlRSm .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-sefNhtlRSm .card-box {
    margin-left: 1.5rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-se575tlLAD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se575tlLAD .nav-item:focus,
.cid-se575tlLAD .nav-link:focus {
  outline: none;
}
.cid-se575tlLAD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se575tlLAD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se575tlLAD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-se575tlLAD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se575tlLAD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se575tlLAD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se575tlLAD .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-se575tlLAD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-se575tlLAD .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-se575tlLAD .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-se575tlLAD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-se575tlLAD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se575tlLAD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se575tlLAD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-se575tlLAD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se575tlLAD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se575tlLAD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se575tlLAD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se575tlLAD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se575tlLAD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se575tlLAD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se575tlLAD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se575tlLAD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se575tlLAD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se575tlLAD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se575tlLAD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se575tlLAD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se575tlLAD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se575tlLAD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se575tlLAD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se575tlLAD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-se575tlLAD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se575tlLAD .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se575tlLAD .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-se575tlLAD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se575tlLAD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se575tlLAD .navbar-short {
  padding: 1rem 0 !important;
}
.cid-se575tlLAD .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se575tlLAD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se575tlLAD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se575tlLAD .dropdown-item.active,
.cid-se575tlLAD .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-se575tlLAD .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-se575tlLAD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se575tlLAD .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-se575tlLAD .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-se575tlLAD .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-se575tlLAD .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-se575tlLAD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se575tlLAD .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-se575tlLAD .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-se575tlLAD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-se575tlLAD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se575tlLAD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se575tlLAD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se575tlLAD .navbar-buttons {
  text-align: center;
}
.cid-se575tlLAD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se575tlLAD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se575tlLAD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se575tlLAD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se575tlLAD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se575tlLAD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se575tlLAD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se575tlLAD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se575tlLAD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se575tlLAD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se575tlLAD .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-se575tlLAD a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-se575tlLAD .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-se575tlLAD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-se575tlLAD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se575tlLAD .navbar {
    height: 77px;
  }
  .cid-se575tlLAD .navbar.opened {
    height: auto;
  }
  .cid-se575tlLAD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se575tlLAD a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-se575tlLAD a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-se575tlLAD .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-se575tlLAD .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-seg3Gs77gn {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-seg3Gs77gn .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-seg3Gs77gn .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-seg3Gs77gn .align-center {
    text-align: center;
  }
}
.cid-seg3Gs77gn h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-seg3Gs77gn .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-seg3Gs77gn .row {
    margin: 0;
  }
}
.cid-seg3Gs77gn .btn {
  margin-left: 0rem;
}
.cid-seg3IwwcKb {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-seg3IwwcKb .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg3IwwcKb .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-seg3IwwcKb .link {
  margin: 0;
}
.cid-seg3IwwcKb .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg3IwwcKb .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-seg3IwwcKb .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-seg3IwwcKb .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-seg3IwwcKb .card:hover .card-title {
  color: #4f5d70;
}
.cid-seg3IwwcKb .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-seg3IwwcKb .card {
    padding: 0;
  }
  .cid-seg3IwwcKb .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-seg3IwwcKb .card-title {
    margin-top: 2rem;
  }
  .cid-seg3IwwcKb .mbr-section-title,
  .cid-seg3IwwcKb .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-seg3IwwcKb .row {
    margin: 0;
  }
}
.cid-seg3IwwcKb .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-seg3IwwcKb .mbr-section-subtitle {
  color: #e9204f;
}
.cid-seg3IwwcKb .mbr-section-title {
  font-weight: 800;
}
.cid-seg3IwwcKb h2 {
  margin-bottom: 0;
}
.cid-seg3IwwcKb .title-block {
  margin-bottom: 3rem;
}
.cid-seg3IwwcKb .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-seg3IwwcKb .card-box {
    margin-left: 1.5rem;
  }
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-se3WyWWI71 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se3WyWWI71 .nav-item:focus,
.cid-se3WyWWI71 .nav-link:focus {
  outline: none;
}
.cid-se3WyWWI71 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se3WyWWI71 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se3WyWWI71 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-se3WyWWI71 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se3WyWWI71 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se3WyWWI71 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se3WyWWI71 .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-se3WyWWI71 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #12161d;
  background: none;
}
.cid-se3WyWWI71 .navbar.opened {
  transition: all .3s;
  background: #12161d !important;
}
.cid-se3WyWWI71 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-se3WyWWI71 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-se3WyWWI71 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se3WyWWI71 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se3WyWWI71 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-se3WyWWI71 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se3WyWWI71 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se3WyWWI71 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se3WyWWI71 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se3WyWWI71 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se3WyWWI71 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se3WyWWI71 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se3WyWWI71 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se3WyWWI71 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se3WyWWI71 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se3WyWWI71 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se3WyWWI71 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se3WyWWI71 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se3WyWWI71 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se3WyWWI71 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se3WyWWI71 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se3WyWWI71 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-se3WyWWI71 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se3WyWWI71 .navbar .icons-menu {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se3WyWWI71 .navbar.navbar-short {
  background: #12161d !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-se3WyWWI71 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se3WyWWI71 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se3WyWWI71 .navbar-short {
  padding: 1rem 0 !important;
}
.cid-se3WyWWI71 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se3WyWWI71 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se3WyWWI71 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se3WyWWI71 .dropdown-item.active,
.cid-se3WyWWI71 .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-se3WyWWI71 .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-se3WyWWI71 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se3WyWWI71 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-se3WyWWI71 .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-se3WyWWI71 .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-se3WyWWI71 .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-se3WyWWI71 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-se3WyWWI71 .nav-link {
    margin: 1rem 1.25rem;
  }
  .cid-se3WyWWI71 .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-se3WyWWI71 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #12161d;
}
.cid-se3WyWWI71 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se3WyWWI71 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se3WyWWI71 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se3WyWWI71 .navbar-buttons {
  text-align: center;
}
.cid-se3WyWWI71 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se3WyWWI71 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se3WyWWI71 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se3WyWWI71 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se3WyWWI71 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se3WyWWI71 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se3WyWWI71 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3WyWWI71 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se3WyWWI71 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se3WyWWI71 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se3WyWWI71 .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-se3WyWWI71 a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-se3WyWWI71 .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-se3WyWWI71 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-se3WyWWI71 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se3WyWWI71 .navbar {
    height: 77px;
  }
  .cid-se3WyWWI71 .navbar.opened {
    height: auto;
  }
  .cid-se3WyWWI71 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se3WyWWI71 a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-se3WyWWI71 a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}
.cid-se3WyWWI71 .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-se3WyWWI71 .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-sefw5YCK0Z {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-sefw5YCK0Z .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-sefw5YCK0Z .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-sefw5YCK0Z .align-center {
    text-align: center;
  }
}
.cid-sefw5YCK0Z h3 {
  color: #908F90;
  margin-bottom: 2.3rem;
}
.cid-sefw5YCK0Z .mbr-section-btn {
  margin-top: 4rem;
}
@media (min-width: 767px) {
  .cid-sefw5YCK0Z .row {
    margin: 0;
  }
}
.cid-sefw5YCK0Z .btn {
  margin-left: 0rem;
}
.cid-sefwaPQUH0 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sefwaPQUH0 .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefwaPQUH0 .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-sefwaPQUH0 .link {
  margin: 0;
}
.cid-sefwaPQUH0 .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefwaPQUH0 .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefwaPQUH0 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sefwaPQUH0 .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-sefwaPQUH0 .card:hover .card-title {
  color: #4f5d70;
}
.cid-sefwaPQUH0 .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sefwaPQUH0 .card {
    padding: 0;
  }
  .cid-sefwaPQUH0 .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-sefwaPQUH0 .card-title {
    margin-top: 2rem;
  }
  .cid-sefwaPQUH0 .mbr-section-title,
  .cid-sefwaPQUH0 .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sefwaPQUH0 .row {
    margin: 0;
  }
}
.cid-sefwaPQUH0 .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-sefwaPQUH0 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sefwaPQUH0 .mbr-section-title {
  font-weight: 800;
}
.cid-sefwaPQUH0 h2 {
  margin-bottom: 0;
}
.cid-sefwaPQUH0 .title-block {
  margin-bottom: 3rem;
}
.cid-sefwaPQUH0 .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-sefwaPQUH0 .card-box {
    margin-left: 1.5rem;
  }
}
.cid-sefwbu78KJ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sefwbu78KJ .mbr-iconfont-1 {
  color: #e9204f;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefwbu78KJ .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-sefwbu78KJ .link {
  margin: 0;
}
.cid-sefwbu78KJ .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefwbu78KJ .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sefwbu78KJ .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sefwbu78KJ .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-sefwbu78KJ .card:hover .card-title {
  color: #4f5d70;
}
.cid-sefwbu78KJ .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sefwbu78KJ .card {
    padding: 0;
  }
  .cid-sefwbu78KJ .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-sefwbu78KJ .card-title {
    margin-top: 2rem;
  }
  .cid-sefwbu78KJ .mbr-section-title,
  .cid-sefwbu78KJ .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-sefwbu78KJ .row {
    margin: 0;
  }
}
.cid-sefwbu78KJ .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-sefwbu78KJ .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sefwbu78KJ .mbr-section-title {
  font-weight: 800;
}
.cid-sefwbu78KJ h2 {
  margin-bottom: 0;
}
.cid-sefwbu78KJ .title-block {
  margin-bottom: 3rem;
}
.cid-sefwbu78KJ .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-sefwbu78KJ .card-box {
    margin-left: 1.5rem;
  }
}
.cid-sm1vFaL7X4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #39485d, #39485d);
}
.cid-sm1vFaL7X4 a {
  text-align: center;
}
.cid-sm1vFaL7X4 p {
  color: #0a0a0a;
  text-align: center;
}
.cid-sm1vFaL7X4 span {
  font-size: 2rem;
}
.cid-sm1vFaL7X4 .mbr-iconfont-social {
  font-size: 20px;
  width: 44px;
  padding-top: 6px;
  display: inline-block;
  line-height: 38px;
  border-radius: 50%;
}
.cid-sm1vFaL7X4 .socicon-twitter {
  color: #4da7de;
}
.cid-sm1vFaL7X4 .socicon-facebook {
  color: #3e5b98;
}
.cid-sm1vFaL7X4 .socicon-googleplus {
  color: #dd4b39;
}
.cid-sm1vFaL7X4 .socicon-instagram {
  color: #3f729b;
}
.cid-sm1vFaL7X4 .social-list a:focus {
  text-decoration: none;
}
.cid-sm1vFaL7X4 .text-copyright {
  width: 100%;
}
.cid-sm1vFaL7X4 .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-sm1vFaL7X4 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sm1vFaL7X4 .logo-footer {
  line-height: normal;
}
.cid-sm1vFaL7X4 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm1vFaL7X4 .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sm1vFaL7X4 .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sm1vFaL7X4 .media-container-row a {
  margin: 0 1rem;
}
.cid-sm1vFaL7X4 P {
  color: #ffffff;
}
.cid-snduWs9u6z {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/captura-de-pantalla-2020-11-16-a-las-17.51.22-2000x1209.png");
}
.cid-snduWs9u6z .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snduWs9u6z .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-snduMZ7VtH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background16-1.jpg");
}
.cid-snduMZ7VtH .mbr-overlay {
  background-color: #4f4943;
  opacity: 0.5;
}
.cid-snduMZ7VtH textarea {
  min-height: 150px;
}
.cid-snduMZ7VtH .form-col {
  background: #39485d;
  padding: 3rem 1rem;
}
.cid-snduMZ7VtH .form-wrap {
  max-width: 520px;
  margin: auto;
}
.cid-snduMZ7VtH .text-wrap {
  max-width: 400px;
  border: 2px solid #ffffff;
  padding: 3rem;
  margin: 4rem auto!important;
}
@media (max-width: 992px) {
  .cid-snduMZ7VtH .form-wrap {
    max-width: 690px;
  }
  .cid-snduMZ7VtH .md-pb {
    padding-bottom: 3rem;
  }
  .cid-snduMZ7VtH .text-wrap {
    max-width: 690px;
  }
}
.cid-snduMZ7VtH .input-group-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-snduMZ7VtH .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #149dcc;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-snduMZ7VtH H2 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-snduMZ7VtH .col-auto {
    margin: auto;
  }
}
.cid-snduMZ7VtH H3 {
  color: #ffffff;
}
.cid-snduMZ7VtH H4 {
  color: #ffffff;
}
.cid-tV2qqQLCjM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7e7e7e;
}
.cid-tV2qqQLCjM .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tV2qqQLCjM .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tV2qqQLCjM .row {
    text-align: center;
  }
  .cid-tV2qqQLCjM .row > div {
    margin: auto;
  }
  .cid-tV2qqQLCjM .social-row {
    justify-content: center;
  }
}
.cid-tV2qqQLCjM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tV2qqQLCjM .list {
  list-style: none;
  padding-left: 0;
  color: #f3f3f3;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV2qqQLCjM .list {
    margin-bottom: 0rem;
  }
}
.cid-tV2qqQLCjM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tV2qqQLCjM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tV2qqQLCjM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tV2qqQLCjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV2qqQLCjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
