body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.625rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.3125rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.1875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.68rem;
    font-size: calc( 1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.84rem;
    font-size: calc( 1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0175rem + (1.05 - 1.0175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #00056f !important;
}
.bg-success {
  background-color: #fafafa !important;
}
.bg-info {
  background-color: #202020 !important;
}
.bg-warning {
  background-color: #25d366 !important;
}
.bg-danger {
  background-color: #ffca6a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00056f !important;
  border-color: #00056f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000118 !important;
  border-color: #000118 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000118 !important;
  border-color: #000118 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffab00 !important;
  border-color: #ffab00 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a87100 !important;
  border-color: #a87100 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a87100 !important;
  border-color: #a87100 !important;
}
.btn-info,
.btn-info:active {
  background-color: #202020 !important;
  border-color: #202020 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #188942 !important;
  border-color: #188942 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #188942 !important;
  border-color: #188942 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffca6a !important;
  border-color: #ffca6a !important;
  color: #6a4400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ffab13 !important;
  border-color: #ffab13 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6a4400 !important;
  background-color: #ffab13 !important;
  border-color: #ffab13 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #00056f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000118 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00056f !important;
  border-color: #00056f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffab00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a87100 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffab00 !important;
  border-color: #ffab00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #202020;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #202020 !important;
  border-color: #202020 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #25d366;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #188942 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #25d366 !important;
  border-color: #25d366 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffca6a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffab13 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6a4400 !important;
  background-color: #ffca6a !important;
  border-color: #ffca6a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #00056f !important;
}
.text-secondary {
  color: #ffab00 !important;
}
.text-success {
  color: #fafafa !important;
}
.text-info {
  color: #202020 !important;
}
.text-warning {
  color: #25d366 !important;
}
.text-danger {
  color: #ffca6a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000009 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #996700 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c7c7c7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #167c3c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffa604 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #00056f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #202020;
}
.alert-warning {
  background-color: #25d366;
}
.alert-danger {
  background-color: #ffca6a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00056f;
  border-color: #00056f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #00056f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #000bef;
}
.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: #d3d3d3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cef6dd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #00056f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #00056f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00056f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #00056f;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #00056f;
  border-bottom-color: #00056f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #00056f !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: #ffab00 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2300056f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tzam79ls7U {
  background-image: url("../../../assets/images/bg-moveis-para-escritorio-localizado-em-sao-jose-do-rio-preto-1600x1200.jpg");
}
.cid-tzam79ls7U .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzam79ls7U .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tzam79ls7U .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tzam79ls7U .mbr-section-title {
  color: #2a2a2a;
}
.cid-tzam79ls7U .mbr-text,
.cid-tzam79ls7U .mbr-section-btn {
  color: #2a2a2a;
}
.cid-tzamH7zK9d {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tzamH7zK9d .mbr-section-subtitle {
  color: #202020;
  text-align: left;
}
.cid-tzamH7zK9d .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tzamH7zK9d .mbr-section-title {
  color: #202020;
}
.cid-tzao6zjrKM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-tzao6zjrKM .mbr-overlay {
  background: #202020;
  opacity: 0.8;
}
.cid-tzao6zjrKM img,
.cid-tzao6zjrKM .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tzao6zjrKM .item:focus,
.cid-tzao6zjrKM span:focus {
  outline: none;
}
.cid-tzao6zjrKM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tzao6zjrKM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tzao6zjrKM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tzao6zjrKM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzao6zjrKM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tzao6zjrKM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tzao6zjrKM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tzao6zjrKM .mbr-section-title {
  color: #fafafa;
}
.cid-tzao6zjrKM .mbr-text,
.cid-tzao6zjrKM .mbr-section-btn {
  text-align: left;
  color: #202020;
}
.cid-tzao6zjrKM .item-title {
  text-align: left;
  color: #202020;
}
.cid-tzao6zjrKM .item-subtitle {
  text-align: center;
}
.cid-tDRBhMHNxp {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tDRBhMHNxp img {
  width: 120px;
  margin: auto;
}
.cid-tDRBhMHNxp .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tDRBhMHNxp .card {
    max-width: 12.5%;
  }
}
.cid-tDRBhMHNxp .mbr-section-title {
  color: #202020;
}
.cid-tDH20DbWE1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00056f;
}
.cid-tDH20DbWE1 .item {
  padding-bottom: 2rem;
}
.cid-tDH20DbWE1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDH20DbWE1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDH20DbWE1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDH20DbWE1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDH20DbWE1 .carousel-control,
.cid-tDH20DbWE1 .close {
  background: #1b1b1b;
}
.cid-tDH20DbWE1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDH20DbWE1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDH20DbWE1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDH20DbWE1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDH20DbWE1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDH20DbWE1 .close::before {
  content: '\e91a';
}
.cid-tDH20DbWE1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDH20DbWE1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDH20DbWE1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDH20DbWE1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDH20DbWE1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDH20DbWE1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDH20DbWE1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tDH20DbWE1 .carousel-indicators li.active,
.cid-tDH20DbWE1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDH20DbWE1 .carousel-indicators li::after,
.cid-tDH20DbWE1 .carousel-indicators li::before {
  content: none;
}
.cid-tDH20DbWE1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDH20DbWE1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDH20DbWE1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDH20DbWE1 .carousel-indicators {
    display: none;
  }
}
.cid-tDH20DbWE1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDH20DbWE1 .carousel-inner > .active {
  display: block;
}
.cid-tDH20DbWE1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDH20DbWE1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDH20DbWE1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDH20DbWE1 .carousel-control,
  .cid-tDH20DbWE1 .carousel-indicators,
  .cid-tDH20DbWE1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDH20DbWE1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDH20DbWE1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDH20DbWE1 .carousel-indicators .active,
.cid-tDH20DbWE1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDH20DbWE1 .carousel-indicators .active {
  background: #fff;
}
.cid-tDH20DbWE1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDH20DbWE1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDH20DbWE1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDH20DbWE1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDH20DbWE1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDH20DbWE1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDH20DbWE1 .carousel {
  width: 100%;
}
.cid-tDH20DbWE1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDH20DbWE1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDH20DbWE1 .modal.fade .modal-dialog,
.cid-tDH20DbWE1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tDH20DbWE1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDH20DbWE1 H6 {
  text-align: center;
}
.cid-tDH20DbWE1 H3 {
  color: #fafafa;
}
.cid-tDH20DbWE1 H4 {
  color: #fafafa;
}
.cid-tDSPhWRYZ1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #00056f;
}
.cid-tDSPhWRYZ1 .item {
  padding-bottom: 2rem;
}
.cid-tDSPhWRYZ1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDSPhWRYZ1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDSPhWRYZ1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDSPhWRYZ1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDSPhWRYZ1 .carousel-control,
.cid-tDSPhWRYZ1 .close {
  background: #1b1b1b;
}
.cid-tDSPhWRYZ1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDSPhWRYZ1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDSPhWRYZ1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDSPhWRYZ1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDSPhWRYZ1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDSPhWRYZ1 .close::before {
  content: '\e91a';
}
.cid-tDSPhWRYZ1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDSPhWRYZ1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDSPhWRYZ1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDSPhWRYZ1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDSPhWRYZ1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDSPhWRYZ1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDSPhWRYZ1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tDSPhWRYZ1 .carousel-indicators li.active,
.cid-tDSPhWRYZ1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDSPhWRYZ1 .carousel-indicators li::after,
.cid-tDSPhWRYZ1 .carousel-indicators li::before {
  content: none;
}
.cid-tDSPhWRYZ1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDSPhWRYZ1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDSPhWRYZ1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDSPhWRYZ1 .carousel-indicators {
    display: none;
  }
}
.cid-tDSPhWRYZ1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDSPhWRYZ1 .carousel-inner > .active {
  display: block;
}
.cid-tDSPhWRYZ1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDSPhWRYZ1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDSPhWRYZ1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDSPhWRYZ1 .carousel-control,
  .cid-tDSPhWRYZ1 .carousel-indicators,
  .cid-tDSPhWRYZ1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDSPhWRYZ1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDSPhWRYZ1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDSPhWRYZ1 .carousel-indicators .active,
