@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);





body {
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.62rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.392rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.36rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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.696rem;
    font-size: calc( 2.267rem + (4.62 - 2.267) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.267rem + (4.62 - 2.267) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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 {
  font-weight: 600!important;
  border-width: 2px;
  font-style: normal;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: -webkit-inline-flex;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.6rem 2.2rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #e99a1f !important;
}
.bg-success {
  background-color: #f1894c !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #36404c !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e99a1f !important;
  border-color: #e99a1f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #e99a1f !important;
  background-color: transparent !important;
  border-color: #e99a1f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ab6f11 !important;
  border-color: #ab6f11 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f1894c !important;
  border-color: #f1894c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #f1894c !important;
  background-color: transparent !important;
  border-color: #f1894c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #df5d11 !important;
  border-color: #df5d11 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #82786e !important;
  background-color: transparent !important;
  border-color: #82786e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1894c !important;
  border-color: #f1894c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #f1894c !important;
  background-color: transparent !important;
  border-color: #f1894c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #df5d11 !important;
  border-color: #df5d11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #36404c !important;
  border-color: #36404c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #36404c !important;
  background-color: transparent !important;
  border-color: #36404c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #161a1f !important;
  border-color: #161a1f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #b1a374 !important;
  background-color: transparent !important;
  border-color: #b1a374 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !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: #ffffff !important;
  background-color: transparent !important;
  border-color: #ffffff !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: #333333 !important;
  background-color: transparent !important;
  border-color: #333333 !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: #945f0e;
  color: #945f0e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #e99a1f;
  border-color: #e99a1f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e99a1f !important;
  border-color: #e99a1f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #c75410;
  color: #c75410;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #f1894c;
  border-color: #f1894c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f1894c !important;
  border-color: #f1894c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #c75410;
  color: #c75410;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #f1894c;
  border-color: #f1894c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f1894c !important;
  border-color: #f1894c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0c0e10;
  color: #0c0e10;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #36404c;
  border-color: #36404c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #36404c !important;
  border-color: #36404c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !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: #e99a1f !important;
}
.text-secondary {
  color: #f1894c !important;
}
.text-success {
  color: #f1894c !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #36404c !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #f1894c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #c75410 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #f1894c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #f1894c !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f1894c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #f1894c !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #f1894c !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #f1894c !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #36404c;
}
.alert-danger {
  background-color: #b1a374;
}
.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: #e99a1f;
  border-color: #e99a1f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #e99a1f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbeed9;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a7b3c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #ffffff;
  box-shadow: none;
  color: #767676;
  border: 3px solid #ebeced;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 46px;
  padding: 0.5rem 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
.form-control:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #e99a1f;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
  -webkit-justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #e99a1f;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #e99a1f;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #e99a1f;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #e99a1f;
}
/* Headers*/
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@media (min-width: 576px) {
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
.navbar-toggler {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  -webkit-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.navbar-toggler-left {
  position: absolute;
  left: 1rem;
}
.navbar-toggler-right {
  position: absolute;
  right: 1rem;
}
@media (max-width: 575px) {
  .navbar-toggleable .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-toggleable {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-sm > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-toggleable-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-sm > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-collapse {
    display: none;
    width: 100%;
  }
  .navbar-toggleable-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-md > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-toggleable-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-md > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navbar-toggleable-lg .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-lg > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-toggleable-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-lg > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-lg .navbar-toggler {
    display: none;
  }
}
.navbar-toggleable-xl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-toggleable-xl > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-toggleable-xl .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.navbar-toggleable-xl .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}
.navbar-toggleable-xl > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-collapse {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
}
.navbar-toggleable-xl .navbar-toggler {
  display: none;
}
.card-img {
  width: auto;
}
.menu .navbar.collapsed:not(.beta-menu) {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto!important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e99a1f;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #ffffff;
  border: 3px solid #ebeced;
}
.jq-number__spin:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e99a1f;
  border-bottom-color: #e99a1f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #e99a1f !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: #f1894c !important;
  box-shadow: none !important;
}
.cid-stPlLbJpqz .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPlLbJpqz .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPlLbJpqz .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPlLbJpqz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlLbJpqz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPlLbJpqz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPlLbJpqz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPlLbJpqz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPlLbJpqz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPlLbJpqz .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPlLbJpqz .dropdown-item {
  padding: 0;
}
.cid-stPlLbJpqz .dropdown-item,
.cid-stPlLbJpqz .nav-link,
.cid-stPlLbJpqz .brand-name {
  font-style: normal;
}
.cid-stPlLbJpqz .dropdown-item:hover,
.cid-stPlLbJpqz .nav-link:hover,
.cid-stPlLbJpqz .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPlLbJpqz .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPlLbJpqz .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPlLbJpqz .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPlLbJpqz .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPlLbJpqz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPlLbJpqz .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPlLbJpqz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPlLbJpqz .content-text {
  margin-bottom: 0;
}
.cid-stPlLbJpqz .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPlLbJpqz .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPlLbJpqz .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPlLbJpqz .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPlLbJpqz .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPlLbJpqz .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlLbJpqz .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlLbJpqz .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPlLbJpqz .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPlLbJpqz .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPlLbJpqz .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPlLbJpqz .content-right-side {
  text-align: center;
}
.cid-stPlLbJpqz .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPlLbJpqz .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPlLbJpqz .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPlLbJpqz .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlLbJpqz .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlLbJpqz .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPlLbJpqz .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPlLbJpqz .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPlLbJpqz .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPlLbJpqz .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPlLbJpqz .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPlLbJpqz .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlLbJpqz .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPlLbJpqz .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPlLbJpqz .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlLbJpqz .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPlLbJpqz .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPlLbJpqz .navbar-toggler {
    display: none;
  }
  .cid-stPlLbJpqz .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPlLbJpqz .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPlLbJpqz .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPlLbJpqz .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPlLbJpqz .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPlLbJpqz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPlLbJpqz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPlLbJpqz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPlLbJpqz .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPlLbJpqz .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlLbJpqz .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-stPlLbJpqz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPlLbJpqz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPlLbJpqz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPlLbJpqz .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-stPlLbJpqz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPlLbJpqz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPlLbJpqz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPlLbJpqz .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPlLbJpqz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPlLbJpqz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPlLbJpqz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPlLbJpqz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPlLbJpqz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPlLbJpqz button.navbar-toggler:focus {
  outline: none;
}
.cid-stPlLbJpqz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPlLbJpqz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPlLbJpqz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlLbJpqz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlLbJpqz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPlLbJpqz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlLbJpqz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPlLbJpqz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPlLbJpqz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlLbJpqz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPlLbJpqz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPlLbJpqz .collapsed .btn {
  display: flex;
}
.cid-stPlLbJpqz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPlLbJpqz .collapsed .navbar-collapse.collapsing,
.cid-stPlLbJpqz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPlLbJpqz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPlLbJpqz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPlLbJpqz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPlLbJpqz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPlLbJpqz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPlLbJpqz .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPlLbJpqz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPlLbJpqz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPlLbJpqz .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlLbJpqz .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPlLbJpqz .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPlLbJpqz .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPlLbJpqz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPlLbJpqz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPlLbJpqz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPlLbJpqz .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPlLbJpqz .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPlLbJpqz .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPlLbJpqz .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPlLbJpqz .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPlLbJpqz .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPlLbJpqz .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPlLbJpqz .navbar-collapse.collapsing,
  .cid-stPlLbJpqz .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPlLbJpqz .navbar-collapse.collapsing .navbar-nav,
  .cid-stPlLbJpqz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPlLbJpqz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPlLbJpqz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPlLbJpqz .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPlLbJpqz .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPlLbJpqz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPlLbJpqz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPlLbJpqz img {
    height: 3.8rem !important;
  }
  .cid-stPlLbJpqz .btn {
    display: flex;
  }
  .cid-stPlLbJpqz button.navbar-toggler {
    display: block;
  }
  .cid-stPlLbJpqz .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPlLbJpqz .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlLbJpqz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPlLbJpqz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPlLbJpqz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPlLbJpqz .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPlLbJpqz .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPlLbJpqz .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPlLbJpqz .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPlLbJpqz .nav-link:focus {
  outline: none;
}
.cid-stPlLbJpqz .navbar-toggler {
  position: relative;
}
.cid-stPlLbJpqz .dropdown-item.active,
.cid-stPlLbJpqz .dropdown-item:active {
  color: initial;
}
.cid-stPlLbJpqz .widget-title,
.cid-stPlLbJpqz .widget-icon {
  color: #e9e9e9;
}
.cid-stPlLbJpqz .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPlLbJpqz .menu-logo {
    display: none;
  }
  .cid-stPlLbJpqz .navbar {
    padding: 0;
  }
  .cid-stPlLbJpqz .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlLbJpqz button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sqZIyD0PNS {
  display: flex;
  padding-top: 150px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background11.jpg");
}
.cid-sqZIyD0PNS .mbr-overlay {
  background: #f9b03e;
  background: linear-gradient(90deg, #f9b03e, #adcde9);
}
.cid-sqZIyD0PNS .mbr-section-title {
  margin: 0;
}
.cid-sqZIyD0PNS .mbr-text {
  color: #efefef;
}
.cid-sqZIyD0PNS .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sqZIyD0PNS .card-img {
  text-align: left;
}
.cid-sqZIyD0PNS .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sqZIyD0PNS .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqZIyD0PNS .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqZIyD0PNS .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqZIyD0PNS .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sqZIyD0PNS .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-tUmPwnWwf2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-tUmPwnWwf2 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tUmPwnWwf2 p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-tUmPwnWwf2 .card-img {
  text-align: left;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
.cid-tUmPwnWwf2 .card-img span {
  font-size: 72px;
  color: #ff3366;
}
.cid-tUmPwnWwf2 .card-box {
  padding-left: 1rem;
  word-break: break-word;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tUmPwnWwf2 .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
  .cid-tUmPwnWwf2 .card-box {
    padding-left: 0;
  }
}
.cid-tUmPxhhGCK {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #ffffff, #eaac37);
}
@media (min-width: 992px) {
  .cid-tUmPxhhGCK .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tUmPxhhGCK .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-tUmPxhhGCK .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 692px) {
  .cid-tUmPxhhGCK .media-container-row .mbr-figure {
    padding-left: 0;
    padding-right: 4rem;
  }
}
.cid-sqZU3ggDve {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #fff4e8;
  position: relative;
  overflow: hidden;
}
.cid-sqZU3ggDve svg {
  position: absolute;
  bottom: -9.5rem;
  left: 50%;
  transform: translate(-50%) scaleX(-2) rotate(-12deg);
  filter: fliph;
  animation: wave2 5s ease-in-out infinite;
}
@keyframes wave2 {
  from {
    transform: translate(-50%) scaleX(-2) rotate(-10deg);
  }
  50% {
    transform: translate(-50%) scaleX(-2.2) scaleY(1.1) rotate(-13deg);
  }
  to {
    transform: translate(-50%) scaleX(-2) rotate(-10deg);
  }
}
.cid-sqZU3ggDve #e12_areaS3 {
  fill: #ebeced !important;
}
.cid-sqZU3ggDve #e19_areaS3 {
  fill: #f5f5f7 !important;
}
.cid-sqZU3ggDve .carousel-control {
  background: #000;
  opacity: 0.2;
}
.cid-sqZU3ggDve .carousel {
  width: 80%;
  margin: auto;
}
.cid-sqZU3ggDve .mbr-section-subtitle {
  color: #716c80;
}
.cid-sqZU3ggDve .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqZU3ggDve .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sqZU3ggDve .carousel-item .wrap-img {
  text-align: center;
}
.cid-sqZU3ggDve .carousel-item .wrap-img img {
  transition: all 0.3s;
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-sqZU3ggDve .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqZU3ggDve .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-sqZU3ggDve .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-sqZU3ggDve .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-sqZU3ggDve .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-sqZU3ggDve .cloneditem-1,
.cid-sqZU3ggDve .cloneditem-2,
.cid-sqZU3ggDve .cloneditem-3,
.cid-sqZU3ggDve .cloneditem-4,
.cid-sqZU3ggDve .cloneditem-5 {
  display: none;
}
.cid-sqZU3ggDve .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sqZU3ggDve .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sqZU3ggDve .carousel-inner {
    opacity: 0.8;
  }
  .cid-sqZU3ggDve .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides2 .cloneditem-1,
  .cid-sqZU3ggDve .carousel-inner.slides2 .cloneditem-2,
  .cid-sqZU3ggDve .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sqZU3ggDve .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides3 .cloneditem-1,
  .cid-sqZU3ggDve .carousel-inner.slides3 .cloneditem-2,
  .cid-sqZU3ggDve .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-sqZU3ggDve .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides4 .cloneditem-1,
  .cid-sqZU3ggDve .carousel-inner.slides4 .cloneditem-2,
  .cid-sqZU3ggDve .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-sqZU3ggDve .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides5 .cloneditem-1,
  .cid-sqZU3ggDve .carousel-inner.slides5 .cloneditem-2,
  .cid-sqZU3ggDve .carousel-inner.slides5 .cloneditem-3,
  .cid-sqZU3ggDve .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-sqZU3ggDve .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-sqZU3ggDve .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sqZU3ggDve .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sqZU3ggDve .carousel-inner.slides6 .cloneditem-1,
  .cid-sqZU3ggDve .carousel-inner.slides6 .cloneditem-2,
  .cid-sqZU3ggDve .carousel-inner.slides6 .cloneditem-3,
  .cid-sqZU3ggDve .carousel-inner.slides6 .cloneditem-4,
  .cid-sqZU3ggDve .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-sqZU3ggDve H2 {
  color: #232323;
}
.cid-sqZU3ggDve .carousel-control-prev {
  position: absolute!important;
  left: -50px !important;
}
.cid-sqZU3ggDve .carousel-control-next {
  position: absolute!important;
  right: -50px !important;
}
@media (max-width: 576px) {
  .cid-sqZU3ggDve .carousel-control-prev {
    left: -10px !important;
  }
  .cid-sqZU3ggDve .carousel-control-next {
    right: -10px !important;
  }
}
.cid-sr0foTXNS0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sr0foTXNS0 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
}
.cid-sr0foTXNS0 H2 {
  color: #232323;
}
.cid-sr0foTXNS0 H3 {
  color: #232323;
}
.cid-sr0foTXNS0 .mbr-text,
.cid-sr0foTXNS0 .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-sr0foTXNS0 .md-pb {
    padding-bottom: 2rem;
  }
}
.cid-sqZIDcCZng {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sqZIDcCZng .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-sqZIDcCZng h4 {
  margin: 0;
}
.cid-sqZIDcCZng .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-sqZIDcCZng .plan-body {
  padding-bottom: 2rem;
}
.cid-sqZIDcCZng .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sqZIDcCZng .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-sqZIDcCZng .line2 {
  background: #f1894c;
}
.cid-sqZIDcCZng .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-sqZIDcCZng .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-sqZIDcCZng .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sqZIDcCZng .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sqZIDcCZng .plan-header,
.cid-sqZIDcCZng .plan-body {
  background-color: #fff;
}
.cid-sqZIDcCZng .price-figure {
  font-weight: 700;
}
.cid-sqZIDcCZng .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sqZIDcCZng .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sqZIDcCZng .color1 {
  color: #f1894c;
}
.cid-sqZIDcCZng .color2 {
  color: #f1894c;
}
.cid-sqZIDcCZng LI {
  color: #767676;
}
.cid-sqZIDcCZng .price-term {
  color: #767676;
}
.cid-sqZIDcCZng UL {
  text-align: left;
}
.cid-sZ7lhPla3a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sZ7lhPla3a .mbr-section-subtitle {
  color: #767676;
}
.cid-sZ7lhPla3a ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sZ7lhPla3a ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-sZ7lhPla3a ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-sZ7lhPla3a ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-sZ7lhPla3a .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-sZ7lhPla3a .mbr-section-title {
  color: #767676;
}
.cid-sr1LhEJ204 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sr1LhEJ204 .card {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sr1LhEJ204 .card-box {
  width: 100%;
}
.cid-sr1LhEJ204 .card-img {
  padding: 1rem;
  border: 2px solid #e9e9e9;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
}
.cid-sr1LhEJ204 .card-img span {
  color: #0a1c44;
  font-size: 3rem;
}
.cid-sr1LhEJ204 .mbr-text {
  color: #767676;
}
.cid-sr1LhEJ204 p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sr1LhEJ204 .card {
    margin-bottom: 2rem;
  }
}
.cid-sr1LhEJ204 .card-title,
.cid-sr1LhEJ204 .card-img {
  color: #f9b03e;
  text-align: center;
}
.cid-sr1LhEJ204 .mbr-section-title {
  text-align: center;
}
.cid-sr1LhEJ204 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sr1LhEJ204 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sr1LhEJ204 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sr1LhEJ204 .line-wrap2 {
  display: inline-block;
  width: 100%;
}
.cid-sr1LhEJ204 .line2 {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.cid-sr1LhEJ204 .mbr-section-title,
.cid-sr1LhEJ204 .line-wrap {
  text-align: center;
}
.cid-sr1LhEJ204 .mbr-text,
.cid-sr1LhEJ204 .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-sqZUie49hN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqZUie49hN .main,
.cid-sqZUie49hN .main-reverse {
  margin: 0;
  background: #ffffff;
}
.cid-sqZUie49hN .text-element {
  background: #ffffff;
  padding: 3rem 2rem;
  min-height: 314px;
}
.cid-sqZUie49hN .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sqZUie49hN .main-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sqZUie49hN .card {
  padding: 0;
  border: 1px solid rgba(120, 130, 140, 0.13);
  display: flex;
}
.cid-sqZUie49hN .image-element img {
  width: 100%;
  height: 100%;
  min-height: 314px;
  object-fit: cover;
}
.cid-sqZUie49hN .mbr-iconfont {
  font-size: 3rem;
  color: #82786e;
}
@media (max-width: 991px) {
  .cid-sqZUie49hN .main-reverse {
    flex-direction: row;
    -webkit-flex-direction: row;
  }
}
@media (max-width: 767px) {
  .cid-sqZUie49hN .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .cid-sqZUie49hN .image-element,
  .cid-sqZUie49hN .text-element {
    margin-bottom: 0;
  }
  .cid-sqZUie49hN .main:first-child {
    padding-top: 0;
  }
}
.cid-sqZUie49hN .mbr-section-subtitle,
.cid-sqZUie49hN .card-text,
.cid-sqZUie49hN .mbr-section-btn {
  color: #8d97ad;
}
.cid-sr09Z1JIZM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-sr09Z1JIZM .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-sr09Z1JIZM .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-sr09Z1JIZM .card-wrapper {
    margin: 0rem;
  }
}
.cid-sr09Z1JIZM .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-sr09Z1JIZM .row {
    padding: 0 4rem;
  }
}
.cid-sr09Z1JIZM .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #f9b03e;
}
.cid-sr09Z1JIZM .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-sr09Z1JIZM .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-sr09Z1JIZM .card1 {
  background-color: #ffffff;
}
.cid-sr09Z1JIZM .card2 {
  background-color: #ffffff;
}
.cid-sr09Z1JIZM .card3 {
  background-color: #ffffff;
}
.cid-sr09Z1JIZM .card4 {
  background-color: #ffffff;
}
.cid-sr09Z1JIZM img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-sr09Z1JIZM .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-sr09Z1JIZM .container {
  max-width: 1500px;
}
.cid-sr09Z1JIZM .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sr09Z1JIZM .mbr-iconfont {
  font-size: 1.3rem;
  color: #232323;
  display: flex;
  justify-content: center;
}
.cid-sr09Z1JIZM P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-sr09Z1JIZM .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-sr09Z1JIZM .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-sr09Z1JIZM .col2,
  .cid-sr09Z1JIZM .col3,
  .cid-sr09Z1JIZM .col4 {
    margin-top: 0rem;
  }
  .cid-sr09Z1JIZM .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-sr09Z1JIZM .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-sr09Z1JIZM .number {
    margin: auto;
  }
}
.cid-sr09Z1JIZM .mbr-text {
  color: #cccccc;
}
.cid-sr09Z1JIZM .text2 {
  color: #333333;
}
.cid-sr09Z1JIZM .text3 {
  color: #333333;
}
.cid-sr09Z1JIZM .title2 {
  color: #767676;
}
.cid-sr09Z1JIZM .title1 {
  color: #767676;
}
.cid-sr09Z1JIZM .title3 {
  color: #767676;
}
.cid-sr09Z1JIZM .title4 {
  color: #767676;
}
.cid-sr09Z1JIZM .text4 {
  color: #232323;
}
.cid-sr09Z1JIZM .text1 {
  color: #232323;
}
.cid-sr09Z1JIZM H1 {
  color: #333333;
}
.cid-sr0mFr9KG5 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-sr0mFr9KG5 .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-sr0mFr9KG5 .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-sr0mFr9KG5 .card-wrapper {
    margin: 0rem;
  }
}
.cid-sr0mFr9KG5 .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-sr0mFr9KG5 .row {
    padding: 0 4rem;
  }
}
.cid-sr0mFr9KG5 .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #f9b03e;
}
.cid-sr0mFr9KG5 .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-sr0mFr9KG5 .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-sr0mFr9KG5 .card1 {
  background-color: #ffffff;
}
.cid-sr0mFr9KG5 .card2 {
  background-color: #ffffff;
}
.cid-sr0mFr9KG5 .card3 {
  background-color: #ffffff;
}
.cid-sr0mFr9KG5 .card4 {
  background-color: #ffffff;
}
.cid-sr0mFr9KG5 img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-sr0mFr9KG5 .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-sr0mFr9KG5 .container {
  max-width: 1500px;
}
.cid-sr0mFr9KG5 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sr0mFr9KG5 .mbr-iconfont {
  font-size: 1.3rem;
  color: #232323;
  display: flex;
  justify-content: center;
}
.cid-sr0mFr9KG5 P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-sr0mFr9KG5 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-sr0mFr9KG5 .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-sr0mFr9KG5 .col2,
  .cid-sr0mFr9KG5 .col3,
  .cid-sr0mFr9KG5 .col4 {
    margin-top: 0rem;
  }
  .cid-sr0mFr9KG5 .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-sr0mFr9KG5 .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-sr0mFr9KG5 .number {
    margin: auto;
  }
}
.cid-sr0mFr9KG5 .mbr-text {
  color: #cccccc;
}
.cid-sr0mFr9KG5 .text2 {
  color: #333333;
}
.cid-sr0mFr9KG5 .text3 {
  color: #333333;
}
.cid-sr0mFr9KG5 .title2 {
  color: #767676;
}
.cid-sr0mFr9KG5 .title1 {
  color: #767676;
}
.cid-sr0mFr9KG5 .title3 {
  color: #767676;
}
.cid-sr0mFr9KG5 .title4 {
  color: #767676;
}
.cid-sr0mFr9KG5 .text4 {
  color: #232323;
}
.cid-sr0mFr9KG5 .text1 {
  color: #232323;
}
.cid-sr0mFr9KG5 H1 {
  color: #333333;
}
.cid-sqZIzFDZRZ {
  padding-top: 120px;
  background-image: url("../../../assets/images/background12.jpg");
}
.cid-sqZIzFDZRZ .container {
  margin-bottom: 15%;
}
.cid-sqZIzFDZRZ .content-container .btn-bgr {
  z-index: 0;
}
.cid-sqZIzFDZRZ .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sqZIzFDZRZ .icon-block-top span {
  background-color: #f9b03e;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sqZIzFDZRZ .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sqZIzFDZRZ .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sqZIzFDZRZ .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sqZIzFDZRZ .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sqZIzFDZRZ .box-item-text,
.cid-sqZIzFDZRZ .mbr-section-btn {
  color: #8d97ad;
}
.cid-sqZIzFDZRZ .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sqZIzFDZRZ .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sqZIzFDZRZ .box-list li:last-child {
  border-bottom: none;
}
.cid-sqZIzFDZRZ .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sqZIzFDZRZ .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sqZIzFDZRZ .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-sqZIzFDZRZ .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-sqZIzFDZRZ .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sqZIzFDZRZ .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sqZIzFDZRZ .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sqZIzFDZRZ .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sqZIzFDZRZ .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sqZIzFDZRZ .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sqZIzFDZRZ .mbr-text {
  color: #efefef;
}
.cid-sqZIzFDZRZ H1 {
  color: #ffffff;
}
.cid-sqZLu4Owgi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/cloud1300-1280x804.jpg");
}
.cid-sqZLu4Owgi .container-fluid {
  padding: 0 3rem;
}
.cid-sqZLu4Owgi .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-sqZLu4Owgi .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-sqZLu4Owgi .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sqZLu4Owgi .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sqZLu4Owgi .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sqZLu4Owgi a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sqZLu4Owgi a.close:hover {
  color: #ffffff;
}
.cid-sqZLu4Owgi svg {
  transition: all 0.5s ease-in;
}
.cid-sqZLu4Owgi svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-sqZLu4Owgi svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-sqZLu4Owgi svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sqZLu4Owgi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sr1KW2j0tK {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sr1KW2j0tK .mbr-text,
.cid-sr1KW2j0tK .mbr-section-btn {
  color: #767676;
}
.cid-sr1KW2j0tK p {
  z-index: 2;
  position: relative;
}
.cid-sr1KW2j0tK .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sr1KW2j0tK .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(245, 168, 123, 0.35);
  padding: 1rem 1.5rem;
}
.cid-sr1KW2j0tK .ico1 {
  font-size: 2rem;
}
.cid-sr1KW2j0tK .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-sr1KW2j0tK H3 {
  color: #149dcc;
}
.cid-sr1u5hbbaJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-sr1u5hbbaJ h2,
.cid-sr1u5hbbaJ h3,
.cid-sr1u5hbbaJ h4,
.cid-sr1u5hbbaJ p {
  color: #ffffff;
}
.cid-sr1u5hbbaJ .mbr-overlay {
  z-index: -1;
}
.cid-sr1u5hbbaJ .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sr1u5hbbaJ .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-sr1u5hbbaJ .form-control:focus,
.cid-sr1u5hbbaJ .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-sr1u5hbbaJ .form-group {
  margin-bottom: 1rem;
}
.cid-sr1u5hbbaJ input::-webkit-input-placeholder,
.cid-sr1u5hbbaJ textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-sr1u5hbbaJ input:-moz-placeholder,
.cid-sr1u5hbbaJ textarea:-moz-placeholder {
  color: #656565;
}
.cid-sr1u5hbbaJ .jq-selectbox li,
.cid-sr1u5hbbaJ .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sr1u5hbbaJ .jq-selectbox li:hover,
.cid-sr1u5hbbaJ .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sr1u5hbbaJ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sr1u5hbbaJ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sr1u5hbbaJ .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-sr1u5hbbaJ .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sr1u5hbbaJ .mbr-text {
  color: #767676;
}
.cid-sr1u5hbbaJ .form-block {
  padding: 3rem;
  position: relative;
}
.cid-sr1u5hbbaJ .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-sr1u5hbbaJ .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-sr1u5hbbaJ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sr1u5hbbaJ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sr1u5hbbaJ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sr1u5hbbaJ textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-sr1u5hbbaJ .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sr1u5hbbaJ .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sr1u5hbbaJ .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sr1u5hbbaJ h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sr1u5hbbaJ .block-content {
    padding: 0;
  }
  .cid-sr1u5hbbaJ .form-block {
    padding: 1rem;
  }
}
.cid-sr5524vRiN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background5-5.jpg");
}
.cid-sr5524vRiN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sr5524vRiN p {
  color: #767676;
  text-align: left;
}
.cid-sr5524vRiN .card-box {
  padding-top: 2rem;
}
.cid-sr5524vRiN .card-wrapper {
  height: 100%;
}
.cid-sr5524vRiN img {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}
.cid-sr5524vRiN P {
  text-align: center;
}
.cid-sr5524vRiN .card-title {
  text-align: center;
}
.cid-sr5524vRiN .card-img {
  position: relative;
}
.cid-sr5524vRiN .card-icon {
  position: absolute;
  background: #ffffff;
  height: 70px;
  width: 70px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.22);
  border-radius: 100%;
  padding: 1rem;
  left: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 1rem;
}
.cid-sr5524vRiN .card-icon .mbr-iconfont {
  font-size: 2rem;
  color: #e99a1f;
}
.cid-sr54E6BSnS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sr54E6BSnS .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-sr54E6BSnS .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sr54E6BSnS .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sr54E6BSnS .mbr-text {
  color: #444;
}
.cid-sr54E6BSnS h5 {
  margin-bottom: 0;
}
.cid-sr54E6BSnS .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sr54E6BSnS .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-sr54E6BSnS .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sr54E6BSnS .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sr54E6BSnS .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sr54E6BSnS .social-list a:hover {
  opacity: .4;
}
.cid-sr54E6BSnS .media-container-row > div {
  padding: 0px;
}
.cid-sr54E6BSnS .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sr54E6BSnS .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-sr54E6BSnS .group-title SPAN {
  color: #656565;
}
.cid-sr54E6BSnS .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sr54E6BSnS .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sr54E6BSnS h3 {
    margin-bottom: 10px;
  }
}
.cid-sr54E6BSnS .links SPAN {
  color: #9e9e9e;
}
.cid-sr54E6BSnS .links,
.cid-sr54E6BSnS .social-list {
  color: #ffffff;
}
.cid-sr54E6BSnS .links,
.cid-sr54E6BSnS .navbar-brand {
  color: #ffffff;
}
.cid-D7brCAOvrG .hidden {
  display: none;
}
.cid-D7brCAOvrG .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-D7brCAOvrG .floating-bar:hover {
  background-color: #03be00;
}
.cid-D7brCAOvrG .floating-button {
  color: #ffffff;
}
.cid-D7brCAOvrG .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stPlU6DBFp .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPlU6DBFp .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPlU6DBFp .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPlU6DBFp .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlU6DBFp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPlU6DBFp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPlU6DBFp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPlU6DBFp .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPlU6DBFp .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPlU6DBFp .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPlU6DBFp .dropdown-item {
  padding: 0;
}
.cid-stPlU6DBFp .dropdown-item,
.cid-stPlU6DBFp .nav-link,
.cid-stPlU6DBFp .brand-name {
  font-style: normal;
}
.cid-stPlU6DBFp .dropdown-item:hover,
.cid-stPlU6DBFp .nav-link:hover,
.cid-stPlU6DBFp .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPlU6DBFp .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPlU6DBFp .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPlU6DBFp .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPlU6DBFp .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPlU6DBFp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPlU6DBFp .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPlU6DBFp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPlU6DBFp .content-text {
  margin-bottom: 0;
}
.cid-stPlU6DBFp .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPlU6DBFp .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPlU6DBFp .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPlU6DBFp .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPlU6DBFp .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPlU6DBFp .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlU6DBFp .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlU6DBFp .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPlU6DBFp .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPlU6DBFp .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPlU6DBFp .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPlU6DBFp .content-right-side {
  text-align: center;
}
.cid-stPlU6DBFp .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPlU6DBFp .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPlU6DBFp .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPlU6DBFp .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlU6DBFp .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlU6DBFp .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPlU6DBFp .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPlU6DBFp .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPlU6DBFp .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPlU6DBFp .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPlU6DBFp .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPlU6DBFp .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlU6DBFp .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPlU6DBFp .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPlU6DBFp .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlU6DBFp .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPlU6DBFp .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPlU6DBFp .navbar-toggler {
    display: none;
  }
  .cid-stPlU6DBFp .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPlU6DBFp .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPlU6DBFp .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPlU6DBFp .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPlU6DBFp .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPlU6DBFp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPlU6DBFp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPlU6DBFp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPlU6DBFp .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPlU6DBFp .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlU6DBFp .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-stPlU6DBFp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPlU6DBFp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPlU6DBFp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPlU6DBFp .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-stPlU6DBFp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPlU6DBFp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPlU6DBFp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPlU6DBFp .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPlU6DBFp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPlU6DBFp .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPlU6DBFp .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPlU6DBFp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPlU6DBFp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPlU6DBFp button.navbar-toggler:focus {
  outline: none;
}
.cid-stPlU6DBFp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPlU6DBFp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPlU6DBFp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlU6DBFp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlU6DBFp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPlU6DBFp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlU6DBFp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPlU6DBFp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPlU6DBFp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlU6DBFp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPlU6DBFp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPlU6DBFp .collapsed .btn {
  display: flex;
}
.cid-stPlU6DBFp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPlU6DBFp .collapsed .navbar-collapse.collapsing,
.cid-stPlU6DBFp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPlU6DBFp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPlU6DBFp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPlU6DBFp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPlU6DBFp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPlU6DBFp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPlU6DBFp .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPlU6DBFp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPlU6DBFp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPlU6DBFp .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlU6DBFp .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPlU6DBFp .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPlU6DBFp .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPlU6DBFp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPlU6DBFp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPlU6DBFp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPlU6DBFp .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPlU6DBFp .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPlU6DBFp .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPlU6DBFp .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPlU6DBFp .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPlU6DBFp .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPlU6DBFp .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPlU6DBFp .navbar-collapse.collapsing,
  .cid-stPlU6DBFp .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPlU6DBFp .navbar-collapse.collapsing .navbar-nav,
  .cid-stPlU6DBFp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPlU6DBFp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPlU6DBFp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPlU6DBFp .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPlU6DBFp .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPlU6DBFp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPlU6DBFp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPlU6DBFp img {
    height: 3.8rem !important;
  }
  .cid-stPlU6DBFp .btn {
    display: flex;
  }
  .cid-stPlU6DBFp button.navbar-toggler {
    display: block;
  }
  .cid-stPlU6DBFp .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPlU6DBFp .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlU6DBFp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPlU6DBFp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPlU6DBFp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPlU6DBFp .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPlU6DBFp .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPlU6DBFp .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPlU6DBFp .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPlU6DBFp .nav-link:focus {
  outline: none;
}
.cid-stPlU6DBFp .navbar-toggler {
  position: relative;
}
.cid-stPlU6DBFp .dropdown-item.active,
.cid-stPlU6DBFp .dropdown-item:active {
  color: initial;
}
.cid-stPlU6DBFp .widget-title,
.cid-stPlU6DBFp .widget-icon {
  color: #e9e9e9;
}
.cid-stPlU6DBFp .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPlU6DBFp .menu-logo {
    display: none;
  }
  .cid-stPlU6DBFp .navbar {
    padding: 0;
  }
  .cid-stPlU6DBFp .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlU6DBFp button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-sr55XfolpY {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/screen-shot-2015-07-06-at-12.33.55-pm-2-1170x450.png");
  overflow: hidden;
}
.cid-sr55XfolpY svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sr55XfolpY #e2_shape {
  fill: #ffffff !important;
}
.cid-sr55XfolpY .mbr-text.display-5 {
  font-size: 26px;
}
.cid-sr55XfolpY .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-stIba4bBz2 {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-stIba4bBz2 .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-stIba4bBz2 h4 {
  margin: 0;
}
.cid-stIba4bBz2 .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-stIba4bBz2 .plan-body {
  padding-bottom: 2rem;
}
.cid-stIba4bBz2 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stIba4bBz2 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-stIba4bBz2 .line2 {
  background: #f1894c;
}
.cid-stIba4bBz2 .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-stIba4bBz2 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-stIba4bBz2 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-stIba4bBz2 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-stIba4bBz2 .plan-header,
.cid-stIba4bBz2 .plan-body {
  background-color: #fff;
}
.cid-stIba4bBz2 .price-figure {
  font-weight: 700;
}
.cid-stIba4bBz2 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-stIba4bBz2 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-stIba4bBz2 .color1 {
  color: #f1894c;
}
.cid-stIba4bBz2 .color2 {
  color: #f1894c;
}
.cid-stIba4bBz2 LI {
  color: #767676;
}
.cid-stIba4bBz2 .price-term {
  color: #767676;
}
.cid-stIba4bBz2 UL {
  text-align: left;
}
.cid-sr57iId833 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #e4d295, #5b686b);
}
@media (min-width: 992px) {
  .cid-sr57iId833 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sr57iId833 .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-stIfAmFKSx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/monitoreo-grande-640x427.jpg");
}
.cid-stIfAmFKSx h2,
.cid-stIfAmFKSx h3,
.cid-stIfAmFKSx h4,
.cid-stIfAmFKSx p {
  color: #ffffff;
}
.cid-stIfAmFKSx .mbr-overlay {
  z-index: -1;
}
.cid-stIfAmFKSx .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stIfAmFKSx .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stIfAmFKSx .form-control:focus,
.cid-stIfAmFKSx .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stIfAmFKSx .form-group {
  margin-bottom: 1rem;
}
.cid-stIfAmFKSx input::-webkit-input-placeholder,
.cid-stIfAmFKSx textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stIfAmFKSx input:-moz-placeholder,
.cid-stIfAmFKSx textarea:-moz-placeholder {
  color: #656565;
}
.cid-stIfAmFKSx .jq-selectbox li,
.cid-stIfAmFKSx .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stIfAmFKSx .jq-selectbox li:hover,
.cid-stIfAmFKSx .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stIfAmFKSx .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stIfAmFKSx .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stIfAmFKSx .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-stIfAmFKSx .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stIfAmFKSx .mbr-text {
  color: #767676;
}
.cid-stIfAmFKSx .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stIfAmFKSx .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stIfAmFKSx .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stIfAmFKSx a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stIfAmFKSx .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stIfAmFKSx .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stIfAmFKSx textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-stIfAmFKSx .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stIfAmFKSx .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stIfAmFKSx .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stIfAmFKSx h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stIfAmFKSx .block-content {
    padding: 0;
  }
  .cid-stIfAmFKSx .form-block {
    padding: 1rem;
  }
}
.cid-stIf9jXDAK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-stIf9jXDAK .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-stIf9jXDAK .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-stIf9jXDAK .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-stIf9jXDAK .mbr-text {
  color: #444;
}
.cid-stIf9jXDAK h5 {
  margin-bottom: 0;
}
.cid-stIf9jXDAK .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stIf9jXDAK .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-stIf9jXDAK .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-stIf9jXDAK .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-stIf9jXDAK .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stIf9jXDAK .social-list a:hover {
  opacity: .4;
}
.cid-stIf9jXDAK .media-container-row > div {
  padding: 0px;
}
.cid-stIf9jXDAK .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stIf9jXDAK .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-stIf9jXDAK .group-title SPAN {
  color: #656565;
}
.cid-stIf9jXDAK .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-stIf9jXDAK .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stIf9jXDAK h3 {
    margin-bottom: 10px;
  }
}
.cid-stIf9jXDAK .links SPAN {
  color: #9e9e9e;
}
.cid-stIf9jXDAK .links,
.cid-stIf9jXDAK .social-list {
  color: #ffffff;
}
.cid-stIf9jXDAK .links,
.cid-stIf9jXDAK .navbar-brand {
  color: #ffffff;
}
.cid-stJ9nAbPaF .hidden {
  display: none;
}
.cid-stJ9nAbPaF .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-stJ9nAbPaF .floating-bar:hover {
  background-color: #03be00;
}
.cid-stJ9nAbPaF .floating-button {
  color: #ffffff;
}
.cid-stJ9nAbPaF .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stPlXIEMyL .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPlXIEMyL .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPlXIEMyL .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPlXIEMyL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlXIEMyL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPlXIEMyL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPlXIEMyL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPlXIEMyL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPlXIEMyL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPlXIEMyL .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPlXIEMyL .dropdown-item {
  padding: 0;
}
.cid-stPlXIEMyL .dropdown-item,
.cid-stPlXIEMyL .nav-link,
.cid-stPlXIEMyL .brand-name {
  font-style: normal;
}
.cid-stPlXIEMyL .dropdown-item:hover,
.cid-stPlXIEMyL .nav-link:hover,
.cid-stPlXIEMyL .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPlXIEMyL .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPlXIEMyL .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPlXIEMyL .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPlXIEMyL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPlXIEMyL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPlXIEMyL .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPlXIEMyL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPlXIEMyL .content-text {
  margin-bottom: 0;
}
.cid-stPlXIEMyL .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPlXIEMyL .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPlXIEMyL .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPlXIEMyL .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPlXIEMyL .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPlXIEMyL .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlXIEMyL .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlXIEMyL .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPlXIEMyL .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPlXIEMyL .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPlXIEMyL .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPlXIEMyL .content-right-side {
  text-align: center;
}
.cid-stPlXIEMyL .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPlXIEMyL .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPlXIEMyL .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPlXIEMyL .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlXIEMyL .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlXIEMyL .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPlXIEMyL .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPlXIEMyL .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPlXIEMyL .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPlXIEMyL .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPlXIEMyL .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPlXIEMyL .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlXIEMyL .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPlXIEMyL .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPlXIEMyL .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlXIEMyL .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPlXIEMyL .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPlXIEMyL .navbar-toggler {
    display: none;
  }
  .cid-stPlXIEMyL .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPlXIEMyL .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPlXIEMyL .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPlXIEMyL .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPlXIEMyL .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPlXIEMyL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPlXIEMyL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPlXIEMyL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPlXIEMyL .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPlXIEMyL .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlXIEMyL .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-stPlXIEMyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPlXIEMyL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPlXIEMyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPlXIEMyL .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-stPlXIEMyL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPlXIEMyL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPlXIEMyL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPlXIEMyL .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPlXIEMyL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPlXIEMyL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPlXIEMyL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPlXIEMyL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPlXIEMyL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPlXIEMyL button.navbar-toggler:focus {
  outline: none;
}
.cid-stPlXIEMyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPlXIEMyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPlXIEMyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlXIEMyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlXIEMyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPlXIEMyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlXIEMyL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPlXIEMyL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPlXIEMyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlXIEMyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPlXIEMyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPlXIEMyL .collapsed .btn {
  display: flex;
}
.cid-stPlXIEMyL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPlXIEMyL .collapsed .navbar-collapse.collapsing,
.cid-stPlXIEMyL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPlXIEMyL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPlXIEMyL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPlXIEMyL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPlXIEMyL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPlXIEMyL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPlXIEMyL .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPlXIEMyL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPlXIEMyL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPlXIEMyL .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlXIEMyL .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPlXIEMyL .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPlXIEMyL .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPlXIEMyL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPlXIEMyL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPlXIEMyL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPlXIEMyL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPlXIEMyL .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPlXIEMyL .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPlXIEMyL .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPlXIEMyL .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPlXIEMyL .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPlXIEMyL .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPlXIEMyL .navbar-collapse.collapsing,
  .cid-stPlXIEMyL .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPlXIEMyL .navbar-collapse.collapsing .navbar-nav,
  .cid-stPlXIEMyL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPlXIEMyL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPlXIEMyL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPlXIEMyL .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPlXIEMyL .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPlXIEMyL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPlXIEMyL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPlXIEMyL img {
    height: 3.8rem !important;
  }
  .cid-stPlXIEMyL .btn {
    display: flex;
  }
  .cid-stPlXIEMyL button.navbar-toggler {
    display: block;
  }
  .cid-stPlXIEMyL .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPlXIEMyL .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlXIEMyL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPlXIEMyL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPlXIEMyL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPlXIEMyL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPlXIEMyL .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPlXIEMyL .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPlXIEMyL .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPlXIEMyL .nav-link:focus {
  outline: none;
}
.cid-stPlXIEMyL .navbar-toggler {
  position: relative;
}
.cid-stPlXIEMyL .dropdown-item.active,
.cid-stPlXIEMyL .dropdown-item:active {
  color: initial;
}
.cid-stPlXIEMyL .widget-title,
.cid-stPlXIEMyL .widget-icon {
  color: #e9e9e9;
}
.cid-stPlXIEMyL .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPlXIEMyL .menu-logo {
    display: none;
  }
  .cid-stPlXIEMyL .navbar {
    padding: 0;
  }
  .cid-stPlXIEMyL .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlXIEMyL button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-stJqkfxGc0 {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/screen-shot-2015-07-06-at-12.33.55-pm-2-1170x450.png");
  overflow: hidden;
}
.cid-stJqkfxGc0 svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-stJqkfxGc0 #e2_shape {
  fill: #ffffff !important;
}
.cid-stJqkfxGc0 .mbr-text.display-5 {
  font-size: 26px;
}
.cid-stJqkfxGc0 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-stJqkhyrQO {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-stJqkhyrQO .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-stJqkhyrQO h4 {
  margin: 0;
}
.cid-stJqkhyrQO .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-stJqkhyrQO .plan-body {
  padding-bottom: 2rem;
}
.cid-stJqkhyrQO .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stJqkhyrQO .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-stJqkhyrQO .line2 {
  background: #f1894c;
}
.cid-stJqkhyrQO .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-stJqkhyrQO .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-stJqkhyrQO .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-stJqkhyrQO .plan .list-group-item:last-child::after {
  display: none;
}
.cid-stJqkhyrQO .plan-header,
.cid-stJqkhyrQO .plan-body {
  background-color: #fff;
}
.cid-stJqkhyrQO .price-figure {
  font-weight: 700;
}
.cid-stJqkhyrQO .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-stJqkhyrQO .price-figure {
    font-size: 4.25rem;
  }
}
.cid-stJqkhyrQO .color1 {
  color: #f1894c;
}
.cid-stJqkhyrQO .color2 {
  color: #f1894c;
}
.cid-stJqkhyrQO LI {
  color: #767676;
}
.cid-stJqkhyrQO .price-term {
  color: #767676;
}
.cid-stJqkhyrQO UL {
  text-align: left;
}
.cid-stJqkkImfF {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #e4d295, #5b686b);
}
@media (min-width: 992px) {
  .cid-stJqkkImfF .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stJqkkImfF .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-stJqkmyUtc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/monitoreo-grande-640x427.jpg");
}
.cid-stJqkmyUtc h2,
.cid-stJqkmyUtc h3,
.cid-stJqkmyUtc h4,
.cid-stJqkmyUtc p {
  color: #ffffff;
}
.cid-stJqkmyUtc .mbr-overlay {
  z-index: -1;
}
.cid-stJqkmyUtc .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stJqkmyUtc .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stJqkmyUtc .form-control:focus,
.cid-stJqkmyUtc .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stJqkmyUtc .form-group {
  margin-bottom: 1rem;
}
.cid-stJqkmyUtc input::-webkit-input-placeholder,
.cid-stJqkmyUtc textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stJqkmyUtc input:-moz-placeholder,
.cid-stJqkmyUtc textarea:-moz-placeholder {
  color: #656565;
}
.cid-stJqkmyUtc .jq-selectbox li,
.cid-stJqkmyUtc .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stJqkmyUtc .jq-selectbox li:hover,
.cid-stJqkmyUtc .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stJqkmyUtc .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stJqkmyUtc .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stJqkmyUtc .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-stJqkmyUtc .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stJqkmyUtc .mbr-text {
  color: #767676;
}
.cid-stJqkmyUtc .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stJqkmyUtc .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stJqkmyUtc .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stJqkmyUtc a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stJqkmyUtc .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stJqkmyUtc .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stJqkmyUtc textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-stJqkmyUtc .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stJqkmyUtc .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stJqkmyUtc .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stJqkmyUtc h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stJqkmyUtc .block-content {
    padding: 0;
  }
  .cid-stJqkmyUtc .form-block {
    padding: 1rem;
  }
}
.cid-stJqkoPU7d {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-stJqkoPU7d .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-stJqkoPU7d .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-stJqkoPU7d .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-stJqkoPU7d .mbr-text {
  color: #444;
}
.cid-stJqkoPU7d h5 {
  margin-bottom: 0;
}
.cid-stJqkoPU7d .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stJqkoPU7d .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-stJqkoPU7d .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-stJqkoPU7d .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-stJqkoPU7d .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stJqkoPU7d .social-list a:hover {
  opacity: .4;
}
.cid-stJqkoPU7d .media-container-row > div {
  padding: 0px;
}
.cid-stJqkoPU7d .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stJqkoPU7d .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-stJqkoPU7d .group-title SPAN {
  color: #656565;
}
.cid-stJqkoPU7d .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-stJqkoPU7d .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stJqkoPU7d h3 {
    margin-bottom: 10px;
  }
}
.cid-stJqkoPU7d .links SPAN {
  color: #9e9e9e;
}
.cid-stJqkoPU7d .links,
.cid-stJqkoPU7d .social-list {
  color: #ffffff;
}
.cid-stJqkoPU7d .links,
.cid-stJqkoPU7d .navbar-brand {
  color: #ffffff;
}
.cid-stJqkrSROq .hidden {
  display: none;
}
.cid-stJqkrSROq .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-stJqkrSROq .floating-bar:hover {
  background-color: #03be00;
}
.cid-stJqkrSROq .floating-button {
  color: #ffffff;
}
.cid-stJqkrSROq .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stPm5Imill .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPm5Imill .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPm5Imill .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPm5Imill .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm5Imill .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPm5Imill .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPm5Imill .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPm5Imill .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPm5Imill .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPm5Imill .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPm5Imill .dropdown-item {
  padding: 0;
}
.cid-stPm5Imill .dropdown-item,
.cid-stPm5Imill .nav-link,
.cid-stPm5Imill .brand-name {
  font-style: normal;
}
.cid-stPm5Imill .dropdown-item:hover,
.cid-stPm5Imill .nav-link:hover,
.cid-stPm5Imill .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPm5Imill .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPm5Imill .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPm5Imill .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPm5Imill .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPm5Imill .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPm5Imill .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPm5Imill .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPm5Imill .content-text {
  margin-bottom: 0;
}
.cid-stPm5Imill .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPm5Imill .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPm5Imill .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPm5Imill .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPm5Imill .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPm5Imill .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPm5Imill .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPm5Imill .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPm5Imill .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPm5Imill .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPm5Imill .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPm5Imill .content-right-side {
  text-align: center;
}
.cid-stPm5Imill .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPm5Imill .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPm5Imill .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPm5Imill .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm5Imill .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm5Imill .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPm5Imill .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPm5Imill .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPm5Imill .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPm5Imill .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPm5Imill .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPm5Imill .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPm5Imill .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPm5Imill .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPm5Imill .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPm5Imill .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPm5Imill .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPm5Imill .navbar-toggler {
    display: none;
  }
  .cid-stPm5Imill .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPm5Imill .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPm5Imill .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPm5Imill .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPm5Imill .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPm5Imill .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPm5Imill .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPm5Imill .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPm5Imill .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPm5Imill .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPm5Imill .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-stPm5Imill .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPm5Imill .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPm5Imill .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPm5Imill .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-stPm5Imill .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPm5Imill .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPm5Imill .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPm5Imill .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPm5Imill .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPm5Imill .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPm5Imill .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPm5Imill .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPm5Imill button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPm5Imill button.navbar-toggler:focus {
  outline: none;
}
.cid-stPm5Imill button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPm5Imill button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPm5Imill button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPm5Imill button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPm5Imill button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPm5Imill nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPm5Imill nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPm5Imill nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPm5Imill nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPm5Imill .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPm5Imill .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPm5Imill .collapsed .btn {
  display: flex;
}
.cid-stPm5Imill .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPm5Imill .collapsed .navbar-collapse.collapsing,
.cid-stPm5Imill .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPm5Imill .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPm5Imill .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPm5Imill .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPm5Imill .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPm5Imill .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPm5Imill .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPm5Imill .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPm5Imill .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPm5Imill .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPm5Imill .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPm5Imill .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPm5Imill .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPm5Imill .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPm5Imill .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPm5Imill .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPm5Imill .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPm5Imill .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPm5Imill .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPm5Imill .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPm5Imill .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPm5Imill .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPm5Imill .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPm5Imill .navbar-collapse.collapsing,
  .cid-stPm5Imill .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPm5Imill .navbar-collapse.collapsing .navbar-nav,
  .cid-stPm5Imill .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPm5Imill .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPm5Imill .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPm5Imill .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPm5Imill .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPm5Imill .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPm5Imill .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPm5Imill img {
    height: 3.8rem !important;
  }
  .cid-stPm5Imill .btn {
    display: flex;
  }
  .cid-stPm5Imill button.navbar-toggler {
    display: block;
  }
  .cid-stPm5Imill .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPm5Imill .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPm5Imill .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPm5Imill .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPm5Imill .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPm5Imill .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPm5Imill .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPm5Imill .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPm5Imill .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPm5Imill .nav-link:focus {
  outline: none;
}
.cid-stPm5Imill .navbar-toggler {
  position: relative;
}
.cid-stPm5Imill .dropdown-item.active,
.cid-stPm5Imill .dropdown-item:active {
  color: initial;
}
.cid-stPm5Imill .widget-title,
.cid-stPm5Imill .widget-icon {
  color: #e9e9e9;
}
.cid-stPm5Imill .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPm5Imill .menu-logo {
    display: none;
  }
  .cid-stPm5Imill .navbar {
    padding: 0;
  }
  .cid-stPm5Imill .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPm5Imill button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-stJM8nSZtB {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/screen-shot-2015-07-06-at-12.33.55-pm-2-1170x450.png");
  overflow: hidden;
}
.cid-stJM8nSZtB svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-stJM8nSZtB #e2_shape {
  fill: #ffffff !important;
}
.cid-stJM8nSZtB .mbr-text.display-5 {
  font-size: 26px;
}
.cid-stJM8nSZtB .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-stJM8pI49Z {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-stJM8pI49Z .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-stJM8pI49Z h4 {
  margin: 0;
}
.cid-stJM8pI49Z .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-stJM8pI49Z .plan-body {
  padding-bottom: 2rem;
}
.cid-stJM8pI49Z .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stJM8pI49Z .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-stJM8pI49Z .line2 {
  background: #f1894c;
}
.cid-stJM8pI49Z .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-stJM8pI49Z .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-stJM8pI49Z .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-stJM8pI49Z .plan .list-group-item:last-child::after {
  display: none;
}
.cid-stJM8pI49Z .plan-header,
.cid-stJM8pI49Z .plan-body {
  background-color: #fff;
}
.cid-stJM8pI49Z .price-figure {
  font-weight: 700;
}
.cid-stJM8pI49Z .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-stJM8pI49Z .price-figure {
    font-size: 4.25rem;
  }
}
.cid-stJM8pI49Z .color1 {
  color: #f1894c;
}
.cid-stJM8pI49Z .color2 {
  color: #f1894c;
}
.cid-stJM8pI49Z LI {
  color: #767676;
}
.cid-stJM8pI49Z .price-term {
  color: #767676;
}
.cid-stJM8pI49Z UL {
  text-align: left;
}
.cid-stJM8t4mSh {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #e4d295, #5b686b);
}
@media (min-width: 992px) {
  .cid-stJM8t4mSh .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stJM8t4mSh .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-stJM8uTa10 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/monitoreo-grande-640x427.jpg");
}
.cid-stJM8uTa10 h2,
.cid-stJM8uTa10 h3,
.cid-stJM8uTa10 h4,
.cid-stJM8uTa10 p {
  color: #ffffff;
}
.cid-stJM8uTa10 .mbr-overlay {
  z-index: -1;
}
.cid-stJM8uTa10 .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stJM8uTa10 .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stJM8uTa10 .form-control:focus,
.cid-stJM8uTa10 .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stJM8uTa10 .form-group {
  margin-bottom: 1rem;
}
.cid-stJM8uTa10 input::-webkit-input-placeholder,
.cid-stJM8uTa10 textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stJM8uTa10 input:-moz-placeholder,
.cid-stJM8uTa10 textarea:-moz-placeholder {
  color: #656565;
}
.cid-stJM8uTa10 .jq-selectbox li,
.cid-stJM8uTa10 .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stJM8uTa10 .jq-selectbox li:hover,
.cid-stJM8uTa10 .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stJM8uTa10 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stJM8uTa10 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stJM8uTa10 .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-stJM8uTa10 .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stJM8uTa10 .mbr-text {
  color: #767676;
}
.cid-stJM8uTa10 .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stJM8uTa10 .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stJM8uTa10 .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stJM8uTa10 a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stJM8uTa10 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stJM8uTa10 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stJM8uTa10 textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-stJM8uTa10 .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stJM8uTa10 .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stJM8uTa10 .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stJM8uTa10 h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stJM8uTa10 .block-content {
    padding: 0;
  }
  .cid-stJM8uTa10 .form-block {
    padding: 1rem;
  }
}
.cid-stJM8xemE7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-stJM8xemE7 .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-stJM8xemE7 .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-stJM8xemE7 .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-stJM8xemE7 .mbr-text {
  color: #444;
}
.cid-stJM8xemE7 h5 {
  margin-bottom: 0;
}
.cid-stJM8xemE7 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stJM8xemE7 .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-stJM8xemE7 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-stJM8xemE7 .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-stJM8xemE7 .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stJM8xemE7 .social-list a:hover {
  opacity: .4;
}
.cid-stJM8xemE7 .media-container-row > div {
  padding: 0px;
}
.cid-stJM8xemE7 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stJM8xemE7 .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-stJM8xemE7 .group-title SPAN {
  color: #656565;
}
.cid-stJM8xemE7 .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-stJM8xemE7 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stJM8xemE7 h3 {
    margin-bottom: 10px;
  }
}
.cid-stJM8xemE7 .links SPAN {
  color: #9e9e9e;
}
.cid-stJM8xemE7 .links,
.cid-stJM8xemE7 .social-list {
  color: #ffffff;
}
.cid-stJM8xemE7 .links,
.cid-stJM8xemE7 .navbar-brand {
  color: #ffffff;
}
.cid-stJM8Ahtk3 .hidden {
  display: none;
}
.cid-stJM8Ahtk3 .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-stJM8Ahtk3 .floating-bar:hover {
  background-color: #03be00;
}
.cid-stJM8Ahtk3 .floating-button {
  color: #ffffff;
}
.cid-stJM8Ahtk3 .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stPm2DZqfG .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPm2DZqfG .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPm2DZqfG .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPm2DZqfG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm2DZqfG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPm2DZqfG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPm2DZqfG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPm2DZqfG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPm2DZqfG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPm2DZqfG .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPm2DZqfG .dropdown-item {
  padding: 0;
}
.cid-stPm2DZqfG .dropdown-item,
.cid-stPm2DZqfG .nav-link,
.cid-stPm2DZqfG .brand-name {
  font-style: normal;
}
.cid-stPm2DZqfG .dropdown-item:hover,
.cid-stPm2DZqfG .nav-link:hover,
.cid-stPm2DZqfG .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPm2DZqfG .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPm2DZqfG .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPm2DZqfG .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPm2DZqfG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPm2DZqfG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPm2DZqfG .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPm2DZqfG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPm2DZqfG .content-text {
  margin-bottom: 0;
}
.cid-stPm2DZqfG .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPm2DZqfG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPm2DZqfG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPm2DZqfG .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPm2DZqfG .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPm2DZqfG .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPm2DZqfG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPm2DZqfG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPm2DZqfG .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPm2DZqfG .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPm2DZqfG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPm2DZqfG .content-right-side {
  text-align: center;
}
.cid-stPm2DZqfG .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPm2DZqfG .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPm2DZqfG .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPm2DZqfG .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm2DZqfG .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm2DZqfG .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPm2DZqfG .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPm2DZqfG .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPm2DZqfG .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPm2DZqfG .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPm2DZqfG .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPm2DZqfG .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPm2DZqfG .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPm2DZqfG .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPm2DZqfG .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPm2DZqfG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPm2DZqfG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPm2DZqfG .navbar-toggler {
    display: none;
  }
  .cid-stPm2DZqfG .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPm2DZqfG .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPm2DZqfG .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPm2DZqfG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPm2DZqfG .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPm2DZqfG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPm2DZqfG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPm2DZqfG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPm2DZqfG .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPm2DZqfG .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPm2DZqfG .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-stPm2DZqfG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPm2DZqfG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPm2DZqfG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPm2DZqfG .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-stPm2DZqfG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPm2DZqfG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPm2DZqfG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPm2DZqfG .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPm2DZqfG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPm2DZqfG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPm2DZqfG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPm2DZqfG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPm2DZqfG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPm2DZqfG button.navbar-toggler:focus {
  outline: none;
}
.cid-stPm2DZqfG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPm2DZqfG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPm2DZqfG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPm2DZqfG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPm2DZqfG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPm2DZqfG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPm2DZqfG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPm2DZqfG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPm2DZqfG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPm2DZqfG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPm2DZqfG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPm2DZqfG .collapsed .btn {
  display: flex;
}
.cid-stPm2DZqfG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPm2DZqfG .collapsed .navbar-collapse.collapsing,
.cid-stPm2DZqfG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPm2DZqfG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPm2DZqfG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPm2DZqfG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPm2DZqfG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPm2DZqfG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPm2DZqfG .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPm2DZqfG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPm2DZqfG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPm2DZqfG .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPm2DZqfG .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPm2DZqfG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPm2DZqfG .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPm2DZqfG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPm2DZqfG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPm2DZqfG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPm2DZqfG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPm2DZqfG .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPm2DZqfG .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPm2DZqfG .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPm2DZqfG .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPm2DZqfG .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPm2DZqfG .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPm2DZqfG .navbar-collapse.collapsing,
  .cid-stPm2DZqfG .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPm2DZqfG .navbar-collapse.collapsing .navbar-nav,
  .cid-stPm2DZqfG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPm2DZqfG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPm2DZqfG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPm2DZqfG .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPm2DZqfG .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPm2DZqfG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPm2DZqfG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPm2DZqfG img {
    height: 3.8rem !important;
  }
  .cid-stPm2DZqfG .btn {
    display: flex;
  }
  .cid-stPm2DZqfG button.navbar-toggler {
    display: block;
  }
  .cid-stPm2DZqfG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPm2DZqfG .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPm2DZqfG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPm2DZqfG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPm2DZqfG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPm2DZqfG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPm2DZqfG .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPm2DZqfG .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPm2DZqfG .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPm2DZqfG .nav-link:focus {
  outline: none;
}
.cid-stPm2DZqfG .navbar-toggler {
  position: relative;
}
.cid-stPm2DZqfG .dropdown-item.active,
.cid-stPm2DZqfG .dropdown-item:active {
  color: initial;
}
.cid-stPm2DZqfG .widget-title,
.cid-stPm2DZqfG .widget-icon {
  color: #e9e9e9;
}
.cid-stPm2DZqfG .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPm2DZqfG .menu-logo {
    display: none;
  }
  .cid-stPm2DZqfG .navbar {
    padding: 0;
  }
  .cid-stPm2DZqfG .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPm2DZqfG button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-stKkLo2o8y {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/screen-shot-2015-07-06-at-12.33.55-pm-2-1170x450.png");
  overflow: hidden;
}
.cid-stKkLo2o8y svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-stKkLo2o8y #e2_shape {
  fill: #ffffff !important;
}
.cid-stKkLo2o8y .mbr-text.display-5 {
  font-size: 26px;
}
.cid-stKkLo2o8y .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-stKkLq3Bys {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-stKkLq3Bys .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-stKkLq3Bys h4 {
  margin: 0;
}
.cid-stKkLq3Bys .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-stKkLq3Bys .plan-body {
  padding-bottom: 2rem;
}
.cid-stKkLq3Bys .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stKkLq3Bys .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-stKkLq3Bys .line2 {
  background: #f1894c;
}
.cid-stKkLq3Bys .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-stKkLq3Bys .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-stKkLq3Bys .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-stKkLq3Bys .plan .list-group-item:last-child::after {
  display: none;
}
.cid-stKkLq3Bys .plan-header,
.cid-stKkLq3Bys .plan-body {
  background-color: #fff;
}
.cid-stKkLq3Bys .price-figure {
  font-weight: 700;
}
.cid-stKkLq3Bys .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-stKkLq3Bys .price-figure {
    font-size: 4.25rem;
  }
}
.cid-stKkLq3Bys .color1 {
  color: #f1894c;
}
.cid-stKkLq3Bys .color2 {
  color: #f1894c;
}
.cid-stKkLq3Bys LI {
  color: #767676;
}
.cid-stKkLq3Bys .price-term {
  color: #767676;
}
.cid-stKkLq3Bys UL {
  text-align: left;
}
.cid-stKkLtUpYa {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #e4d295, #5b686b);
}
@media (min-width: 992px) {
  .cid-stKkLtUpYa .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stKkLtUpYa .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-stKkLvTcCO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/monitoreo-grande-640x427.jpg");
}
.cid-stKkLvTcCO h2,
.cid-stKkLvTcCO h3,
.cid-stKkLvTcCO h4,
.cid-stKkLvTcCO p {
  color: #ffffff;
}
.cid-stKkLvTcCO .mbr-overlay {
  z-index: -1;
}
.cid-stKkLvTcCO .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stKkLvTcCO .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stKkLvTcCO .form-control:focus,
.cid-stKkLvTcCO .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stKkLvTcCO .form-group {
  margin-bottom: 1rem;
}
.cid-stKkLvTcCO input::-webkit-input-placeholder,
.cid-stKkLvTcCO textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stKkLvTcCO input:-moz-placeholder,
.cid-stKkLvTcCO textarea:-moz-placeholder {
  color: #656565;
}
.cid-stKkLvTcCO .jq-selectbox li,
.cid-stKkLvTcCO .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stKkLvTcCO .jq-selectbox li:hover,
.cid-stKkLvTcCO .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stKkLvTcCO .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stKkLvTcCO .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stKkLvTcCO .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-stKkLvTcCO .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stKkLvTcCO .mbr-text {
  color: #767676;
}
.cid-stKkLvTcCO .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stKkLvTcCO .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stKkLvTcCO .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stKkLvTcCO a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stKkLvTcCO .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stKkLvTcCO .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stKkLvTcCO textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-stKkLvTcCO .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stKkLvTcCO .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stKkLvTcCO .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stKkLvTcCO h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stKkLvTcCO .block-content {
    padding: 0;
  }
  .cid-stKkLvTcCO .form-block {
    padding: 1rem;
  }
}
.cid-stKkLyxEHn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-stKkLyxEHn .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-stKkLyxEHn .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-stKkLyxEHn .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-stKkLyxEHn .mbr-text {
  color: #444;
}
.cid-stKkLyxEHn h5 {
  margin-bottom: 0;
}
.cid-stKkLyxEHn .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stKkLyxEHn .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-stKkLyxEHn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-stKkLyxEHn .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-stKkLyxEHn .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stKkLyxEHn .social-list a:hover {
  opacity: .4;
}
.cid-stKkLyxEHn .media-container-row > div {
  padding: 0px;
}
.cid-stKkLyxEHn .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stKkLyxEHn .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-stKkLyxEHn .group-title SPAN {
  color: #656565;
}
.cid-stKkLyxEHn .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-stKkLyxEHn .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stKkLyxEHn h3 {
    margin-bottom: 10px;
  }
}
.cid-stKkLyxEHn .links SPAN {
  color: #9e9e9e;
}
.cid-stKkLyxEHn .links,
.cid-stKkLyxEHn .social-list {
  color: #ffffff;
}
.cid-stKkLyxEHn .links,
.cid-stKkLyxEHn .navbar-brand {
  color: #ffffff;
}
.cid-stKkLC1jOw .hidden {
  display: none;
}
.cid-stKkLC1jOw .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-stKkLC1jOw .floating-bar:hover {
  background-color: #03be00;
}
.cid-stKkLC1jOw .floating-button {
  color: #ffffff;
}
.cid-stKkLC1jOw .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stPm8UOFH1 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPm8UOFH1 .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPm8UOFH1 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPm8UOFH1 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm8UOFH1 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPm8UOFH1 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPm8UOFH1 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPm8UOFH1 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPm8UOFH1 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPm8UOFH1 .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPm8UOFH1 .dropdown-item {
  padding: 0;
}
.cid-stPm8UOFH1 .dropdown-item,
.cid-stPm8UOFH1 .nav-link,
.cid-stPm8UOFH1 .brand-name {
  font-style: normal;
}
.cid-stPm8UOFH1 .dropdown-item:hover,
.cid-stPm8UOFH1 .nav-link:hover,
.cid-stPm8UOFH1 .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPm8UOFH1 .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPm8UOFH1 .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPm8UOFH1 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPm8UOFH1 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPm8UOFH1 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPm8UOFH1 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPm8UOFH1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPm8UOFH1 .content-text {
  margin-bottom: 0;
}
.cid-stPm8UOFH1 .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPm8UOFH1 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPm8UOFH1 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPm8UOFH1 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPm8UOFH1 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPm8UOFH1 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPm8UOFH1 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPm8UOFH1 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPm8UOFH1 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPm8UOFH1 .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPm8UOFH1 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPm8UOFH1 .content-right-side {
  text-align: center;
}
.cid-stPm8UOFH1 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPm8UOFH1 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPm8UOFH1 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPm8UOFH1 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm8UOFH1 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPm8UOFH1 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPm8UOFH1 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPm8UOFH1 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPm8UOFH1 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPm8UOFH1 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPm8UOFH1 .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPm8UOFH1 .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPm8UOFH1 .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPm8UOFH1 .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPm8UOFH1 .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPm8UOFH1 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPm8UOFH1 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPm8UOFH1 .navbar-toggler {
    display: none;
  }
  .cid-stPm8UOFH1 .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPm8UOFH1 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPm8UOFH1 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPm8UOFH1 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPm8UOFH1 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPm8UOFH1 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPm8UOFH1 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPm8UOFH1 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPm8UOFH1 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPm8UOFH1 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPm8UOFH1 .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-stPm8UOFH1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPm8UOFH1 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPm8UOFH1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPm8UOFH1 .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-stPm8UOFH1 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPm8UOFH1 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPm8UOFH1 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPm8UOFH1 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPm8UOFH1 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPm8UOFH1 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPm8UOFH1 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPm8UOFH1 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPm8UOFH1 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPm8UOFH1 button.navbar-toggler:focus {
  outline: none;
}
.cid-stPm8UOFH1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPm8UOFH1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPm8UOFH1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPm8UOFH1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPm8UOFH1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPm8UOFH1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPm8UOFH1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPm8UOFH1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPm8UOFH1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPm8UOFH1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPm8UOFH1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPm8UOFH1 .collapsed .btn {
  display: flex;
}
.cid-stPm8UOFH1 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPm8UOFH1 .collapsed .navbar-collapse.collapsing,
.cid-stPm8UOFH1 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPm8UOFH1 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPm8UOFH1 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPm8UOFH1 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPm8UOFH1 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPm8UOFH1 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPm8UOFH1 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPm8UOFH1 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPm8UOFH1 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPm8UOFH1 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPm8UOFH1 .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPm8UOFH1 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPm8UOFH1 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPm8UOFH1 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPm8UOFH1 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPm8UOFH1 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPm8UOFH1 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPm8UOFH1 .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPm8UOFH1 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPm8UOFH1 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPm8UOFH1 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPm8UOFH1 .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPm8UOFH1 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPm8UOFH1 .navbar-collapse.collapsing,
  .cid-stPm8UOFH1 .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPm8UOFH1 .navbar-collapse.collapsing .navbar-nav,
  .cid-stPm8UOFH1 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPm8UOFH1 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPm8UOFH1 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPm8UOFH1 .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPm8UOFH1 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPm8UOFH1 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPm8UOFH1 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPm8UOFH1 img {
    height: 3.8rem !important;
  }
  .cid-stPm8UOFH1 .btn {
    display: flex;
  }
  .cid-stPm8UOFH1 button.navbar-toggler {
    display: block;
  }
  .cid-stPm8UOFH1 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPm8UOFH1 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPm8UOFH1 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPm8UOFH1 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPm8UOFH1 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPm8UOFH1 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPm8UOFH1 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPm8UOFH1 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPm8UOFH1 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPm8UOFH1 .nav-link:focus {
  outline: none;
}
.cid-stPm8UOFH1 .navbar-toggler {
  position: relative;
}
.cid-stPm8UOFH1 .dropdown-item.active,
.cid-stPm8UOFH1 .dropdown-item:active {
  color: initial;
}
.cid-stPm8UOFH1 .widget-title,
.cid-stPm8UOFH1 .widget-icon {
  color: #e9e9e9;
}
.cid-stPm8UOFH1 .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPm8UOFH1 .menu-logo {
    display: none;
  }
  .cid-stPm8UOFH1 .navbar {
    padding: 0;
  }
  .cid-stPm8UOFH1 .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPm8UOFH1 button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-stOsXVmeFy {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/screen-shot-2015-07-06-at-12.33.55-pm-2-1170x450.png");
  overflow: hidden;
}
.cid-stOsXVmeFy svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-stOsXVmeFy #e2_shape {
  fill: #ffffff !important;
}
.cid-stOsXVmeFy .mbr-text.display-5 {
  font-size: 26px;
}
.cid-stOsXVmeFy .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-stOsXX1d3a {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-stOsXX1d3a .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-stOsXX1d3a h4 {
  margin: 0;
}
.cid-stOsXX1d3a .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-stOsXX1d3a .plan-body {
  padding-bottom: 2rem;
}
.cid-stOsXX1d3a .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stOsXX1d3a .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-stOsXX1d3a .line2 {
  background: #f1894c;
}
.cid-stOsXX1d3a .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-stOsXX1d3a .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-stOsXX1d3a .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-stOsXX1d3a .plan .list-group-item:last-child::after {
  display: none;
}
.cid-stOsXX1d3a .plan-header,
.cid-stOsXX1d3a .plan-body {
  background-color: #fff;
}
.cid-stOsXX1d3a .price-figure {
  font-weight: 700;
}
.cid-stOsXX1d3a .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-stOsXX1d3a .price-figure {
    font-size: 4.25rem;
  }
}
.cid-stOsXX1d3a .color1 {
  color: #f1894c;
}
.cid-stOsXX1d3a .color2 {
  color: #f1894c;
}
.cid-stOsXX1d3a LI {
  color: #767676;
}
.cid-stOsXX1d3a .price-term {
  color: #767676;
}
.cid-stOsXX1d3a UL {
  text-align: left;
}
.cid-stOsY0Elc7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #e4d295, #5b686b);
}
@media (min-width: 992px) {
  .cid-stOsY0Elc7 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stOsY0Elc7 .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-stOsY2GBsj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/monitoreo-grande-640x427.jpg");
}
.cid-stOsY2GBsj h2,
.cid-stOsY2GBsj h3,
.cid-stOsY2GBsj h4,
.cid-stOsY2GBsj p {
  color: #ffffff;
}
.cid-stOsY2GBsj .mbr-overlay {
  z-index: -1;
}
.cid-stOsY2GBsj .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stOsY2GBsj .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stOsY2GBsj .form-control:focus,
.cid-stOsY2GBsj .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stOsY2GBsj .form-group {
  margin-bottom: 1rem;
}
.cid-stOsY2GBsj input::-webkit-input-placeholder,
.cid-stOsY2GBsj textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stOsY2GBsj input:-moz-placeholder,
.cid-stOsY2GBsj textarea:-moz-placeholder {
  color: #656565;
}
.cid-stOsY2GBsj .jq-selectbox li,
.cid-stOsY2GBsj .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stOsY2GBsj .jq-selectbox li:hover,
.cid-stOsY2GBsj .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stOsY2GBsj .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stOsY2GBsj .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stOsY2GBsj .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-stOsY2GBsj .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOsY2GBsj .mbr-text {
  color: #767676;
}
.cid-stOsY2GBsj .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stOsY2GBsj .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stOsY2GBsj .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stOsY2GBsj a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stOsY2GBsj .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stOsY2GBsj .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stOsY2GBsj textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-stOsY2GBsj .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stOsY2GBsj .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stOsY2GBsj .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stOsY2GBsj h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stOsY2GBsj .block-content {
    padding: 0;
  }
  .cid-stOsY2GBsj .form-block {
    padding: 1rem;
  }
}
.cid-stOsY51R2d {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-stOsY51R2d .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-stOsY51R2d .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-stOsY51R2d .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-stOsY51R2d .mbr-text {
  color: #444;
}
.cid-stOsY51R2d h5 {
  margin-bottom: 0;
}
.cid-stOsY51R2d .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOsY51R2d .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-stOsY51R2d .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-stOsY51R2d .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-stOsY51R2d .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stOsY51R2d .social-list a:hover {
  opacity: .4;
}
.cid-stOsY51R2d .media-container-row > div {
  padding: 0px;
}
.cid-stOsY51R2d .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stOsY51R2d .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-stOsY51R2d .group-title SPAN {
  color: #656565;
}
.cid-stOsY51R2d .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-stOsY51R2d .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stOsY51R2d h3 {
    margin-bottom: 10px;
  }
}
.cid-stOsY51R2d .links SPAN {
  color: #9e9e9e;
}
.cid-stOsY51R2d .links,
.cid-stOsY51R2d .social-list {
  color: #ffffff;
}
.cid-stOsY51R2d .links,
.cid-stOsY51R2d .navbar-brand {
  color: #ffffff;
}
.cid-stOsY8gOo1 .hidden {
  display: none;
}
.cid-stOsY8gOo1 .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-stOsY8gOo1 .floating-bar:hover {
  background-color: #03be00;
}
.cid-stOsY8gOo1 .floating-button {
  color: #ffffff;
}
.cid-stOsY8gOo1 .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stPmcj2gSb .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPmcj2gSb .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPmcj2gSb .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPmcj2gSb .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPmcj2gSb .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPmcj2gSb .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPmcj2gSb .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPmcj2gSb .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPmcj2gSb .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPmcj2gSb .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPmcj2gSb .dropdown-item {
  padding: 0;
}
.cid-stPmcj2gSb .dropdown-item,
.cid-stPmcj2gSb .nav-link,
.cid-stPmcj2gSb .brand-name {
  font-style: normal;
}
.cid-stPmcj2gSb .dropdown-item:hover,
.cid-stPmcj2gSb .nav-link:hover,
.cid-stPmcj2gSb .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPmcj2gSb .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPmcj2gSb .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPmcj2gSb .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPmcj2gSb .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPmcj2gSb .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPmcj2gSb .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPmcj2gSb .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPmcj2gSb .content-text {
  margin-bottom: 0;
}
.cid-stPmcj2gSb .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPmcj2gSb .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPmcj2gSb .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPmcj2gSb .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPmcj2gSb .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPmcj2gSb .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPmcj2gSb .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPmcj2gSb .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPmcj2gSb .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPmcj2gSb .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPmcj2gSb .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPmcj2gSb .content-right-side {
  text-align: center;
}
.cid-stPmcj2gSb .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPmcj2gSb .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPmcj2gSb .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPmcj2gSb .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPmcj2gSb .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPmcj2gSb .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPmcj2gSb .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPmcj2gSb .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPmcj2gSb .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPmcj2gSb .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPmcj2gSb .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPmcj2gSb .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPmcj2gSb .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPmcj2gSb .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPmcj2gSb .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPmcj2gSb .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPmcj2gSb .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPmcj2gSb .navbar-toggler {
    display: none;
  }
  .cid-stPmcj2gSb .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPmcj2gSb .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPmcj2gSb .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPmcj2gSb .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPmcj2gSb .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPmcj2gSb .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPmcj2gSb .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPmcj2gSb .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPmcj2gSb .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPmcj2gSb .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPmcj2gSb .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-stPmcj2gSb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPmcj2gSb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPmcj2gSb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPmcj2gSb .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-stPmcj2gSb .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPmcj2gSb .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPmcj2gSb .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPmcj2gSb .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPmcj2gSb .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPmcj2gSb .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPmcj2gSb .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPmcj2gSb .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPmcj2gSb button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPmcj2gSb button.navbar-toggler:focus {
  outline: none;
}
.cid-stPmcj2gSb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPmcj2gSb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPmcj2gSb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPmcj2gSb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPmcj2gSb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPmcj2gSb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPmcj2gSb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPmcj2gSb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPmcj2gSb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPmcj2gSb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPmcj2gSb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPmcj2gSb .collapsed .btn {
  display: flex;
}
.cid-stPmcj2gSb .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPmcj2gSb .collapsed .navbar-collapse.collapsing,
.cid-stPmcj2gSb .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPmcj2gSb .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPmcj2gSb .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPmcj2gSb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPmcj2gSb .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPmcj2gSb .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPmcj2gSb .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPmcj2gSb .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPmcj2gSb .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPmcj2gSb .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPmcj2gSb .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPmcj2gSb .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPmcj2gSb .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPmcj2gSb .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPmcj2gSb .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPmcj2gSb .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPmcj2gSb .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPmcj2gSb .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPmcj2gSb .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPmcj2gSb .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPmcj2gSb .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPmcj2gSb .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPmcj2gSb .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPmcj2gSb .navbar-collapse.collapsing,
  .cid-stPmcj2gSb .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPmcj2gSb .navbar-collapse.collapsing .navbar-nav,
  .cid-stPmcj2gSb .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPmcj2gSb .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPmcj2gSb .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPmcj2gSb .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPmcj2gSb .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPmcj2gSb .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPmcj2gSb .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPmcj2gSb img {
    height: 3.8rem !important;
  }
  .cid-stPmcj2gSb .btn {
    display: flex;
  }
  .cid-stPmcj2gSb button.navbar-toggler {
    display: block;
  }
  .cid-stPmcj2gSb .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPmcj2gSb .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPmcj2gSb .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPmcj2gSb .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPmcj2gSb .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPmcj2gSb .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPmcj2gSb .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPmcj2gSb .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPmcj2gSb .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPmcj2gSb .nav-link:focus {
  outline: none;
}
.cid-stPmcj2gSb .navbar-toggler {
  position: relative;
}
.cid-stPmcj2gSb .dropdown-item.active,
.cid-stPmcj2gSb .dropdown-item:active {
  color: initial;
}
.cid-stPmcj2gSb .widget-title,
.cid-stPmcj2gSb .widget-icon {
  color: #e9e9e9;
}
.cid-stPmcj2gSb .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPmcj2gSb .menu-logo {
    display: none;
  }
  .cid-stPmcj2gSb .navbar {
    padding: 0;
  }
  .cid-stPmcj2gSb .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPmcj2gSb button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-stOFFh7YFt {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/screen-shot-2015-07-06-at-12.33.55-pm-2-1170x450.png");
  overflow: hidden;
}
.cid-stOFFh7YFt svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-stOFFh7YFt #e2_shape {
  fill: #ffffff !important;
}
.cid-stOFFh7YFt .mbr-text.display-5 {
  font-size: 26px;
}
.cid-stOFFh7YFt .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-stOFFiViSD {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-stOFFiViSD .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-stOFFiViSD h4 {
  margin: 0;
}
.cid-stOFFiViSD .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-stOFFiViSD .plan-body {
  padding-bottom: 2rem;
}
.cid-stOFFiViSD .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stOFFiViSD .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-stOFFiViSD .line2 {
  background: #f1894c;
}
.cid-stOFFiViSD .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-stOFFiViSD .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-stOFFiViSD .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-stOFFiViSD .plan .list-group-item:last-child::after {
  display: none;
}
.cid-stOFFiViSD .plan-header,
.cid-stOFFiViSD .plan-body {
  background-color: #fff;
}
.cid-stOFFiViSD .price-figure {
  font-weight: 700;
}
.cid-stOFFiViSD .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-stOFFiViSD .price-figure {
    font-size: 4.25rem;
  }
}
.cid-stOFFiViSD .color1 {
  color: #f1894c;
}
.cid-stOFFiViSD .color2 {
  color: #f1894c;
}
.cid-stOFFiViSD LI {
  color: #767676;
}
.cid-stOFFiViSD .price-term {
  color: #767676;
}
.cid-stOFFiViSD UL {
  text-align: left;
}
.cid-stOFFmzbLc {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #e4d295, #5b686b);
}
@media (min-width: 992px) {
  .cid-stOFFmzbLc .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stOFFmzbLc .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-stOFFonN7q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/monitoreo-grande-640x427.jpg");
}
.cid-stOFFonN7q h2,
.cid-stOFFonN7q h3,
.cid-stOFFonN7q h4,
.cid-stOFFonN7q p {
  color: #ffffff;
}
.cid-stOFFonN7q .mbr-overlay {
  z-index: -1;
}
.cid-stOFFonN7q .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stOFFonN7q .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stOFFonN7q .form-control:focus,
.cid-stOFFonN7q .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stOFFonN7q .form-group {
  margin-bottom: 1rem;
}
.cid-stOFFonN7q input::-webkit-input-placeholder,
.cid-stOFFonN7q textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stOFFonN7q input:-moz-placeholder,
.cid-stOFFonN7q textarea:-moz-placeholder {
  color: #656565;
}
.cid-stOFFonN7q .jq-selectbox li,
.cid-stOFFonN7q .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stOFFonN7q .jq-selectbox li:hover,
.cid-stOFFonN7q .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stOFFonN7q .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stOFFonN7q .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stOFFonN7q .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-stOFFonN7q .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOFFonN7q .mbr-text {
  color: #767676;
}
.cid-stOFFonN7q .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stOFFonN7q .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stOFFonN7q .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stOFFonN7q a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stOFFonN7q .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stOFFonN7q .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stOFFonN7q textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-stOFFonN7q .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stOFFonN7q .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stOFFonN7q .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stOFFonN7q h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stOFFonN7q .block-content {
    padding: 0;
  }
  .cid-stOFFonN7q .form-block {
    padding: 1rem;
  }
}
.cid-stOFFqDnWq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-stOFFqDnWq .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-stOFFqDnWq .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-stOFFqDnWq .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-stOFFqDnWq .mbr-text {
  color: #444;
}
.cid-stOFFqDnWq h5 {
  margin-bottom: 0;
}
.cid-stOFFqDnWq .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOFFqDnWq .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-stOFFqDnWq .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-stOFFqDnWq .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-stOFFqDnWq .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stOFFqDnWq .social-list a:hover {
  opacity: .4;
}
.cid-stOFFqDnWq .media-container-row > div {
  padding: 0px;
}
.cid-stOFFqDnWq .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stOFFqDnWq .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-stOFFqDnWq .group-title SPAN {
  color: #656565;
}
.cid-stOFFqDnWq .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-stOFFqDnWq .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stOFFqDnWq h3 {
    margin-bottom: 10px;
  }
}
.cid-stOFFqDnWq .links SPAN {
  color: #9e9e9e;
}
.cid-stOFFqDnWq .links,
.cid-stOFFqDnWq .social-list {
  color: #ffffff;
}
.cid-stOFFqDnWq .links,
.cid-stOFFqDnWq .navbar-brand {
  color: #ffffff;
}
.cid-stOFFu2Dsa .hidden {
  display: none;
}
.cid-stOFFu2Dsa .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-stOFFu2Dsa .floating-bar:hover {
  background-color: #03be00;
}
.cid-stOFFu2Dsa .floating-button {
  color: #ffffff;
}
.cid-stOFFu2Dsa .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stP7xwCbys .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stP7xwCbys .navbar-fixed-top {
  padding-top: 0;
}
.cid-stP7xwCbys .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stP7xwCbys .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stP7xwCbys .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stP7xwCbys .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stP7xwCbys .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stP7xwCbys .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stP7xwCbys .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stP7xwCbys .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stP7xwCbys .dropdown-item {
  padding: 0;
}
.cid-stP7xwCbys .dropdown-item,
.cid-stP7xwCbys .nav-link,
.cid-stP7xwCbys .brand-name {
  font-style: normal;
}
.cid-stP7xwCbys .dropdown-item:hover,
.cid-stP7xwCbys .nav-link:hover,
.cid-stP7xwCbys .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stP7xwCbys .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stP7xwCbys .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stP7xwCbys .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stP7xwCbys .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stP7xwCbys .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stP7xwCbys .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stP7xwCbys .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stP7xwCbys .content-text {
  margin-bottom: 0;
}
.cid-stP7xwCbys .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stP7xwCbys .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stP7xwCbys .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stP7xwCbys .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stP7xwCbys .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stP7xwCbys .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stP7xwCbys .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stP7xwCbys .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stP7xwCbys .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stP7xwCbys .nav-dropdown .link {
  font-weight: 400;
}
.cid-stP7xwCbys .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stP7xwCbys .content-right-side {
  text-align: center;
}
.cid-stP7xwCbys .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stP7xwCbys .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stP7xwCbys .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stP7xwCbys .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stP7xwCbys .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stP7xwCbys .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stP7xwCbys .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stP7xwCbys .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stP7xwCbys .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stP7xwCbys .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stP7xwCbys .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stP7xwCbys .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stP7xwCbys .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stP7xwCbys .navbar {
    display: block;
    padding: 0;
  }
  .cid-stP7xwCbys .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stP7xwCbys .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stP7xwCbys .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stP7xwCbys .navbar-toggler {
    display: none;
  }
  .cid-stP7xwCbys .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stP7xwCbys .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stP7xwCbys .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stP7xwCbys .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stP7xwCbys .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stP7xwCbys .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stP7xwCbys .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stP7xwCbys .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stP7xwCbys .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stP7xwCbys .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stP7xwCbys .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-stP7xwCbys .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stP7xwCbys .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stP7xwCbys .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stP7xwCbys .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-stP7xwCbys .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stP7xwCbys .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stP7xwCbys .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stP7xwCbys .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stP7xwCbys .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stP7xwCbys .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stP7xwCbys .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stP7xwCbys .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stP7xwCbys button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stP7xwCbys button.navbar-toggler:focus {
  outline: none;
}
.cid-stP7xwCbys button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stP7xwCbys button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stP7xwCbys button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stP7xwCbys button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stP7xwCbys button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stP7xwCbys nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stP7xwCbys nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stP7xwCbys nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stP7xwCbys nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stP7xwCbys .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stP7xwCbys .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stP7xwCbys .collapsed .btn {
  display: flex;
}
.cid-stP7xwCbys .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stP7xwCbys .collapsed .navbar-collapse.collapsing,
.cid-stP7xwCbys .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stP7xwCbys .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stP7xwCbys .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stP7xwCbys .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stP7xwCbys .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stP7xwCbys .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stP7xwCbys .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stP7xwCbys .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stP7xwCbys .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stP7xwCbys .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stP7xwCbys .collapsed button.navbar-toggler {
  display: block;
}
.cid-stP7xwCbys .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stP7xwCbys .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stP7xwCbys .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stP7xwCbys .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stP7xwCbys .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stP7xwCbys .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stP7xwCbys .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stP7xwCbys .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stP7xwCbys .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stP7xwCbys .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stP7xwCbys .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stP7xwCbys .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stP7xwCbys .navbar-collapse.collapsing,
  .cid-stP7xwCbys .navbar-collapse.show {
    display: block !important;
  }
  .cid-stP7xwCbys .navbar-collapse.collapsing .navbar-nav,
  .cid-stP7xwCbys .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stP7xwCbys .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stP7xwCbys .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stP7xwCbys .navbar-collapse.collapsing .navbar-buttons,
  .cid-stP7xwCbys .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stP7xwCbys .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stP7xwCbys .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stP7xwCbys img {
    height: 3.8rem !important;
  }
  .cid-stP7xwCbys .btn {
    display: flex;
  }
  .cid-stP7xwCbys button.navbar-toggler {
    display: block;
  }
  .cid-stP7xwCbys .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stP7xwCbys .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stP7xwCbys .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stP7xwCbys .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stP7xwCbys .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stP7xwCbys .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stP7xwCbys .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stP7xwCbys .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stP7xwCbys .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stP7xwCbys .nav-link:focus {
  outline: none;
}
.cid-stP7xwCbys .navbar-toggler {
  position: relative;
}
.cid-stP7xwCbys .dropdown-item.active,
.cid-stP7xwCbys .dropdown-item:active {
  color: initial;
}
.cid-stP7xwCbys .widget-title,
.cid-stP7xwCbys .widget-icon {
  color: #e9e9e9;
}
.cid-stP7xwCbys .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stP7xwCbys .menu-logo {
    display: none;
  }
  .cid-stP7xwCbys .navbar {
    padding: 0;
  }
  .cid-stP7xwCbys .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stP7xwCbys button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-stOLcSkevK {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/screen-shot-2015-07-06-at-12.33.55-pm-2-1170x450.png");
  overflow: hidden;
}
.cid-stOLcSkevK svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-stOLcSkevK #e2_shape {
  fill: #ffffff !important;
}
.cid-stOLcSkevK .mbr-text.display-5 {
  font-size: 26px;
}
.cid-stOLcSkevK .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-stOLcVAOlN {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-stOLcVAOlN .list-group-item {
  padding: .5rem 3.25rem;
}
.cid-stOLcVAOlN h4 {
  margin: 0;
}
.cid-stOLcVAOlN .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-stOLcVAOlN .plan-body {
  padding-bottom: 2rem;
}
.cid-stOLcVAOlN .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stOLcVAOlN .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f7ed4a;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}
.cid-stOLcVAOlN .line2 {
  background: #f1894c;
}
.cid-stOLcVAOlN .plan {
  word-break: break-word;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
}
.cid-stOLcVAOlN .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-stOLcVAOlN .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-stOLcVAOlN .plan .list-group-item:last-child::after {
  display: none;
}
.cid-stOLcVAOlN .plan-header,
.cid-stOLcVAOlN .plan-body {
  background-color: #fff;
}
.cid-stOLcVAOlN .price-figure {
  font-weight: 700;
}
.cid-stOLcVAOlN .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-stOLcVAOlN .price-figure {
    font-size: 4.25rem;
  }
}
.cid-stOLcVAOlN .color1 {
  color: #f1894c;
}
.cid-stOLcVAOlN .color2 {
  color: #f1894c;
}
.cid-stOLcVAOlN LI {
  color: #767676;
}
.cid-stOLcVAOlN .price-term {
  color: #767676;
}
.cid-stOLcVAOlN UL {
  text-align: left;
}
.cid-stOLd3uidN {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #e4d295, #5b686b);
}
@media (min-width: 992px) {
  .cid-stOLd3uidN .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stOLd3uidN .mbr-figure {
    padding-top: 3rem;
  }
}
.cid-stOLd71FmQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/monitoreo-grande-640x427.jpg");
}
.cid-stOLd71FmQ h2,
.cid-stOLd71FmQ h3,
.cid-stOLd71FmQ h4,
.cid-stOLd71FmQ p {
  color: #ffffff;
}
.cid-stOLd71FmQ .mbr-overlay {
  z-index: -1;
}
.cid-stOLd71FmQ .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-stOLd71FmQ .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-stOLd71FmQ .form-control:focus,
.cid-stOLd71FmQ .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-stOLd71FmQ .form-group {
  margin-bottom: 1rem;
}
.cid-stOLd71FmQ input::-webkit-input-placeholder,
.cid-stOLd71FmQ textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-stOLd71FmQ input:-moz-placeholder,
.cid-stOLd71FmQ textarea:-moz-placeholder {
  color: #656565;
}
.cid-stOLd71FmQ .jq-selectbox li,
.cid-stOLd71FmQ .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stOLd71FmQ .jq-selectbox li:hover,
.cid-stOLd71FmQ .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-stOLd71FmQ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stOLd71FmQ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-stOLd71FmQ .subtext {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-stOLd71FmQ .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOLd71FmQ .mbr-text {
  color: #767676;
}
.cid-stOLd71FmQ .form-block {
  padding: 3rem;
  position: relative;
}
.cid-stOLd71FmQ .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-stOLd71FmQ .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-stOLd71FmQ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-stOLd71FmQ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-stOLd71FmQ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-stOLd71FmQ textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-stOLd71FmQ .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-stOLd71FmQ .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-stOLd71FmQ .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stOLd71FmQ h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-stOLd71FmQ .block-content {
    padding: 0;
  }
  .cid-stOLd71FmQ .form-block {
    padding: 1rem;
  }
}
.cid-stOLdbcpYy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-stOLdbcpYy .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-stOLdbcpYy .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-stOLdbcpYy .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-stOLdbcpYy .mbr-text {
  color: #444;
}
.cid-stOLdbcpYy h5 {
  margin-bottom: 0;
}
.cid-stOLdbcpYy .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stOLdbcpYy .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-stOLdbcpYy .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-stOLdbcpYy .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-stOLdbcpYy .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stOLdbcpYy .social-list a:hover {
  opacity: .4;
}
.cid-stOLdbcpYy .media-container-row > div {
  padding: 0px;
}
.cid-stOLdbcpYy .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-stOLdbcpYy .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-stOLdbcpYy .group-title SPAN {
  color: #656565;
}
.cid-stOLdbcpYy .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-stOLdbcpYy .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-stOLdbcpYy h3 {
    margin-bottom: 10px;
  }
}
.cid-stOLdbcpYy .links SPAN {
  color: #9e9e9e;
}
.cid-stOLdbcpYy .links,
.cid-stOLdbcpYy .social-list {
  color: #ffffff;
}
.cid-stOLdbcpYy .links,
.cid-stOLdbcpYy .navbar-brand {
  color: #ffffff;
}
.cid-stOLdfJ2KY .hidden {
  display: none;
}
.cid-stOLdfJ2KY .floating-bar {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #03be00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 2px #999;
  transition: 0.3s;
  z-index: 99999;
}
.cid-stOLdfJ2KY .floating-bar:hover {
  background-color: #03be00;
}
.cid-stOLdfJ2KY .floating-button {
  color: #ffffff;
}
.cid-stOLdfJ2KY .valign {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.cid-stPlPaEgZH .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-stPlPaEgZH .navbar-fixed-top {
  padding-top: 0;
}
.cid-stPlPaEgZH .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-stPlPaEgZH .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlPaEgZH .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-stPlPaEgZH .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-stPlPaEgZH .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-stPlPaEgZH .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-stPlPaEgZH .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-stPlPaEgZH .menu-content-top {
  background: #e99a1f;
  max-width: 100%;
  display: none;
  -webkit-justify-content: left;
  justify-content: left;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-stPlPaEgZH .dropdown-item {
  padding: 0;
}
.cid-stPlPaEgZH .dropdown-item,
.cid-stPlPaEgZH .nav-link,
.cid-stPlPaEgZH .brand-name {
  font-style: normal;
}
.cid-stPlPaEgZH .dropdown-item:hover,
.cid-stPlPaEgZH .nav-link:hover,
.cid-stPlPaEgZH .brand-name:hover {
  color: #e99a1f !important;
}
.cid-stPlPaEgZH .dropdown-menu {
  background-color: #b2ccd2;
}
.cid-stPlPaEgZH .dropdown-item:active {
  background-color: #b2ccd2;
}
.cid-stPlPaEgZH .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-stPlPaEgZH .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-stPlPaEgZH .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-stPlPaEgZH .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-stPlPaEgZH .dropdown-item:before {
  font-family: MobiriseIcons !important;
  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-stPlPaEgZH .content-text {
  margin-bottom: 0;
}
.cid-stPlPaEgZH .navbar-nav {
  position: relative;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-stPlPaEgZH .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #e99a1f;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-stPlPaEgZH .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-stPlPaEgZH .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-stPlPaEgZH .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-stPlPaEgZH .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlPaEgZH .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-stPlPaEgZH .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-stPlPaEgZH .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stPlPaEgZH .nav-dropdown .link {
  font-weight: 400;
}
.cid-stPlPaEgZH .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-stPlPaEgZH .content-right-side {
  text-align: center;
}
.cid-stPlPaEgZH .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-stPlPaEgZH .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-stPlPaEgZH .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-stPlPaEgZH .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlPaEgZH .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stPlPaEgZH .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-stPlPaEgZH .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-stPlPaEgZH .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-stPlPaEgZH .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-stPlPaEgZH .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-stPlPaEgZH .navbar .menu-content-top {
    display: flex;
    height: 60px;
  }
  .cid-stPlPaEgZH .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlPaEgZH .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-stPlPaEgZH .navbar {
    display: block;
    padding: 0;
  }
  .cid-stPlPaEgZH .navbar .menu-logo {
    margin: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-stPlPaEgZH .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-stPlPaEgZH .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-stPlPaEgZH .navbar-toggler {
    display: none;
  }
  .cid-stPlPaEgZH .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.cid-stPlPaEgZH .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-stPlPaEgZH .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-stPlPaEgZH .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-stPlPaEgZH .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-stPlPaEgZH .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-stPlPaEgZH .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-stPlPaEgZH .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-stPlPaEgZH .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-stPlPaEgZH .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlPaEgZH .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-stPlPaEgZH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stPlPaEgZH .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-stPlPaEgZH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stPlPaEgZH .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-stPlPaEgZH .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-stPlPaEgZH .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stPlPaEgZH .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-stPlPaEgZH .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-stPlPaEgZH .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-stPlPaEgZH .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-stPlPaEgZH .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-stPlPaEgZH .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-stPlPaEgZH button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
}
.cid-stPlPaEgZH button.navbar-toggler:focus {
  outline: none;
}
.cid-stPlPaEgZH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-stPlPaEgZH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stPlPaEgZH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlPaEgZH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stPlPaEgZH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stPlPaEgZH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlPaEgZH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stPlPaEgZH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stPlPaEgZH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stPlPaEgZH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stPlPaEgZH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stPlPaEgZH .collapsed .btn {
  display: flex;
}
.cid-stPlPaEgZH .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-stPlPaEgZH .collapsed .navbar-collapse.collapsing,
.cid-stPlPaEgZH .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-stPlPaEgZH .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-stPlPaEgZH .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-stPlPaEgZH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-stPlPaEgZH .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-stPlPaEgZH .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-stPlPaEgZH .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-stPlPaEgZH .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-stPlPaEgZH .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-stPlPaEgZH .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-stPlPaEgZH .collapsed button.navbar-toggler {
  display: block;
}
.cid-stPlPaEgZH .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-stPlPaEgZH .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-stPlPaEgZH .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-stPlPaEgZH .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-stPlPaEgZH .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-stPlPaEgZH .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-stPlPaEgZH .collapsed .menu-bottom {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .cid-stPlPaEgZH .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #4f5b77;
  }
  .cid-stPlPaEgZH .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #4f5b77;
  }
}
@media (max-width: 991px) {
  .cid-stPlPaEgZH .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-stPlPaEgZH .menu-bottom {
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-stPlPaEgZH .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-stPlPaEgZH .navbar-collapse.collapsing,
  .cid-stPlPaEgZH .navbar-collapse.show {
    display: block !important;
  }
  .cid-stPlPaEgZH .navbar-collapse.collapsing .navbar-nav,
  .cid-stPlPaEgZH .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-stPlPaEgZH .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-stPlPaEgZH .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-stPlPaEgZH .navbar-collapse.collapsing .navbar-buttons,
  .cid-stPlPaEgZH .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-stPlPaEgZH .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-stPlPaEgZH .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-stPlPaEgZH img {
    height: 3.8rem !important;
  }
  .cid-stPlPaEgZH .btn {
    display: flex;
  }
  .cid-stPlPaEgZH button.navbar-toggler {
    display: block;
  }
  .cid-stPlPaEgZH .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-stPlPaEgZH .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlPaEgZH .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-stPlPaEgZH .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-stPlPaEgZH .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-stPlPaEgZH .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-stPlPaEgZH .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-stPlPaEgZH .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-stPlPaEgZH .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-stPlPaEgZH .nav-link:focus {
  outline: none;
}
.cid-stPlPaEgZH .navbar-toggler {
  position: relative;
}
.cid-stPlPaEgZH .dropdown-item.active,
.cid-stPlPaEgZH .dropdown-item:active {
  color: initial;
}
.cid-stPlPaEgZH .widget-title,
.cid-stPlPaEgZH .widget-icon {
  color: #e9e9e9;
}
.cid-stPlPaEgZH .widget-text {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-stPlPaEgZH .menu-logo {
    display: none;
  }
  .cid-stPlPaEgZH .navbar {
    padding: 0;
  }
  .cid-stPlPaEgZH .menu-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-stPlPaEgZH button.navbar-toggler {
    -webkit-align-self: center;
    align-self: center;
  }
}
.cid-tUmPSlg64A {
  overflow: hidden !important;
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");
}
.cid-tUmPSlg64A .mbr-section-subtitle {
  font-weight: 400;
}
.cid-tUmPSlg64A .mbr-section-title {
  padding-bottom: 2rem;
}
.cid-tUmPSlg64A .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tUmPSlg64A .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tUmPSlg64A .mbr-figure {
    margin-bottom: 3rem;
  }
}
.cid-tUmPSlg64A .form-control {
  min-height: 2.7em;
  padding: 0 1.8rem;
  font-size: 18px;
  background-color: white;
  width: 100%;
}
@media (max-width: 350px) {
  .cid-tUmPSlg64A .input-group-btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tUmPSlg64A .form-control {
    margin-bottom: 10px;
  }
  .cid-tUmPSlg64A .form-group {
    max-width: 300px;
  }
  .cid-tUmPSlg64A .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tUmPSlg64A .form-group,
.cid-tUmPSlg64A .input-group-btn {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .cid-tUmPSlg64A .mbr-form > * {
    margin: 0 0rem;
    align-items: stretch;
  }
  .cid-tUmPSlg64A .col + .input-group-btn .btn,
  .cid-tUmPSlg64A .col-auto + .input-group-btn .btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 100%;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cid-tUmPSlg64A .dragArea > *:nth-last-child(2).col,
  .cid-tUmPSlg64A .dragArea > *:nth-last-child(2).col-auto,
  .cid-tUmPSlg64A .col + .input-group-btn,
  .cid-tUmPSlg64A .col-auto + .input-group-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .cid-tUmPSlg64A .dragArea > *:nth-last-child(2).col input,
  .cid-tUmPSlg64A .dragArea > *:nth-last-child(2).col-auto input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cid-tUmPSlg64A .mbr-section-subtitle,
.cid-tUmPSlg64A .mbr-section-btn {
  color: #efefef;
}
.cid-tUmPJyWwLZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background5-5.jpg");
}
.cid-tUmPJyWwLZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tUmPJyWwLZ p {
  color: #767676;
  text-align: left;
}
.cid-tUmPJyWwLZ .card-box {
  padding-top: 2rem;
}
.cid-tUmPJyWwLZ .card-wrapper {
  height: 100%;
}
.cid-tUmPJyWwLZ img {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}
.cid-tUmPJyWwLZ P {
  text-align: center;
}
.cid-tUmPJyWwLZ .card-title {
  text-align: center;
}
.cid-tUmPJyWwLZ .card-img {
  position: relative;
}
.cid-tUmPJyWwLZ .card-icon {
  position: absolute;
  background: #ffffff;
  height: 70px;
  width: 70px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.22);
  border-radius: 100%;
  padding: 1rem;
  left: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 1rem;
}
.cid-tUmPJyWwLZ .card-icon .mbr-iconfont {
  font-size: 2rem;
  color: #e99a1f;
}
.cid-sr54E6BSnS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sr54E6BSnS .listico {
  padding-right: 1rem;
  color: #656565;
  font-size: 1rem;
}
.cid-sr54E6BSnS .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-sr54E6BSnS .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-sr54E6BSnS .mbr-text {
  color: #444;
}
.cid-sr54E6BSnS h5 {
  margin-bottom: 0;
}
.cid-sr54E6BSnS .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sr54E6BSnS .socicon {
  color: #9e9e9e;
  font-size: 1.2rem;
}
.cid-sr54E6BSnS .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-sr54E6BSnS .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-sr54E6BSnS .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sr54E6BSnS .social-list a:hover {
  opacity: .4;
}
.cid-sr54E6BSnS .media-container-row > div {
  padding: 0px;
}
.cid-sr54E6BSnS .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sr54E6BSnS .group-title {
  text-align: left;
  color: #eff1f5;
}
.cid-sr54E6BSnS .group-title SPAN {
  color: #656565;
}
.cid-sr54E6BSnS .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-sr54E6BSnS .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sr54E6BSnS h3 {
    margin-bottom: 10px;
  }
}
.cid-sr54E6BSnS .links SPAN {
  color: #9e9e9e;
}
.cid-sr54E6BSnS .links,
.cid-sr54E6BSnS .social-list {
  color: #ffffff;
}
.cid-sr54E6BSnS .links,
.cid-sr54E6BSnS .navbar-brand {
  color: #ffffff;
}