.cid-tDSPhWRYZ1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDSPhWRYZ1 .carousel-indicators .active {
  background: #fff;
}
.cid-tDSPhWRYZ1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDSPhWRYZ1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDSPhWRYZ1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDSPhWRYZ1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDSPhWRYZ1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDSPhWRYZ1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDSPhWRYZ1 .carousel {
  width: 100%;
}
.cid-tDSPhWRYZ1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDSPhWRYZ1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDSPhWRYZ1 .modal.fade .modal-dialog,
.cid-tDSPhWRYZ1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tDSPhWRYZ1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDSPhWRYZ1 H6 {
  text-align: center;
}
.cid-tDSPhWRYZ1 H3 {
  color: #fafafa;
}
.cid-tDSPhWRYZ1 H4 {
  color: #fafafa;
}
.cid-tEZK7dFKGq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEZK7dFKGq .item {
  padding-bottom: 2rem;
}
.cid-tEZK7dFKGq .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-tEZK7dFKGq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tEZK7dFKGq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tEZK7dFKGq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tEZK7dFKGq .carousel-control,
.cid-tEZK7dFKGq .close {
  background: #1b1b1b;
}
.cid-tEZK7dFKGq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tEZK7dFKGq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tEZK7dFKGq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tEZK7dFKGq .carousel-control-next span {
  margin-left: 5px;
}
.cid-tEZK7dFKGq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tEZK7dFKGq .close::before {
  content: '\e91a';
}
.cid-tEZK7dFKGq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tEZK7dFKGq .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tEZK7dFKGq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEZK7dFKGq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tEZK7dFKGq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tEZK7dFKGq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tEZK7dFKGq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tEZK7dFKGq .carousel-indicators li.active,
.cid-tEZK7dFKGq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tEZK7dFKGq .carousel-indicators li::after,
.cid-tEZK7dFKGq .carousel-indicators li::before {
  content: none;
}
.cid-tEZK7dFKGq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tEZK7dFKGq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tEZK7dFKGq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tEZK7dFKGq .carousel-indicators {
    display: none;
  }
}
.cid-tEZK7dFKGq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tEZK7dFKGq .carousel-inner > .active {
  display: block;
}
.cid-tEZK7dFKGq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEZK7dFKGq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEZK7dFKGq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tEZK7dFKGq .carousel-control,
  .cid-tEZK7dFKGq .carousel-indicators,
  .cid-tEZK7dFKGq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tEZK7dFKGq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tEZK7dFKGq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tEZK7dFKGq .carousel-indicators .active,
.cid-tEZK7dFKGq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tEZK7dFKGq .carousel-indicators .active {
  background: #fff;
}
.cid-tEZK7dFKGq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tEZK7dFKGq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tEZK7dFKGq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEZK7dFKGq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tEZK7dFKGq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tEZK7dFKGq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tEZK7dFKGq .carousel {
  width: 100%;
}
.cid-tEZK7dFKGq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tEZK7dFKGq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tEZK7dFKGq .modal.fade .modal-dialog,
.cid-tEZK7dFKGq .modal.in .modal-dialog {
  transform: none;
}
.cid-tEZK7dFKGq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tEZK7dFKGq H6 {
  text-align: center;
}
.cid-tzakOno14u {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1135.jpg");
}
.cid-tzakOno14u .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.7;
}
.cid-tzakOno14u form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tzakOno14u form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tzakOno14u form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tzakOno14u .mbr-section-title {
  color: #202020;
}
.cid-tzakOno14u .mbr-section-subtitle {
  color: #202020;
}
.cid-tzal3ZZpSf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tzal3ZZpSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzal3ZZpSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzal3ZZpSf .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00056f;
  margin-bottom: 2rem;
}
.cid-tzal3ZZpSf .card-wrapper {
  padding: 3rem;
  background: #00056f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tzal3ZZpSf .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tzal3ZZpSf .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tzal3ZZpSf .mbr-section-title {
  color: #202020;
}
.cid-tzal3ZZpSf .link {
  color: #fafafa;
}
.cid-tzal4vvCR9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-tzal4vvCR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzal4vvCR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzal4vvCR9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tzal4vvCR9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tzal4vvCR9 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tzal4vvCR9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tzal4vvCR9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tzal4vvCR9 .mbr-section-subtitle {
  color: #202020;
}
.cid-tzal4vvCR9 .mbr-section-title {
  color: #202020;
}
.cid-tzal9yio67 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tzal9yio67 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tzal9yio67 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tDGZFnUxpL {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDGZFnUxpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDGZFnUxpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDGZFnUxpL .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tDGZFnUxpL .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDGZFnUxpL .row {
    text-align: center;
  }
  .cid-tDGZFnUxpL .row > div {
    margin: auto;
  }
  .cid-tDGZFnUxpL .social-row {
    justify-content: center;
  }
}
.cid-tDGZFnUxpL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tDGZFnUxpL .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tDGZFnUxpL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDGZFnUxpL .list {
    margin-bottom: 0rem;
  }
}
.cid-tDGZFnUxpL .mbr-text {
  color: #202020;
}
.cid-tDGZFnUxpL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tDGZFnUxpL .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tDGZFnUxpL div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tDGZFnUxpL H5 {
  color: #202020;
}
.cid-uF8LcoGZSs {
  background-image: url("../../../assets/images/bg-moveis-para-escritorio-localizado-em-sao-jose-do-rio-preto-1600x1200.jpg");
}
.cid-uF8LcoGZSs .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uF8LcoGZSs .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LcoGZSs .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uF8LcoGZSs .mbr-section-title {
  color: #2a2a2a;
}
.cid-uF8LcoGZSs .mbr-text,
.cid-uF8LcoGZSs .mbr-section-btn {
  color: #2a2a2a;
}
.cid-uF8Lcp2xsw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uF8Lcp2xsw .mbr-section-subtitle {
  color: #202020;
  text-align: left;
}
.cid-uF8Lcp2xsw .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8Lcp2xsw .mbr-section-title {
  color: #202020;
}
.cid-uF8Lcpidmm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-uF8Lcpidmm .mbr-overlay {
  background: #202020;
  opacity: 0.8;
}
.cid-uF8Lcpidmm img,
.cid-uF8Lcpidmm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uF8Lcpidmm .item:focus,
.cid-uF8Lcpidmm span:focus {
  outline: none;
}
.cid-uF8Lcpidmm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uF8Lcpidmm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uF8Lcpidmm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uF8Lcpidmm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8Lcpidmm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uF8Lcpidmm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uF8Lcpidmm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uF8Lcpidmm .mbr-section-title {
  color: #fafafa;
}
.cid-uF8Lcpidmm .mbr-text,
.cid-uF8Lcpidmm .mbr-section-btn {
  text-align: left;
  color: #202020;
}
.cid-uF8Lcpidmm .item-title {
  text-align: left;
  color: #202020;
}
.cid-uF8Lcpidmm .item-subtitle {
  text-align: center;
}
.cid-uF8LcpFLxV {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uF8LcpFLxV img {
  width: 120px;
  margin: auto;
}
.cid-uF8LcpFLxV .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uF8LcpFLxV .card {
    max-width: 12.5%;
  }
}
.cid-uF8LcpFLxV .mbr-section-title {
  color: #202020;
}
.cid-uF8LcpZcZA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00056f;
}
.cid-uF8LcpZcZA .item {
  padding-bottom: 2rem;
}
.cid-uF8LcpZcZA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LcpZcZA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LcpZcZA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LcpZcZA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LcpZcZA .carousel-control,
.cid-uF8LcpZcZA .close {
  background: #1b1b1b;
}
.cid-uF8LcpZcZA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LcpZcZA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LcpZcZA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LcpZcZA .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LcpZcZA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LcpZcZA .close::before {
  content: '\e91a';
}
.cid-uF8LcpZcZA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LcpZcZA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LcpZcZA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LcpZcZA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LcpZcZA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LcpZcZA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LcpZcZA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LcpZcZA .carousel-indicators li.active,
.cid-uF8LcpZcZA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LcpZcZA .carousel-indicators li::after,
.cid-uF8LcpZcZA .carousel-indicators li::before {
  content: none;
}
.cid-uF8LcpZcZA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LcpZcZA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LcpZcZA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LcpZcZA .carousel-indicators {
    display: none;
  }
}
.cid-uF8LcpZcZA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LcpZcZA .carousel-inner > .active {
  display: block;
}
.cid-uF8LcpZcZA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LcpZcZA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LcpZcZA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LcpZcZA .carousel-control,
  .cid-uF8LcpZcZA .carousel-indicators,
  .cid-uF8LcpZcZA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LcpZcZA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LcpZcZA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LcpZcZA .carousel-indicators .active,
.cid-uF8LcpZcZA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LcpZcZA .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LcpZcZA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LcpZcZA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LcpZcZA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LcpZcZA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LcpZcZA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LcpZcZA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LcpZcZA .carousel {
  width: 100%;
}
.cid-uF8LcpZcZA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LcpZcZA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LcpZcZA .modal.fade .modal-dialog,
.cid-uF8LcpZcZA .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LcpZcZA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LcpZcZA H6 {
  text-align: center;
}
.cid-uF8LcpZcZA H3 {
  color: #fafafa;
}
.cid-uF8LcpZcZA H4 {
  color: #fafafa;
}
.cid-uF8Lcqqfsl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #00056f;
}
.cid-uF8Lcqqfsl .item {
  padding-bottom: 2rem;
}
.cid-uF8Lcqqfsl .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8Lcqqfsl .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8Lcqqfsl .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8Lcqqfsl .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8Lcqqfsl .carousel-control,
.cid-uF8Lcqqfsl .close {
  background: #1b1b1b;
}
.cid-uF8Lcqqfsl .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8Lcqqfsl .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8Lcqqfsl .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8Lcqqfsl .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8Lcqqfsl .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8Lcqqfsl .close::before {
  content: '\e91a';
}
.cid-uF8Lcqqfsl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8Lcqqfsl .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8Lcqqfsl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8Lcqqfsl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8Lcqqfsl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8Lcqqfsl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8Lcqqfsl .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8Lcqqfsl .carousel-indicators li.active,
.cid-uF8Lcqqfsl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8Lcqqfsl .carousel-indicators li::after,
.cid-uF8Lcqqfsl .carousel-indicators li::before {
  content: none;
}
.cid-uF8Lcqqfsl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8Lcqqfsl .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8Lcqqfsl .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8Lcqqfsl .carousel-indicators {
    display: none;
  }
}
.cid-uF8Lcqqfsl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8Lcqqfsl .carousel-inner > .active {
  display: block;
}
.cid-uF8Lcqqfsl .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8Lcqqfsl .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8Lcqqfsl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8Lcqqfsl .carousel-control,
  .cid-uF8Lcqqfsl .carousel-indicators,
  .cid-uF8Lcqqfsl .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8Lcqqfsl .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8Lcqqfsl .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8Lcqqfsl .carousel-indicators .active,
.cid-uF8Lcqqfsl .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8Lcqqfsl .carousel-indicators .active {
  background: #fff;
}
.cid-uF8Lcqqfsl .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8Lcqqfsl .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8Lcqqfsl .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8Lcqqfsl .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8Lcqqfsl .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8Lcqqfsl .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8Lcqqfsl .carousel {
  width: 100%;
}
.cid-uF8Lcqqfsl .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8Lcqqfsl .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8Lcqqfsl .modal.fade .modal-dialog,
.cid-uF8Lcqqfsl .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8Lcqqfsl .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8Lcqqfsl H6 {
  text-align: center;
}
.cid-uF8Lcqqfsl H3 {
  color: #fafafa;
}
.cid-uF8Lcqqfsl H4 {
  color: #fafafa;
}
.cid-uF8LcqR58b {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uF8LcqR58b .item {
  padding-bottom: 2rem;
}
.cid-uF8LcqR58b .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-uF8LcqR58b .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LcqR58b .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LcqR58b .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LcqR58b .carousel-control,
.cid-uF8LcqR58b .close {
  background: #1b1b1b;
}
.cid-uF8LcqR58b .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LcqR58b .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LcqR58b .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LcqR58b .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LcqR58b .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LcqR58b .close::before {
  content: '\e91a';
}
.cid-uF8LcqR58b .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LcqR58b .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LcqR58b .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LcqR58b .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LcqR58b .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LcqR58b .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LcqR58b .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LcqR58b .carousel-indicators li.active,
.cid-uF8LcqR58b .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LcqR58b .carousel-indicators li::after,
.cid-uF8LcqR58b .carousel-indicators li::before {
  content: none;
}
.cid-uF8LcqR58b .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LcqR58b .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LcqR58b .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LcqR58b .carousel-indicators {
    display: none;
  }
}
.cid-uF8LcqR58b .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LcqR58b .carousel-inner > .active {
  display: block;
}
.cid-uF8LcqR58b .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LcqR58b .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LcqR58b .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LcqR58b .carousel-control,
  .cid-uF8LcqR58b .carousel-indicators,
  .cid-uF8LcqR58b .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LcqR58b .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LcqR58b .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LcqR58b .carousel-indicators .active,
.cid-uF8LcqR58b .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LcqR58b .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LcqR58b .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LcqR58b .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LcqR58b .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LcqR58b .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LcqR58b .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LcqR58b .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LcqR58b .carousel {
  width: 100%;
}
.cid-uF8LcqR58b .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LcqR58b .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LcqR58b .modal.fade .modal-dialog,
.cid-uF8LcqR58b .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LcqR58b .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LcqR58b H6 {
  text-align: center;
}
.cid-uF8LcriXaN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1135.jpg");
}
.cid-uF8LcriXaN .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.7;
}
.cid-uF8LcriXaN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uF8LcriXaN form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uF8LcriXaN form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uF8LcriXaN .mbr-section-title {
  color: #202020;
}
.cid-uF8LcriXaN .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LcryYsE {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uF8LcryYsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LcryYsE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LcryYsE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00056f;
  margin-bottom: 2rem;
}
.cid-uF8LcryYsE .card-wrapper {
  padding: 3rem;
  background: #00056f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uF8LcryYsE .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LcryYsE .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uF8LcryYsE .mbr-section-title {
  color: #202020;
}
.cid-uF8LcryYsE .link {
  color: #fafafa;
}
.cid-uF8LcrUePF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uF8LcrUePF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LcrUePF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LcrUePF .google-map {
  height: 30rem;
  position: relative;
}
.cid-uF8LcrUePF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uF8LcrUePF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uF8LcrUePF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uF8LcrUePF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uF8LcrUePF .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LcrUePF .mbr-section-title {
  color: #202020;
}
.cid-uF8LcscJcG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uF8LcscJcG .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uF8LcscJcG .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LcstXAi {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uF8LcstXAi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LcstXAi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LcstXAi .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uF8LcstXAi .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LcstXAi .row {
    text-align: center;
  }
  .cid-uF8LcstXAi .row > div {
    margin: auto;
  }
  .cid-uF8LcstXAi .social-row {
    justify-content: center;
  }
}
.cid-uF8LcstXAi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uF8LcstXAi .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uF8LcstXAi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LcstXAi .list {
    margin-bottom: 0rem;
  }
}
.cid-uF8LcstXAi .mbr-text {
  color: #202020;
}
.cid-uF8LcstXAi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uF8LcstXAi .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uF8LcstXAi div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uF8LcstXAi H5 {
  color: #202020;
}
.cid-uF8LrBqH8B {
  background-image: url("../../../assets/images/bg-moveis-para-escritorio-localizado-em-sao-jose-do-rio-preto-1600x1200.jpg");
}
.cid-uF8LrBqH8B .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uF8LrBqH8B .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LrBqH8B .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uF8LrBqH8B .mbr-section-title {
  color: #2a2a2a;
}
.cid-uF8LrBqH8B .mbr-text,
.cid-uF8LrBqH8B .mbr-section-btn {
  color: #2a2a2a;
}
.cid-uF8LrBHpPV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uF8LrBHpPV .mbr-section-subtitle {
  color: #202020;
  text-align: left;
}
.cid-uF8LrBHpPV .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LrBHpPV .mbr-section-title {
  color: #202020;
}
.cid-uF8LrBZbwK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-uF8LrBZbwK .mbr-overlay {
  background: #202020;
  opacity: 0.8;
}
.cid-uF8LrBZbwK img,
.cid-uF8LrBZbwK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uF8LrBZbwK .item:focus,
.cid-uF8LrBZbwK span:focus {
  outline: none;
}
.cid-uF8LrBZbwK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uF8LrBZbwK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uF8LrBZbwK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uF8LrBZbwK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8LrBZbwK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uF8LrBZbwK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uF8LrBZbwK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uF8LrBZbwK .mbr-section-title {
  color: #fafafa;
}
.cid-uF8LrBZbwK .mbr-text,
.cid-uF8LrBZbwK .mbr-section-btn {
  text-align: left;
  color: #202020;
}
.cid-uF8LrBZbwK .item-title {
  text-align: left;
  color: #202020;
}
.cid-uF8LrBZbwK .item-subtitle {
  text-align: center;
}
.cid-uF8LrCoxcc {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uF8LrCoxcc img {
  width: 120px;
  margin: auto;
}
.cid-uF8LrCoxcc .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uF8LrCoxcc .card {
    max-width: 12.5%;
  }
}
.cid-uF8LrCoxcc .mbr-section-title {
  color: #202020;
}
.cid-uF8LrCEkn1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00056f;
}
.cid-uF8LrCEkn1 .item {
  padding-bottom: 2rem;
}
.cid-uF8LrCEkn1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LrCEkn1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LrCEkn1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LrCEkn1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LrCEkn1 .carousel-control,
.cid-uF8LrCEkn1 .close {
  background: #1b1b1b;
}
.cid-uF8LrCEkn1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LrCEkn1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LrCEkn1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LrCEkn1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LrCEkn1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LrCEkn1 .close::before {
  content: '\e91a';
}
.cid-uF8LrCEkn1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LrCEkn1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LrCEkn1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LrCEkn1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LrCEkn1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LrCEkn1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LrCEkn1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LrCEkn1 .carousel-indicators li.active,
.cid-uF8LrCEkn1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LrCEkn1 .carousel-indicators li::after,
.cid-uF8LrCEkn1 .carousel-indicators li::before {
  content: none;
}
.cid-uF8LrCEkn1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LrCEkn1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LrCEkn1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrCEkn1 .carousel-indicators {
    display: none;
  }
}
.cid-uF8LrCEkn1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LrCEkn1 .carousel-inner > .active {
  display: block;
}
.cid-uF8LrCEkn1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LrCEkn1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LrCEkn1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LrCEkn1 .carousel-control,
  .cid-uF8LrCEkn1 .carousel-indicators,
  .cid-uF8LrCEkn1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrCEkn1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LrCEkn1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LrCEkn1 .carousel-indicators .active,
.cid-uF8LrCEkn1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LrCEkn1 .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LrCEkn1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LrCEkn1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LrCEkn1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LrCEkn1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LrCEkn1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LrCEkn1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LrCEkn1 .carousel {
  width: 100%;
}
.cid-uF8LrCEkn1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LrCEkn1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LrCEkn1 .modal.fade .modal-dialog,
.cid-uF8LrCEkn1 .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LrCEkn1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LrCEkn1 H6 {
  text-align: center;
}
.cid-uF8LrCEkn1 H3 {
  color: #fafafa;
}
.cid-uF8LrCEkn1 H4 {
  color: #fafafa;
}
.cid-uF8LrD60Zh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #00056f;
}
.cid-uF8LrD60Zh .item {
  padding-bottom: 2rem;
}
.cid-uF8LrD60Zh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LrD60Zh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LrD60Zh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LrD60Zh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LrD60Zh .carousel-control,
.cid-uF8LrD60Zh .close {
  background: #1b1b1b;
}
.cid-uF8LrD60Zh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LrD60Zh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LrD60Zh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LrD60Zh .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LrD60Zh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LrD60Zh .close::before {
  content: '\e91a';
}
.cid-uF8LrD60Zh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LrD60Zh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LrD60Zh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LrD60Zh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LrD60Zh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LrD60Zh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LrD60Zh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LrD60Zh .carousel-indicators li.active,
.cid-uF8LrD60Zh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LrD60Zh .carousel-indicators li::after,
.cid-uF8LrD60Zh .carousel-indicators li::before {
  content: none;
}
.cid-uF8LrD60Zh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LrD60Zh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LrD60Zh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrD60Zh .carousel-indicators {
    display: none;
  }
}
.cid-uF8LrD60Zh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LrD60Zh .carousel-inner > .active {
  display: block;
}
.cid-uF8LrD60Zh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LrD60Zh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LrD60Zh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LrD60Zh .carousel-control,
  .cid-uF8LrD60Zh .carousel-indicators,
  .cid-uF8LrD60Zh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrD60Zh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LrD60Zh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LrD60Zh .carousel-indicators .active,
.cid-uF8LrD60Zh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LrD60Zh .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LrD60Zh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LrD60Zh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LrD60Zh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LrD60Zh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LrD60Zh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LrD60Zh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LrD60Zh .carousel {
  width: 100%;
}
.cid-uF8LrD60Zh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LrD60Zh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LrD60Zh .modal.fade .modal-dialog,
.cid-uF8LrD60Zh .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LrD60Zh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LrD60Zh H6 {
  text-align: center;
}
.cid-uF8LrD60Zh H3 {
  color: #fafafa;
}
.cid-uF8LrD60Zh H4 {
  color: #fafafa;
}
.cid-uF8LrDv1i5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uF8LrDv1i5 .item {
  padding-bottom: 2rem;
}
.cid-uF8LrDv1i5 .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-uF8LrDv1i5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LrDv1i5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LrDv1i5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LrDv1i5 .carousel-control,
.cid-uF8LrDv1i5 .close {
  background: #1b1b1b;
}
.cid-uF8LrDv1i5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LrDv1i5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LrDv1i5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LrDv1i5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LrDv1i5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LrDv1i5 .close::before {
  content: '\e91a';
}
.cid-uF8LrDv1i5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LrDv1i5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LrDv1i5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LrDv1i5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LrDv1i5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LrDv1i5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LrDv1i5 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LrDv1i5 .carousel-indicators li.active,
.cid-uF8LrDv1i5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LrDv1i5 .carousel-indicators li::after,
.cid-uF8LrDv1i5 .carousel-indicators li::before {
  content: none;
}
.cid-uF8LrDv1i5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LrDv1i5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LrDv1i5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrDv1i5 .carousel-indicators {
    display: none;
  }
}
.cid-uF8LrDv1i5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LrDv1i5 .carousel-inner > .active {
  display: block;
}
.cid-uF8LrDv1i5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LrDv1i5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LrDv1i5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LrDv1i5 .carousel-control,
  .cid-uF8LrDv1i5 .carousel-indicators,
  .cid-uF8LrDv1i5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrDv1i5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LrDv1i5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LrDv1i5 .carousel-indicators .active,
.cid-uF8LrDv1i5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LrDv1i5 .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LrDv1i5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LrDv1i5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LrDv1i5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LrDv1i5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LrDv1i5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LrDv1i5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LrDv1i5 .carousel {
  width: 100%;
}
.cid-uF8LrDv1i5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LrDv1i5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LrDv1i5 .modal.fade .modal-dialog,
.cid-uF8LrDv1i5 .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LrDv1i5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LrDv1i5 H6 {
  text-align: center;
}
.cid-uF8LrDXGCW {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1135.jpg");
}
.cid-uF8LrDXGCW .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.7;
}
.cid-uF8LrDXGCW form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uF8LrDXGCW form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uF8LrDXGCW form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uF8LrDXGCW .mbr-section-title {
  color: #202020;
}
.cid-uF8LrDXGCW .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LrEebDG {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uF8LrEebDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LrEebDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LrEebDG .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00056f;
  margin-bottom: 2rem;
}
.cid-uF8LrEebDG .card-wrapper {
  padding: 3rem;
  background: #00056f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uF8LrEebDG .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrEebDG .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uF8LrEebDG .mbr-section-title {
  color: #202020;
}
.cid-uF8LrEebDG .link {
  color: #fafafa;
}
.cid-uF8LrEzOFk {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uF8LrEzOFk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LrEzOFk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LrEzOFk .google-map {
  height: 30rem;
  position: relative;
}
.cid-uF8LrEzOFk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uF8LrEzOFk .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uF8LrEzOFk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uF8LrEzOFk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uF8LrEzOFk .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LrEzOFk .mbr-section-title {
  color: #202020;
}
.cid-uF8LrESaMp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uF8LrESaMp .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uF8LrESaMp .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LrFld5A {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uF8LrFld5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LrFld5A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LrFld5A .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uF8LrFld5A .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LrFld5A .row {
    text-align: center;
  }
  .cid-uF8LrFld5A .row > div {
    margin: auto;
  }
  .cid-uF8LrFld5A .social-row {
    justify-content: center;
  }
}
.cid-uF8LrFld5A .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uF8LrFld5A .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uF8LrFld5A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LrFld5A .list {
    margin-bottom: 0rem;
  }
}
.cid-uF8LrFld5A .mbr-text {
  color: #202020;
}
.cid-uF8LrFld5A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uF8LrFld5A .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uF8LrFld5A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uF8LrFld5A H5 {
  color: #202020;
}
.cid-uF8Lwhl65u {
  background-image: url("../../../assets/images/bg-moveis-para-escritorio-localizado-em-sao-jose-do-rio-preto-1600x1200.jpg");
}
.cid-uF8Lwhl65u .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uF8Lwhl65u .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8Lwhl65u .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uF8Lwhl65u .mbr-section-title {
  color: #2a2a2a;
}
.cid-uF8Lwhl65u .mbr-text,
.cid-uF8Lwhl65u .mbr-section-btn {
  color: #2a2a2a;
}
.cid-uF8LwhyVkA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uF8LwhyVkA .mbr-section-subtitle {
  color: #202020;
  text-align: left;
}
.cid-uF8LwhyVkA .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LwhyVkA .mbr-section-title {
  color: #202020;
}
.cid-uF8LwhKKf5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-uF8LwhKKf5 .mbr-overlay {
  background: #202020;
  opacity: 0.8;
}
.cid-uF8LwhKKf5 img,
.cid-uF8LwhKKf5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uF8LwhKKf5 .item:focus,
.cid-uF8LwhKKf5 span:focus {
  outline: none;
}
.cid-uF8LwhKKf5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uF8LwhKKf5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uF8LwhKKf5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uF8LwhKKf5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8LwhKKf5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uF8LwhKKf5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uF8LwhKKf5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uF8LwhKKf5 .mbr-section-title {
  color: #fafafa;
}
.cid-uF8LwhKKf5 .mbr-text,
.cid-uF8LwhKKf5 .mbr-section-btn {
  text-align: left;
  color: #202020;
}
.cid-uF8LwhKKf5 .item-title {
  text-align: left;
  color: #202020;
}
.cid-uF8LwhKKf5 .item-subtitle {
  text-align: center;
}
.cid-uF8Lwi41Hp {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uF8Lwi41Hp img {
  width: 120px;
  margin: auto;
}
.cid-uF8Lwi41Hp .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uF8Lwi41Hp .card {
    max-width: 12.5%;
  }
}
.cid-uF8Lwi41Hp .mbr-section-title {
  color: #202020;
}
.cid-uF8Lwiqr4h {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00056f;
}
.cid-uF8Lwiqr4h .item {
  padding-bottom: 2rem;
}
.cid-uF8Lwiqr4h .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8Lwiqr4h .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8Lwiqr4h .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8Lwiqr4h .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8Lwiqr4h .carousel-control,
.cid-uF8Lwiqr4h .close {
  background: #1b1b1b;
}
.cid-uF8Lwiqr4h .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8Lwiqr4h .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8Lwiqr4h .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8Lwiqr4h .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8Lwiqr4h .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8Lwiqr4h .close::before {
  content: '\e91a';
}
.cid-uF8Lwiqr4h .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8Lwiqr4h .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8Lwiqr4h .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8Lwiqr4h .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8Lwiqr4h .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8Lwiqr4h .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8Lwiqr4h .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8Lwiqr4h .carousel-indicators li.active,
.cid-uF8Lwiqr4h .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8Lwiqr4h .carousel-indicators li::after,
.cid-uF8Lwiqr4h .carousel-indicators li::before {
  content: none;
}
.cid-uF8Lwiqr4h .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8Lwiqr4h .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8Lwiqr4h .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8Lwiqr4h .carousel-indicators {
    display: none;
  }
}
.cid-uF8Lwiqr4h .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8Lwiqr4h .carousel-inner > .active {
  display: block;
}
.cid-uF8Lwiqr4h .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8Lwiqr4h .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8Lwiqr4h .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8Lwiqr4h .carousel-control,
  .cid-uF8Lwiqr4h .carousel-indicators,
  .cid-uF8Lwiqr4h .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8Lwiqr4h .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8Lwiqr4h .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8Lwiqr4h .carousel-indicators .active,
.cid-uF8Lwiqr4h .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8Lwiqr4h .carousel-indicators .active {
  background: #fff;
}
.cid-uF8Lwiqr4h .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8Lwiqr4h .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8Lwiqr4h .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8Lwiqr4h .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8Lwiqr4h .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8Lwiqr4h .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8Lwiqr4h .carousel {
  width: 100%;
}
.cid-uF8Lwiqr4h .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8Lwiqr4h .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8Lwiqr4h .modal.fade .modal-dialog,
.cid-uF8Lwiqr4h .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8Lwiqr4h .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8Lwiqr4h H6 {
  text-align: center;
}
.cid-uF8Lwiqr4h H3 {
  color: #fafafa;
}
.cid-uF8Lwiqr4h H4 {
  color: #fafafa;
}
.cid-uF8LwiOo5C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #00056f;
}
.cid-uF8LwiOo5C .item {
  padding-bottom: 2rem;
}
.cid-uF8LwiOo5C .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LwiOo5C .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LwiOo5C .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LwiOo5C .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LwiOo5C .carousel-control,
.cid-uF8LwiOo5C .close {
  background: #1b1b1b;
}
.cid-uF8LwiOo5C .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LwiOo5C .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LwiOo5C .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LwiOo5C .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LwiOo5C .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LwiOo5C .close::before {
  content: '\e91a';
}
.cid-uF8LwiOo5C .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LwiOo5C .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LwiOo5C .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LwiOo5C .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LwiOo5C .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LwiOo5C .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LwiOo5C .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LwiOo5C .carousel-indicators li.active,
.cid-uF8LwiOo5C .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LwiOo5C .carousel-indicators li::after,
.cid-uF8LwiOo5C .carousel-indicators li::before {
  content: none;
}
.cid-uF8LwiOo5C .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LwiOo5C .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LwiOo5C .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LwiOo5C .carousel-indicators {
    display: none;
  }
}
.cid-uF8LwiOo5C .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LwiOo5C .carousel-inner > .active {
  display: block;
}
.cid-uF8LwiOo5C .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LwiOo5C .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LwiOo5C .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LwiOo5C .carousel-control,
  .cid-uF8LwiOo5C .carousel-indicators,
  .cid-uF8LwiOo5C .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LwiOo5C .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LwiOo5C .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LwiOo5C .carousel-indicators .active,
.cid-uF8LwiOo5C .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LwiOo5C .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LwiOo5C .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LwiOo5C .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LwiOo5C .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LwiOo5C .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LwiOo5C .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LwiOo5C .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LwiOo5C .carousel {
  width: 100%;
}
.cid-uF8LwiOo5C .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LwiOo5C .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LwiOo5C .modal.fade .modal-dialog,
.cid-uF8LwiOo5C .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LwiOo5C .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LwiOo5C H6 {
  text-align: center;
}
.cid-uF8LwiOo5C H3 {
  color: #fafafa;
}
.cid-uF8LwiOo5C H4 {
  color: #fafafa;
}
.cid-uF8LwjfwTY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uF8LwjfwTY .item {
  padding-bottom: 2rem;
}
.cid-uF8LwjfwTY .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-uF8LwjfwTY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LwjfwTY .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LwjfwTY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LwjfwTY .carousel-control,
.cid-uF8LwjfwTY .close {
  background: #1b1b1b;
}
.cid-uF8LwjfwTY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LwjfwTY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LwjfwTY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LwjfwTY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LwjfwTY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LwjfwTY .close::before {
  content: '\e91a';
}
.cid-uF8LwjfwTY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LwjfwTY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LwjfwTY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LwjfwTY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LwjfwTY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LwjfwTY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LwjfwTY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LwjfwTY .carousel-indicators li.active,
.cid-uF8LwjfwTY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LwjfwTY .carousel-indicators li::after,
.cid-uF8LwjfwTY .carousel-indicators li::before {
  content: none;
}
.cid-uF8LwjfwTY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LwjfwTY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LwjfwTY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LwjfwTY .carousel-indicators {
    display: none;
  }
}
.cid-uF8LwjfwTY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LwjfwTY .carousel-inner > .active {
  display: block;
}
.cid-uF8LwjfwTY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LwjfwTY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LwjfwTY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LwjfwTY .carousel-control,
  .cid-uF8LwjfwTY .carousel-indicators,
  .cid-uF8LwjfwTY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LwjfwTY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LwjfwTY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LwjfwTY .carousel-indicators .active,
.cid-uF8LwjfwTY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LwjfwTY .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LwjfwTY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LwjfwTY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LwjfwTY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LwjfwTY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LwjfwTY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LwjfwTY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LwjfwTY .carousel {
  width: 100%;
}
.cid-uF8LwjfwTY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LwjfwTY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LwjfwTY .modal.fade .modal-dialog,
.cid-uF8LwjfwTY .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LwjfwTY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LwjfwTY H6 {
  text-align: center;
}
.cid-uF8LwjDoiX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1135.jpg");
}
.cid-uF8LwjDoiX .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.7;
}
.cid-uF8LwjDoiX form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uF8LwjDoiX form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uF8LwjDoiX form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uF8LwjDoiX .mbr-section-title {
  color: #202020;
}
.cid-uF8LwjDoiX .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LwjSPiQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uF8LwjSPiQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LwjSPiQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LwjSPiQ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00056f;
  margin-bottom: 2rem;
}
.cid-uF8LwjSPiQ .card-wrapper {
  padding: 3rem;
  background: #00056f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uF8LwjSPiQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LwjSPiQ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uF8LwjSPiQ .mbr-section-title {
  color: #202020;
}
.cid-uF8LwjSPiQ .link {
  color: #fafafa;
}
.cid-uF8Lwkf5ya {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uF8Lwkf5ya .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8Lwkf5ya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8Lwkf5ya .google-map {
  height: 30rem;
  position: relative;
}
.cid-uF8Lwkf5ya .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uF8Lwkf5ya .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uF8Lwkf5ya .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uF8Lwkf5ya .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uF8Lwkf5ya .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8Lwkf5ya .mbr-section-title {
  color: #202020;
}
.cid-uF8Lwkxrlm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uF8Lwkxrlm .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uF8Lwkxrlm .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LwkN4BI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uF8LwkN4BI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LwkN4BI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LwkN4BI .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uF8LwkN4BI .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LwkN4BI .row {
    text-align: center;
  }
  .cid-uF8LwkN4BI .row > div {
    margin: auto;
  }
  .cid-uF8LwkN4BI .social-row {
    justify-content: center;
  }
}
.cid-uF8LwkN4BI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uF8LwkN4BI .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uF8LwkN4BI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LwkN4BI .list {
    margin-bottom: 0rem;
  }
}
.cid-uF8LwkN4BI .mbr-text {
  color: #202020;
}
.cid-uF8LwkN4BI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uF8LwkN4BI .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uF8LwkN4BI div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uF8LwkN4BI H5 {
  color: #202020;
}
.cid-uF8LA8oPTz {
  background-image: url("../../../assets/images/bg-moveis-para-escritorio-localizado-em-sao-jose-do-rio-preto-1600x1200.jpg");
}
.cid-uF8LA8oPTz .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uF8LA8oPTz .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LA8oPTz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uF8LA8oPTz .mbr-section-title {
  color: #2a2a2a;
}
.cid-uF8LA8oPTz .mbr-text,
.cid-uF8LA8oPTz .mbr-section-btn {
  color: #2a2a2a;
}
.cid-uF8LA8AzPD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uF8LA8AzPD .mbr-section-subtitle {
  color: #202020;
  text-align: left;
}
.cid-uF8LA8AzPD .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LA8AzPD .mbr-section-title {
  color: #202020;
}
.cid-uF8LA8QRBL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-uF8LA8QRBL .mbr-overlay {
  background: #202020;
  opacity: 0.8;
}
.cid-uF8LA8QRBL img,
.cid-uF8LA8QRBL .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uF8LA8QRBL .item:focus,
.cid-uF8LA8QRBL span:focus {
  outline: none;
}
.cid-uF8LA8QRBL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uF8LA8QRBL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uF8LA8QRBL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uF8LA8QRBL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8LA8QRBL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uF8LA8QRBL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uF8LA8QRBL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uF8LA8QRBL .mbr-section-title {
  color: #fafafa;
}
.cid-uF8LA8QRBL .mbr-text,
.cid-uF8LA8QRBL .mbr-section-btn {
  text-align: left;
  color: #202020;
}
.cid-uF8LA8QRBL .item-title {
  text-align: left;
  color: #202020;
}
.cid-uF8LA8QRBL .item-subtitle {
  text-align: center;
}
.cid-uF8LA99J2G {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uF8LA99J2G img {
  width: 120px;
  margin: auto;
}
.cid-uF8LA99J2G .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uF8LA99J2G .card {
    max-width: 12.5%;
  }
}
.cid-uF8LA99J2G .mbr-section-title {
  color: #202020;
}
.cid-uF8LA9pIrf {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00056f;
}
.cid-uF8LA9pIrf .item {
  padding-bottom: 2rem;
}
.cid-uF8LA9pIrf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LA9pIrf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LA9pIrf .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LA9pIrf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LA9pIrf .carousel-control,
.cid-uF8LA9pIrf .close {
  background: #1b1b1b;
}
.cid-uF8LA9pIrf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LA9pIrf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LA9pIrf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LA9pIrf .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LA9pIrf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LA9pIrf .close::before {
  content: '\e91a';
}
.cid-uF8LA9pIrf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LA9pIrf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LA9pIrf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LA9pIrf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LA9pIrf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LA9pIrf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LA9pIrf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LA9pIrf .carousel-indicators li.active,
.cid-uF8LA9pIrf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LA9pIrf .carousel-indicators li::after,
.cid-uF8LA9pIrf .carousel-indicators li::before {
  content: none;
}
.cid-uF8LA9pIrf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LA9pIrf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LA9pIrf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LA9pIrf .carousel-indicators {
    display: none;
  }
}
.cid-uF8LA9pIrf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LA9pIrf .carousel-inner > .active {
  display: block;
}
.cid-uF8LA9pIrf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LA9pIrf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LA9pIrf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LA9pIrf .carousel-control,
  .cid-uF8LA9pIrf .carousel-indicators,
  .cid-uF8LA9pIrf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LA9pIrf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LA9pIrf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LA9pIrf .carousel-indicators .active,
.cid-uF8LA9pIrf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LA9pIrf .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LA9pIrf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LA9pIrf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LA9pIrf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LA9pIrf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LA9pIrf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LA9pIrf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LA9pIrf .carousel {
  width: 100%;
}
.cid-uF8LA9pIrf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LA9pIrf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LA9pIrf .modal.fade .modal-dialog,
.cid-uF8LA9pIrf .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LA9pIrf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LA9pIrf H6 {
  text-align: center;
}
.cid-uF8LA9pIrf H3 {
  color: #fafafa;
}
.cid-uF8LA9pIrf H4 {
  color: #fafafa;
}
.cid-uF8LA9MAQY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #00056f;
}
.cid-uF8LA9MAQY .item {
  padding-bottom: 2rem;
}
.cid-uF8LA9MAQY .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LA9MAQY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LA9MAQY .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LA9MAQY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LA9MAQY .carousel-control,
.cid-uF8LA9MAQY .close {
  background: #1b1b1b;
}
.cid-uF8LA9MAQY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LA9MAQY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LA9MAQY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LA9MAQY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LA9MAQY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LA9MAQY .close::before {
  content: '\e91a';
}
.cid-uF8LA9MAQY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LA9MAQY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LA9MAQY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LA9MAQY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LA9MAQY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LA9MAQY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LA9MAQY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LA9MAQY .carousel-indicators li.active,
.cid-uF8LA9MAQY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LA9MAQY .carousel-indicators li::after,
.cid-uF8LA9MAQY .carousel-indicators li::before {
  content: none;
}
.cid-uF8LA9MAQY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LA9MAQY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LA9MAQY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LA9MAQY .carousel-indicators {
    display: none;
  }
}
.cid-uF8LA9MAQY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LA9MAQY .carousel-inner > .active {
  display: block;
}
.cid-uF8LA9MAQY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LA9MAQY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LA9MAQY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LA9MAQY .carousel-control,
  .cid-uF8LA9MAQY .carousel-indicators,
  .cid-uF8LA9MAQY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LA9MAQY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LA9MAQY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LA9MAQY .carousel-indicators .active,
.cid-uF8LA9MAQY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LA9MAQY .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LA9MAQY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LA9MAQY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LA9MAQY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LA9MAQY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LA9MAQY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LA9MAQY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LA9MAQY .carousel {
  width: 100%;
}
.cid-uF8LA9MAQY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LA9MAQY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LA9MAQY .modal.fade .modal-dialog,
.cid-uF8LA9MAQY .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LA9MAQY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LA9MAQY H6 {
  text-align: center;
}
.cid-uF8LA9MAQY H3 {
  color: #fafafa;
}
.cid-uF8LA9MAQY H4 {
  color: #fafafa;
}
.cid-uF8LAacvek {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uF8LAacvek .item {
  padding-bottom: 2rem;
}
.cid-uF8LAacvek .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-uF8LAacvek .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LAacvek .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LAacvek .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LAacvek .carousel-control,
.cid-uF8LAacvek .close {
  background: #1b1b1b;
}
.cid-uF8LAacvek .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LAacvek .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LAacvek .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LAacvek .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LAacvek .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LAacvek .close::before {
  content: '\e91a';
}
.cid-uF8LAacvek .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LAacvek .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LAacvek .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LAacvek .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LAacvek .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LAacvek .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LAacvek .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LAacvek .carousel-indicators li.active,
.cid-uF8LAacvek .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LAacvek .carousel-indicators li::after,
.cid-uF8LAacvek .carousel-indicators li::before {
  content: none;
}
.cid-uF8LAacvek .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LAacvek .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LAacvek .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LAacvek .carousel-indicators {
    display: none;
  }
}
.cid-uF8LAacvek .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LAacvek .carousel-inner > .active {
  display: block;
}
.cid-uF8LAacvek .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LAacvek .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LAacvek .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LAacvek .carousel-control,
  .cid-uF8LAacvek .carousel-indicators,
  .cid-uF8LAacvek .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LAacvek .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LAacvek .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LAacvek .carousel-indicators .active,
.cid-uF8LAacvek .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LAacvek .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LAacvek .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LAacvek .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LAacvek .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LAacvek .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LAacvek .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LAacvek .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LAacvek .carousel {
  width: 100%;
}
.cid-uF8LAacvek .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LAacvek .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LAacvek .modal.fade .modal-dialog,
.cid-uF8LAacvek .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LAacvek .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LAacvek H6 {
  text-align: center;
}
.cid-uF8LAazqrt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1135.jpg");
}
.cid-uF8LAazqrt .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.7;
}
.cid-uF8LAazqrt form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uF8LAazqrt form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uF8LAazqrt form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uF8LAazqrt .mbr-section-title {
  color: #202020;
}
.cid-uF8LAazqrt .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LAaNn9X {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uF8LAaNn9X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LAaNn9X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LAaNn9X .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00056f;
  margin-bottom: 2rem;
}
.cid-uF8LAaNn9X .card-wrapper {
  padding: 3rem;
  background: #00056f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uF8LAaNn9X .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LAaNn9X .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uF8LAaNn9X .mbr-section-title {
  color: #202020;
}
.cid-uF8LAaNn9X .link {
  color: #fafafa;
}
.cid-uF8LAb9aKM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uF8LAb9aKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LAb9aKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LAb9aKM .google-map {
  height: 30rem;
  position: relative;
}
.cid-uF8LAb9aKM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uF8LAb9aKM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uF8LAb9aKM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uF8LAb9aKM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uF8LAb9aKM .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LAb9aKM .mbr-section-title {
  color: #202020;
}
.cid-uF8LAbuDI9 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uF8LAbuDI9 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uF8LAbuDI9 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LAbL1xe {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uF8LAbL1xe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LAbL1xe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LAbL1xe .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uF8LAbL1xe .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LAbL1xe .row {
    text-align: center;
  }
  .cid-uF8LAbL1xe .row > div {
    margin: auto;
  }
  .cid-uF8LAbL1xe .social-row {
    justify-content: center;
  }
}
.cid-uF8LAbL1xe .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uF8LAbL1xe .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uF8LAbL1xe .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LAbL1xe .list {
    margin-bottom: 0rem;
  }
}
.cid-uF8LAbL1xe .mbr-text {
  color: #202020;
}
.cid-uF8LAbL1xe .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uF8LAbL1xe .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uF8LAbL1xe div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uF8LAbL1xe H5 {
  color: #202020;
}
.cid-uF8LK5pY0F {
  background-image: url("../../../assets/images/bg-moveis-para-escritorio-localizado-em-sao-jose-do-rio-preto-1600x1200.jpg");
}
.cid-uF8LK5pY0F .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uF8LK5pY0F .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LK5pY0F .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uF8LK5pY0F .mbr-section-title {
  color: #2a2a2a;
}
.cid-uF8LK5pY0F .mbr-text,
.cid-uF8LK5pY0F .mbr-section-btn {
  color: #2a2a2a;
}
.cid-uF8LK5FALk {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uF8LK5FALk .mbr-section-subtitle {
  color: #202020;
  text-align: left;
}
.cid-uF8LK5FALk .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LK5FALk .mbr-section-title {
  color: #202020;
}
.cid-uF8LK5Vlln {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-uF8LK5Vlln .mbr-overlay {
  background: #202020;
  opacity: 0.8;
}
.cid-uF8LK5Vlln img,
.cid-uF8LK5Vlln .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uF8LK5Vlln .item:focus,
.cid-uF8LK5Vlln span:focus {
  outline: none;
}
.cid-uF8LK5Vlln .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uF8LK5Vlln .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uF8LK5Vlln .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uF8LK5Vlln .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF8LK5Vlln .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uF8LK5Vlln .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uF8LK5Vlln .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uF8LK5Vlln .mbr-section-title {
  color: #fafafa;
}
.cid-uF8LK5Vlln .mbr-text,
.cid-uF8LK5Vlln .mbr-section-btn {
  text-align: left;
  color: #202020;
}
.cid-uF8LK5Vlln .item-title {
  text-align: left;
  color: #202020;
}
.cid-uF8LK5Vlln .item-subtitle {
  text-align: center;
}
.cid-uF8LK6ieRi {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uF8LK6ieRi img {
  width: 120px;
  margin: auto;
}
.cid-uF8LK6ieRi .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uF8LK6ieRi .card {
    max-width: 12.5%;
  }
}
.cid-uF8LK6ieRi .mbr-section-title {
  color: #202020;
}
.cid-uF8LK6ypUF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #00056f;
}
.cid-uF8LK6ypUF .item {
  padding-bottom: 2rem;
}
.cid-uF8LK6ypUF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LK6ypUF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LK6ypUF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LK6ypUF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LK6ypUF .carousel-control,
.cid-uF8LK6ypUF .close {
  background: #1b1b1b;
}
.cid-uF8LK6ypUF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LK6ypUF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LK6ypUF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LK6ypUF .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LK6ypUF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LK6ypUF .close::before {
  content: '\e91a';
}
.cid-uF8LK6ypUF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LK6ypUF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LK6ypUF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LK6ypUF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LK6ypUF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LK6ypUF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LK6ypUF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LK6ypUF .carousel-indicators li.active,
.cid-uF8LK6ypUF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LK6ypUF .carousel-indicators li::after,
.cid-uF8LK6ypUF .carousel-indicators li::before {
  content: none;
}
.cid-uF8LK6ypUF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LK6ypUF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LK6ypUF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK6ypUF .carousel-indicators {
    display: none;
  }
}
.cid-uF8LK6ypUF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LK6ypUF .carousel-inner > .active {
  display: block;
}
.cid-uF8LK6ypUF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LK6ypUF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LK6ypUF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LK6ypUF .carousel-control,
  .cid-uF8LK6ypUF .carousel-indicators,
  .cid-uF8LK6ypUF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK6ypUF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LK6ypUF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LK6ypUF .carousel-indicators .active,
.cid-uF8LK6ypUF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LK6ypUF .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LK6ypUF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LK6ypUF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LK6ypUF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LK6ypUF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LK6ypUF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LK6ypUF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LK6ypUF .carousel {
  width: 100%;
}
.cid-uF8LK6ypUF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LK6ypUF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LK6ypUF .modal.fade .modal-dialog,
.cid-uF8LK6ypUF .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LK6ypUF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LK6ypUF H6 {
  text-align: center;
}
.cid-uF8LK6ypUF H3 {
  color: #fafafa;
}
.cid-uF8LK6ypUF H4 {
  color: #fafafa;
}
.cid-uF8LK6ZTgK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #00056f;
}
.cid-uF8LK6ZTgK .item {
  padding-bottom: 2rem;
}
.cid-uF8LK6ZTgK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uF8LK6ZTgK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LK6ZTgK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LK6ZTgK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LK6ZTgK .carousel-control,
.cid-uF8LK6ZTgK .close {
  background: #1b1b1b;
}
.cid-uF8LK6ZTgK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LK6ZTgK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LK6ZTgK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LK6ZTgK .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LK6ZTgK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LK6ZTgK .close::before {
  content: '\e91a';
}
.cid-uF8LK6ZTgK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LK6ZTgK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LK6ZTgK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LK6ZTgK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LK6ZTgK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LK6ZTgK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LK6ZTgK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LK6ZTgK .carousel-indicators li.active,
.cid-uF8LK6ZTgK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LK6ZTgK .carousel-indicators li::after,
.cid-uF8LK6ZTgK .carousel-indicators li::before {
  content: none;
}
.cid-uF8LK6ZTgK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LK6ZTgK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LK6ZTgK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK6ZTgK .carousel-indicators {
    display: none;
  }
}
.cid-uF8LK6ZTgK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LK6ZTgK .carousel-inner > .active {
  display: block;
}
.cid-uF8LK6ZTgK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LK6ZTgK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LK6ZTgK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LK6ZTgK .carousel-control,
  .cid-uF8LK6ZTgK .carousel-indicators,
  .cid-uF8LK6ZTgK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK6ZTgK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LK6ZTgK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LK6ZTgK .carousel-indicators .active,
.cid-uF8LK6ZTgK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LK6ZTgK .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LK6ZTgK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LK6ZTgK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LK6ZTgK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LK6ZTgK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LK6ZTgK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LK6ZTgK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LK6ZTgK .carousel {
  width: 100%;
}
.cid-uF8LK6ZTgK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LK6ZTgK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LK6ZTgK .modal.fade .modal-dialog,
.cid-uF8LK6ZTgK .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LK6ZTgK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LK6ZTgK H6 {
  text-align: center;
}
.cid-uF8LK6ZTgK H3 {
  color: #fafafa;
}
.cid-uF8LK6ZTgK H4 {
  color: #fafafa;
}
.cid-uF8LK7oIwT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uF8LK7oIwT .item {
  padding-bottom: 2rem;
}
.cid-uF8LK7oIwT .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-uF8LK7oIwT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uF8LK7oIwT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uF8LK7oIwT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uF8LK7oIwT .carousel-control,
.cid-uF8LK7oIwT .close {
  background: #1b1b1b;
}
.cid-uF8LK7oIwT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uF8LK7oIwT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uF8LK7oIwT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uF8LK7oIwT .carousel-control-next span {
  margin-left: 5px;
}
.cid-uF8LK7oIwT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF8LK7oIwT .close::before {
  content: '\e91a';
}
.cid-uF8LK7oIwT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF8LK7oIwT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uF8LK7oIwT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LK7oIwT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uF8LK7oIwT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uF8LK7oIwT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uF8LK7oIwT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uF8LK7oIwT .carousel-indicators li.active,
.cid-uF8LK7oIwT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uF8LK7oIwT .carousel-indicators li::after,
.cid-uF8LK7oIwT .carousel-indicators li::before {
  content: none;
}
.cid-uF8LK7oIwT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uF8LK7oIwT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uF8LK7oIwT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK7oIwT .carousel-indicators {
    display: none;
  }
}
.cid-uF8LK7oIwT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uF8LK7oIwT .carousel-inner > .active {
  display: block;
}
.cid-uF8LK7oIwT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uF8LK7oIwT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uF8LK7oIwT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uF8LK7oIwT .carousel-control,
  .cid-uF8LK7oIwT .carousel-indicators,
  .cid-uF8LK7oIwT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK7oIwT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uF8LK7oIwT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uF8LK7oIwT .carousel-indicators .active,
.cid-uF8LK7oIwT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uF8LK7oIwT .carousel-indicators .active {
  background: #fff;
}
.cid-uF8LK7oIwT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uF8LK7oIwT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uF8LK7oIwT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uF8LK7oIwT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uF8LK7oIwT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uF8LK7oIwT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uF8LK7oIwT .carousel {
  width: 100%;
}
.cid-uF8LK7oIwT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uF8LK7oIwT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uF8LK7oIwT .modal.fade .modal-dialog,
.cid-uF8LK7oIwT .modal.in .modal-dialog {
  transform: none;
}
.cid-uF8LK7oIwT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uF8LK7oIwT H6 {
  text-align: center;
}
.cid-uF8LK7Tc1O {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1135.jpg");
}
.cid-uF8LK7Tc1O .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.7;
}
.cid-uF8LK7Tc1O form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uF8LK7Tc1O form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uF8LK7Tc1O form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uF8LK7Tc1O .mbr-section-title {
  color: #202020;
}
.cid-uF8LK7Tc1O .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LK8kQeg {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uF8LK8kQeg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LK8kQeg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LK8kQeg .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00056f;
  margin-bottom: 2rem;
}
.cid-uF8LK8kQeg .card-wrapper {
  padding: 3rem;
  background: #00056f;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uF8LK8kQeg .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK8kQeg .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uF8LK8kQeg .mbr-section-title {
  color: #202020;
}
.cid-uF8LK8kQeg .link {
  color: #fafafa;
}
.cid-uF8LK8MRIu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uF8LK8MRIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LK8MRIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LK8MRIu .google-map {
  height: 30rem;
  position: relative;
}
.cid-uF8LK8MRIu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uF8LK8MRIu .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uF8LK8MRIu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uF8LK8MRIu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uF8LK8MRIu .mbr-section-subtitle {
  color: #202020;
}
.cid-uF8LK8MRIu .mbr-section-title {
  color: #202020;
}
.cid-uF8LK9nTuZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uF8LK9nTuZ .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uF8LK9nTuZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uF8LK9CnHl {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uF8LK9CnHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF8LK9CnHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF8LK9CnHl .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uF8LK9CnHl .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uF8LK9CnHl .row {
    text-align: center;
  }
  .cid-uF8LK9CnHl .row > div {
    margin: auto;
  }
  .cid-uF8LK9CnHl .social-row {
    justify-content: center;
  }
}
.cid-uF8LK9CnHl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uF8LK9CnHl .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uF8LK9CnHl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uF8LK9CnHl .list {
    margin-bottom: 0rem;
  }
}
.cid-uF8LK9CnHl .mbr-text {
  color: #202020;
}
.cid-uF8LK9CnHl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uF8LK9CnHl .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uF8LK9CnHl div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uF8LK9CnHl H5 {
  color: #202020;
}
