body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4.8rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.84rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #ffda00 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #097825 !important;
  border-color: #097825 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0ebf3b !important;
  border-color: #0ebf3b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0ebf3b !important;
  border-color: #0ebf3b !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #021908;
  color: #021908;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #097825;
  border-color: #097825;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #097825 !important;
  border-color: #097825 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #097825 !important;
}
.text-success {
  color: #ffda00 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #10d742 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffe966 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff8cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #097825 !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%;
}
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='%23149dcc' %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;
}
.cid-t0lxjVB4gT .nav-item:focus,
.cid-t0lxjVB4gT .nav-link:focus {
  outline: none;
}
.cid-t0lxjVB4gT a.nav-link:focus {
  color: #ffffff !important;
}
.cid-t0lxjVB4gT .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffda00;
}
.cid-t0lxjVB4gT .navbar.opened {
  transition: all 0.3s;
  background: #ffda00 !important;
}
.cid-t0lxjVB4gT .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-t0lxjVB4gT .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t0lxjVB4gT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0lxjVB4gT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t0lxjVB4gT .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-t0lxjVB4gT .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-t0lxjVB4gT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0lxjVB4gT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0lxjVB4gT .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-t0lxjVB4gT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0lxjVB4gT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0lxjVB4gT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0lxjVB4gT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-t0lxjVB4gT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0lxjVB4gT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0lxjVB4gT .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-t0lxjVB4gT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0lxjVB4gT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0lxjVB4gT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0lxjVB4gT .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0lxjVB4gT .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0lxjVB4gT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0lxjVB4gT .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-t0lxjVB4gT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t0lxjVB4gT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0lxjVB4gT .navbar.navbar-short {
  background: #ffda00 !important;
  min-height: 60px;
}
.cid-t0lxjVB4gT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0lxjVB4gT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0lxjVB4gT .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0lxjVB4gT .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-t0lxjVB4gT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-t0lxjVB4gT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0lxjVB4gT .dropdown-item.active,
.cid-t0lxjVB4gT .dropdown-item:active {
  background-color: transparent;
}
.cid-t0lxjVB4gT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0lxjVB4gT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0lxjVB4gT .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0lxjVB4gT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-t0lxjVB4gT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-t0lxjVB4gT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0lxjVB4gT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0lxjVB4gT .navbar-buttons {
  text-align: center;
}
.cid-t0lxjVB4gT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0lxjVB4gT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0lxjVB4gT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0lxjVB4gT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0lxjVB4gT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0lxjVB4gT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0lxjVB4gT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0lxjVB4gT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0lxjVB4gT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0lxjVB4gT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0lxjVB4gT .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-t0lxjVB4gT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-t0lxjVB4gT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0lxjVB4gT .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0lxjVB4gT .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t0lxjVB4gT .nav-link:hover,
.cid-t0lxjVB4gT .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t0lxjVB4gT .dropdown-item:hover {
  color: #878787 !important;
}
.cid-t0lxjVB4gT .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-t0lxjVB4gT .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-t0lxjVB4gT .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-t0lxjVB4gT .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-t0lxjVB4gT .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-t0lxjVB4gT .dropdown-menu {
    top: 100%;
  }
  .cid-t0lxjVB4gT .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-t0lxjVB4gT .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-t0lxjVB4gT .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-t0lxjVB4gT .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-t0m9ZBpkVt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/mudanas-em-campinas-1900x1267.jpg");
}
.cid-t0m9ZBpkVt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0m9ZBpkVt .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0m9ZBpkVt .col-text {
    padding: 30px;
  }
}
.cid-t0m9ZBpkVt .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t0m9ZBpkVt .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0m9ZBpkVt .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t0m9ZBpkVt .col-form {
    max-height: 440px;
  }
}
.cid-t0m9ZBpkVt .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0m9ZBpkVt .text-wrapper {
    text-align: center !important;
  }
}
.cid-t0m9ZBpkVt .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0m9ZBpkVt .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t0m9ZBpkVt .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0m9ZBpkVt .mbr-text {
    text-align: center !important;
  }
}
.cid-t0m9ZBpkVt .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t0m9ZBpkVt .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0m9ZBpkVt .prof-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0m9ZBpkVt .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t0m9ZBpkVt .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0m9ZBpkVt .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0m9ZBpkVt .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0m9ZBpkVt .mbr-section-title,
.cid-t0m9ZBpkVt .mbr-section-btn {
  color: #ffffff;
}
.cid-t0xCF1YR2n {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0xCF1YR2n .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0xCF1YR2n .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0xCF1YR2n .button-align {
  text-align: center;
}
.cid-t0xCF1YR2n .mbr-section-btn {
  display: block;
}
.cid-t0xCF1YR2n .container {
  max-width: 739px;
}
.cid-t0xCF1YR2n .btn {
  margin-top: 20px;
}
.cid-t0xCF1YR2n a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0lHXgrbIn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0lHXgrbIn .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-t0lHXgrbIn img {
  width: 100%;
}
.cid-t0lHXgrbIn p {
  margin-top: 6rem;
}
.cid-t0lHXgrbIn .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t0lHXgrbIn .content-wrapper {
  padding-top: 6rem;
}
.cid-t0lHXgrbIn h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t0lHXgrbIn .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t0lHXgrbIn p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0lHXgrbIn .back {
    width: 100%;
    height: 75%;
  }
  .cid-t0lHXgrbIn .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t0lHXgrbIn p {
    margin-top: 4rem;
  }
}
.cid-t0lHXgrbIn .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t0lHXgrbIn .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t0lHXgrbIn .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t0lHXgrbIn h4 {
    right: 2rem;
  }
}
.cid-t0m2nmizXS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0m2nmizXS .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0m2nmizXS .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0m2nmizXS .button-align {
  text-align: center;
}
.cid-t0m2nmizXS .mbr-section-btn {
  display: block;
}
.cid-t0m2nmizXS .container {
  max-width: 739px;
}
.cid-t0m2nmizXS .btn {
  margin-top: 20px;
}
.cid-t0m2nmizXS a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0xkhRIB7L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0xkhRIB7L .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0xkhRIB7L .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t0xkhRIB7L img,
.cid-t0xkhRIB7L .item-img {
  width: 100%;
}
.cid-t0xkhRIB7L .item:focus,
.cid-t0xkhRIB7L span:focus {
  outline: none;
}
.cid-t0xkhRIB7L .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0xkhRIB7L .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0xkhRIB7L img {
  border-radius: 30px;
}
.cid-t0m2IMjmWZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0m2IMjmWZ .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0m2IMjmWZ .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0m2IMjmWZ .button-align {
  text-align: center;
}
.cid-t0m2IMjmWZ .mbr-section-btn {
  display: block;
}
.cid-t0m2IMjmWZ .container {
  max-width: 739px;
}
.cid-t0m2IMjmWZ .btn {
  margin-top: 20px;
}
.cid-t0m2IMjmWZ a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0lRsx9d7d {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffda00;
}
@media (min-width: 1500px) {
  .cid-t0lRsx9d7d .container {
    max-width: 1400px;
  }
}
.cid-t0lRsx9d7d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0lRsx9d7d .card {
  border-radius: 0;
  background: #333333;
}
.cid-t0lRsx9d7d .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-t0lRsx9d7d .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-t0lRsx9d7d .img-col {
  padding: 0;
}
.cid-t0lRsx9d7d .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t0lRsx9d7d .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-t0msPaGK7s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0msPaGK7s img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t0msPaGK7s img:hover {
  transform: scale(1.1);
}
.cid-t0msPaGK7s .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t0msPaGK7s h2 {
  padding: 0;
  margin: 0;
}
.cid-t0msPaGK7s .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0msPaGK7s .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t0msPaGK7s .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t0msPaGK7s .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-t0msPaGK7s .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t0msPaGK7s .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-t0msPaGK7s .mbr-iconfont {
  margin: 0 !important;
}
.cid-t0msPaGK7s .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t0msPaGK7s .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t0msPaGK7s .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t0msPaGK7s .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-t0msPaGK7s .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t0msPaGK7s H2 {
  color: #333333;
}
.cid-t0msPaGK7s .mbr-text {
  color: #767676;
}
.cid-t0m2CjLH1A {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0m2CjLH1A .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0m2CjLH1A .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0m2CjLH1A .button-align {
  text-align: center;
}
.cid-t0m2CjLH1A .mbr-section-btn {
  display: block;
}
.cid-t0m2CjLH1A .container {
  max-width: 739px;
}
.cid-t0m2CjLH1A .btn {
  margin-top: 20px;
}
.cid-t0m2CjLH1A a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0lTW8QO6q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0lTW8QO6q .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t0lTW8QO6q .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0lTW8QO6q .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0lTW8QO6q .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t0lTW8QO6q .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #149dcc;
}
.cid-t0mdbGovVA .nav-item:focus,
.cid-t0mdbGovVA .nav-link:focus {
  outline: none;
}
.cid-t0mdbGovVA a.nav-link:focus {
  color: #ffffff !important;
}
.cid-t0mdbGovVA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffda00;
}
.cid-t0mdbGovVA .navbar.opened {
  transition: all 0.3s;
  background: #ffda00 !important;
}
.cid-t0mdbGovVA .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-t0mdbGovVA .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t0mdbGovVA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0mdbGovVA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t0mdbGovVA .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-t0mdbGovVA .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-t0mdbGovVA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0mdbGovVA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0mdbGovVA .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-t0mdbGovVA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0mdbGovVA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0mdbGovVA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0mdbGovVA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-t0mdbGovVA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0mdbGovVA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0mdbGovVA .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-t0mdbGovVA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0mdbGovVA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0mdbGovVA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0mdbGovVA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0mdbGovVA .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0mdbGovVA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0mdbGovVA .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-t0mdbGovVA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t0mdbGovVA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0mdbGovVA .navbar.navbar-short {
  background: #ffda00 !important;
  min-height: 60px;
}
.cid-t0mdbGovVA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0mdbGovVA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0mdbGovVA .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0mdbGovVA .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-t0mdbGovVA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-t0mdbGovVA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0mdbGovVA .dropdown-item.active,
.cid-t0mdbGovVA .dropdown-item:active {
  background-color: transparent;
}
.cid-t0mdbGovVA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0mdbGovVA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0mdbGovVA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0mdbGovVA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-t0mdbGovVA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-t0mdbGovVA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0mdbGovVA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0mdbGovVA .navbar-buttons {
  text-align: center;
}
.cid-t0mdbGovVA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0mdbGovVA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0mdbGovVA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0mdbGovVA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mdbGovVA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mdbGovVA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0mdbGovVA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mdbGovVA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0mdbGovVA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0mdbGovVA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mdbGovVA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-t0mdbGovVA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-t0mdbGovVA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0mdbGovVA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0mdbGovVA .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t0mdbGovVA .nav-link:hover,
.cid-t0mdbGovVA .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t0mdbGovVA .dropdown-item:hover {
  color: #878787 !important;
}
.cid-t0mdbGovVA .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-t0mdbGovVA .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-t0mdbGovVA .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-t0mdbGovVA .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-t0mdbGovVA .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-t0mdbGovVA .dropdown-menu {
    top: 100%;
  }
  .cid-t0mdbGovVA .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-t0mdbGovVA .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-t0mdbGovVA .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-t0mdbGovVA .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-t0mdbGUsAL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/mudanas-em-campinas-1900x1267.jpg");
}
.cid-t0mdbGUsAL .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0mdbGUsAL .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mdbGUsAL .col-text {
    padding: 30px;
  }
}
.cid-t0mdbGUsAL .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t0mdbGUsAL .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mdbGUsAL .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t0mdbGUsAL .col-form {
    max-height: 440px;
  }
}
.cid-t0mdbGUsAL .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0mdbGUsAL .text-wrapper {
    text-align: center !important;
  }
}
.cid-t0mdbGUsAL .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mdbGUsAL .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t0mdbGUsAL .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mdbGUsAL .mbr-text {
    text-align: center !important;
  }
}
.cid-t0mdbGUsAL .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t0mdbGUsAL .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mdbGUsAL .prof-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mdbGUsAL .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t0mdbGUsAL .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0mdbGUsAL .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0mdbGUsAL .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0mdbGUsAL .mbr-section-title,
.cid-t0mdbGUsAL .mbr-section-btn {
  color: #ffffff;
}
.cid-t0r8NaiCwb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0r8NaiCwb .link-wrap {
  width: 100%;
}
.cid-t0r8NaiCwb .link {
  display: inline-block;
}
.cid-t0r8NaiCwb .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-t0r8NaiCwb .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-t0r8NaiCwb .link a:hover {
  text-decoration: underline;
}
.cid-t0r8NaiCwb .link,
.cid-t0r8NaiCwb .link-wrap {
  color: #ffffff;
}
.cid-t0r8NaiCwb .mbr-text,
.cid-t0r8NaiCwb .mbr-section-btn {
  color: #333333;
}
.cid-t0r8NaiCwb .mbr-text,
.cid-t0r8NaiCwb .link-wrap {
  text-align: left;
}
.cid-t0r8NaiCwb .card-title,
.cid-t0r8NaiCwb .card-box {
  text-align: center;
}
.cid-t0rbv00Q1Y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0rbv00Q1Y .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0rbv00Q1Y .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0rbv00Q1Y .button-align {
  text-align: center;
}
.cid-t0rbv00Q1Y .mbr-section-btn {
  display: block;
}
.cid-t0rbv00Q1Y .container {
  max-width: 739px;
}
.cid-t0rbv00Q1Y .btn {
  margin-top: 20px;
}
.cid-t0rbv00Q1Y a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mdbHg3Lp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mdbHg3Lp .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-t0mdbHg3Lp img {
  width: 100%;
}
.cid-t0mdbHg3Lp p {
  margin-top: 6rem;
}
.cid-t0mdbHg3Lp .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t0mdbHg3Lp .content-wrapper {
  padding-top: 6rem;
}
.cid-t0mdbHg3Lp h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t0mdbHg3Lp .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t0mdbHg3Lp p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0mdbHg3Lp .back {
    width: 100%;
    height: 75%;
  }
  .cid-t0mdbHg3Lp .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t0mdbHg3Lp p {
    margin-top: 4rem;
  }
}
.cid-t0mdbHg3Lp .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t0mdbHg3Lp .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t0mdbHg3Lp .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t0mdbHg3Lp h4 {
    right: 2rem;
  }
}
.cid-t0mdbHxzUY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mdbHxzUY .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mdbHxzUY .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mdbHxzUY .button-align {
  text-align: center;
}
.cid-t0mdbHxzUY .mbr-section-btn {
  display: block;
}
.cid-t0mdbHxzUY .container {
  max-width: 739px;
}
.cid-t0mdbHxzUY .btn {
  margin-top: 20px;
}
.cid-t0mdbHxzUY a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0xu32O0Zx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0xu32O0Zx .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0xu32O0Zx .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t0xu32O0Zx img,
.cid-t0xu32O0Zx .item-img {
  width: 100%;
}
.cid-t0xu32O0Zx .item:focus,
.cid-t0xu32O0Zx span:focus {
  outline: none;
}
.cid-t0xu32O0Zx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0xu32O0Zx .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0xu32O0Zx img {
  border-radius: 30px;
}
.cid-t0mdbIa4jM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mdbIa4jM .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mdbIa4jM .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mdbIa4jM .button-align {
  text-align: center;
}
.cid-t0mdbIa4jM .mbr-section-btn {
  display: block;
}
.cid-t0mdbIa4jM .container {
  max-width: 739px;
}
.cid-t0mdbIa4jM .btn {
  margin-top: 20px;
}
.cid-t0mdbIa4jM a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mdbInSPO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffda00;
}
@media (min-width: 1500px) {
  .cid-t0mdbInSPO .container {
    max-width: 1400px;
  }
}
.cid-t0mdbInSPO img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0mdbInSPO .card {
  border-radius: 0;
  background: #333333;
}
.cid-t0mdbInSPO .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-t0mdbInSPO .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-t0mdbInSPO .img-col {
  padding: 0;
}
.cid-t0mdbInSPO .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t0mdbInSPO .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-t0wMOoN10p {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0wMOoN10p .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0wMOoN10p .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0wMOoN10p .button-align {
  text-align: center;
}
.cid-t0wMOoN10p .mbr-section-btn {
  display: block;
}
.cid-t0wMOoN10p .container {
  max-width: 739px;
}
.cid-t0wMOoN10p .btn {
  margin-top: 20px;
}
.cid-t0wMOoN10p a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mt6hY1RS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mt6hY1RS img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t0mt6hY1RS img:hover {
  transform: scale(1.1);
}
.cid-t0mt6hY1RS .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t0mt6hY1RS h2 {
  padding: 0;
  margin: 0;
}
.cid-t0mt6hY1RS .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0mt6hY1RS .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t0mt6hY1RS .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t0mt6hY1RS .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-t0mt6hY1RS .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t0mt6hY1RS .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-t0mt6hY1RS .mbr-iconfont {
  margin: 0 !important;
}
.cid-t0mt6hY1RS .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t0mt6hY1RS .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t0mt6hY1RS .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t0mt6hY1RS .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-t0mt6hY1RS .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t0mt6hY1RS H2 {
  color: #333333;
}
.cid-t0mt6hY1RS .mbr-text {
  color: #767676;
}
.cid-t0mdbIBWwt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mdbIBWwt .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mdbIBWwt .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mdbIBWwt .button-align {
  text-align: center;
}
.cid-t0mdbIBWwt .mbr-section-btn {
  display: block;
}
.cid-t0mdbIBWwt .container {
  max-width: 739px;
}
.cid-t0mdbIBWwt .btn {
  margin-top: 20px;
}
.cid-t0mdbIBWwt a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mhhqf1Mi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0mhhqf1Mi .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t0mhhqf1Mi .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0mhhqf1Mi .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0mhhqf1Mi .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t0mhhqf1Mi .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #149dcc;
}
.cid-t0mc50H7Eh .nav-item:focus,
.cid-t0mc50H7Eh .nav-link:focus {
  outline: none;
}
.cid-t0mc50H7Eh a.nav-link:focus {
  color: #ffffff !important;
}
.cid-t0mc50H7Eh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffda00;
}
.cid-t0mc50H7Eh .navbar.opened {
  transition: all 0.3s;
  background: #ffda00 !important;
}
.cid-t0mc50H7Eh .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-t0mc50H7Eh .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t0mc50H7Eh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0mc50H7Eh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t0mc50H7Eh .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-t0mc50H7Eh .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-t0mc50H7Eh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0mc50H7Eh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0mc50H7Eh .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-t0mc50H7Eh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0mc50H7Eh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0mc50H7Eh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0mc50H7Eh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-t0mc50H7Eh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0mc50H7Eh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0mc50H7Eh .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-t0mc50H7Eh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0mc50H7Eh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0mc50H7Eh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0mc50H7Eh .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0mc50H7Eh .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0mc50H7Eh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0mc50H7Eh .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-t0mc50H7Eh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t0mc50H7Eh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0mc50H7Eh .navbar.navbar-short {
  background: #ffda00 !important;
  min-height: 60px;
}
.cid-t0mc50H7Eh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0mc50H7Eh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0mc50H7Eh .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0mc50H7Eh .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-t0mc50H7Eh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-t0mc50H7Eh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0mc50H7Eh .dropdown-item.active,
.cid-t0mc50H7Eh .dropdown-item:active {
  background-color: transparent;
}
.cid-t0mc50H7Eh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0mc50H7Eh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0mc50H7Eh .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0mc50H7Eh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-t0mc50H7Eh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-t0mc50H7Eh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0mc50H7Eh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0mc50H7Eh .navbar-buttons {
  text-align: center;
}
.cid-t0mc50H7Eh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0mc50H7Eh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0mc50H7Eh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0mc50H7Eh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mc50H7Eh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mc50H7Eh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0mc50H7Eh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mc50H7Eh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0mc50H7Eh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0mc50H7Eh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mc50H7Eh .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-t0mc50H7Eh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-t0mc50H7Eh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0mc50H7Eh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0mc50H7Eh .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t0mc50H7Eh .nav-link:hover,
.cid-t0mc50H7Eh .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t0mc50H7Eh .dropdown-item:hover {
  color: #878787 !important;
}
.cid-t0mc50H7Eh .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-t0mc50H7Eh .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-t0mc50H7Eh .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-t0mc50H7Eh .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-t0mc50H7Eh .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-t0mc50H7Eh .dropdown-menu {
    top: 100%;
  }
  .cid-t0mc50H7Eh .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-t0mc50H7Eh .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-t0mc50H7Eh .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-t0mc50H7Eh .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-t0mc51jH3N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/mudanas-em-campinas-1900x1267.jpg");
}
.cid-t0mc51jH3N .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0mc51jH3N .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mc51jH3N .col-text {
    padding: 30px;
  }
}
.cid-t0mc51jH3N .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t0mc51jH3N .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mc51jH3N .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t0mc51jH3N .col-form {
    max-height: 440px;
  }
}
.cid-t0mc51jH3N .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0mc51jH3N .text-wrapper {
    text-align: center !important;
  }
}
.cid-t0mc51jH3N .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mc51jH3N .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t0mc51jH3N .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mc51jH3N .mbr-text {
    text-align: center !important;
  }
}
.cid-t0mc51jH3N .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t0mc51jH3N .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mc51jH3N .prof-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mc51jH3N .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t0mc51jH3N .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0mc51jH3N .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0mc51jH3N .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0mc51jH3N .mbr-section-title,
.cid-t0mc51jH3N .mbr-section-btn {
  color: #ffffff;
}
.cid-t0mucow5eV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0mucow5eV .link-wrap {
  width: 100%;
}
.cid-t0mucow5eV .link {
  display: inline-block;
}
.cid-t0mucow5eV .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-t0mucow5eV .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-t0mucow5eV .link a:hover {
  text-decoration: underline;
}
.cid-t0mucow5eV .link,
.cid-t0mucow5eV .link-wrap {
  color: #ffffff;
}
.cid-t0mucow5eV .mbr-text,
.cid-t0mucow5eV .mbr-section-btn {
  color: #333333;
}
.cid-t0mucow5eV .mbr-text,
.cid-t0mucow5eV .link-wrap {
  text-align: left;
}
.cid-t0mc51S65G {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mc51S65G .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mc51S65G .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mc51S65G .button-align {
  text-align: center;
}
.cid-t0mc51S65G .mbr-section-btn {
  display: block;
}
.cid-t0mc51S65G .container {
  max-width: 739px;
}
.cid-t0mc51S65G .btn {
  margin-top: 20px;
}
.cid-t0mc51S65G a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mc51BnwI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mc51BnwI .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-t0mc51BnwI img {
  width: 100%;
}
.cid-t0mc51BnwI p {
  margin-top: 6rem;
}
.cid-t0mc51BnwI .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t0mc51BnwI .content-wrapper {
  padding-top: 6rem;
}
.cid-t0mc51BnwI h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t0mc51BnwI .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t0mc51BnwI p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0mc51BnwI .back {
    width: 100%;
    height: 75%;
  }
  .cid-t0mc51BnwI .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t0mc51BnwI p {
    margin-top: 4rem;
  }
}
.cid-t0mc51BnwI .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t0mc51BnwI .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t0mc51BnwI .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t0mc51BnwI h4 {
    right: 2rem;
  }
}
.cid-t0r8vJ0qQn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0r8vJ0qQn .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0r8vJ0qQn .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0r8vJ0qQn .button-align {
  text-align: center;
}
.cid-t0r8vJ0qQn .mbr-section-btn {
  display: block;
}
.cid-t0r8vJ0qQn .container {
  max-width: 739px;
}
.cid-t0r8vJ0qQn .btn {
  margin-top: 20px;
}
.cid-t0r8vJ0qQn a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0xtPXm16Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0xtPXm16Z .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0xtPXm16Z .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t0xtPXm16Z img,
.cid-t0xtPXm16Z .item-img {
  width: 100%;
}
.cid-t0xtPXm16Z .item:focus,
.cid-t0xtPXm16Z span:focus {
  outline: none;
}
.cid-t0xtPXm16Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0xtPXm16Z .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0xtPXm16Z img {
  border-radius: 30px;
}
.cid-t0wLK30OKe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0wLK30OKe .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0wLK30OKe .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0wLK30OKe .button-align {
  text-align: center;
}
.cid-t0wLK30OKe .mbr-section-btn {
  display: block;
}
.cid-t0wLK30OKe .container {
  max-width: 739px;
}
.cid-t0wLK30OKe .btn {
  margin-top: 20px;
}
.cid-t0wLK30OKe a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mc52MOwr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffda00;
}
@media (min-width: 1500px) {
  .cid-t0mc52MOwr .container {
    max-width: 1400px;
  }
}
.cid-t0mc52MOwr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0mc52MOwr .card {
  border-radius: 0;
  background: #333333;
}
.cid-t0mc52MOwr .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-t0mc52MOwr .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-t0mc52MOwr .img-col {
  padding: 0;
}
.cid-t0mc52MOwr .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t0mc52MOwr .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-t0mc531j5i {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mc531j5i .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mc531j5i .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mc531j5i .button-align {
  text-align: center;
}
.cid-t0mc531j5i .mbr-section-btn {
  display: block;
}
.cid-t0mc531j5i .container {
  max-width: 739px;
}
.cid-t0mc531j5i .btn {
  margin-top: 20px;
}
.cid-t0mc531j5i a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0msTunsYE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0msTunsYE img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t0msTunsYE img:hover {
  transform: scale(1.1);
}
.cid-t0msTunsYE .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t0msTunsYE h2 {
  padding: 0;
  margin: 0;
}
.cid-t0msTunsYE .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0msTunsYE .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t0msTunsYE .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t0msTunsYE .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-t0msTunsYE .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t0msTunsYE .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-t0msTunsYE .mbr-iconfont {
  margin: 0 !important;
}
.cid-t0msTunsYE .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t0msTunsYE .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t0msTunsYE .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t0msTunsYE .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-t0msTunsYE .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t0msTunsYE H2 {
  color: #333333;
}
.cid-t0msTunsYE .mbr-text {
  color: #767676;
}
.cid-t0mc52y9QO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mc52y9QO .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mc52y9QO .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mc52y9QO .button-align {
  text-align: center;
}
.cid-t0mc52y9QO .mbr-section-btn {
  display: block;
}
.cid-t0mc52y9QO .container {
  max-width: 739px;
}
.cid-t0mc52y9QO .btn {
  margin-top: 20px;
}
.cid-t0mc52y9QO a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mh9kL3cJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0mh9kL3cJ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t0mh9kL3cJ .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0mh9kL3cJ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0mh9kL3cJ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t0mh9kL3cJ .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #149dcc;
}
.cid-t0mcpjFC50 .nav-item:focus,
.cid-t0mcpjFC50 .nav-link:focus {
  outline: none;
}
.cid-t0mcpjFC50 a.nav-link:focus {
  color: #ffffff !important;
}
.cid-t0mcpjFC50 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffda00;
}
.cid-t0mcpjFC50 .navbar.opened {
  transition: all 0.3s;
  background: #ffda00 !important;
}
.cid-t0mcpjFC50 .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-t0mcpjFC50 .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t0mcpjFC50 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0mcpjFC50 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t0mcpjFC50 .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-t0mcpjFC50 .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-t0mcpjFC50 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0mcpjFC50 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0mcpjFC50 .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-t0mcpjFC50 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0mcpjFC50 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0mcpjFC50 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0mcpjFC50 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-t0mcpjFC50 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0mcpjFC50 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0mcpjFC50 .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-t0mcpjFC50 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0mcpjFC50 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0mcpjFC50 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0mcpjFC50 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0mcpjFC50 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0mcpjFC50 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0mcpjFC50 .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-t0mcpjFC50 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t0mcpjFC50 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0mcpjFC50 .navbar.navbar-short {
  background: #ffda00 !important;
  min-height: 60px;
}
.cid-t0mcpjFC50 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0mcpjFC50 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0mcpjFC50 .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0mcpjFC50 .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-t0mcpjFC50 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-t0mcpjFC50 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0mcpjFC50 .dropdown-item.active,
.cid-t0mcpjFC50 .dropdown-item:active {
  background-color: transparent;
}
.cid-t0mcpjFC50 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0mcpjFC50 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0mcpjFC50 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0mcpjFC50 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-t0mcpjFC50 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-t0mcpjFC50 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0mcpjFC50 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0mcpjFC50 .navbar-buttons {
  text-align: center;
}
.cid-t0mcpjFC50 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0mcpjFC50 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0mcpjFC50 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0mcpjFC50 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcpjFC50 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcpjFC50 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0mcpjFC50 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcpjFC50 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0mcpjFC50 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0mcpjFC50 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcpjFC50 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-t0mcpjFC50 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-t0mcpjFC50 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0mcpjFC50 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0mcpjFC50 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t0mcpjFC50 .nav-link:hover,
.cid-t0mcpjFC50 .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t0mcpjFC50 .dropdown-item:hover {
  color: #878787 !important;
}
.cid-t0mcpjFC50 .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-t0mcpjFC50 .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-t0mcpjFC50 .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-t0mcpjFC50 .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-t0mcpjFC50 .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-t0mcpjFC50 .dropdown-menu {
    top: 100%;
  }
  .cid-t0mcpjFC50 .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-t0mcpjFC50 .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-t0mcpjFC50 .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-t0mcpjFC50 .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-t0mcpkehFN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/mudanas-em-campinas-1900x1267.jpg");
}
.cid-t0mcpkehFN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0mcpkehFN .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcpkehFN .col-text {
    padding: 30px;
  }
}
.cid-t0mcpkehFN .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t0mcpkehFN .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcpkehFN .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t0mcpkehFN .col-form {
    max-height: 440px;
  }
}
.cid-t0mcpkehFN .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0mcpkehFN .text-wrapper {
    text-align: center !important;
  }
}
.cid-t0mcpkehFN .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcpkehFN .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t0mcpkehFN .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcpkehFN .mbr-text {
    text-align: center !important;
  }
}
.cid-t0mcpkehFN .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t0mcpkehFN .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcpkehFN .prof-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcpkehFN .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t0mcpkehFN .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0mcpkehFN .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0mcpkehFN .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0mcpkehFN .mbr-section-title,
.cid-t0mcpkehFN .mbr-section-btn {
  color: #ffffff;
}
.cid-t0mtbiznYV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mtbiznYV img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t0mtbiznYV img:hover {
  transform: scale(1.1);
}
.cid-t0mtbiznYV .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t0mtbiznYV h2 {
  padding: 0;
  margin: 0;
}
.cid-t0mtbiznYV .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0mtbiznYV .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t0mtbiznYV .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t0mtbiznYV .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-t0mtbiznYV .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t0mtbiznYV .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-t0mtbiznYV .mbr-iconfont {
  margin: 0 !important;
}
.cid-t0mtbiznYV .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t0mtbiznYV .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t0mtbiznYV .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t0mtbiznYV .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-t0mtbiznYV .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t0mtbiznYV H2 {
  color: #333333;
}
.cid-t0mtbiznYV .mbr-text {
  color: #767676;
}
.cid-t0mcpkLolM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcpkLolM .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcpkLolM .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcpkLolM .button-align {
  text-align: center;
}
.cid-t0mcpkLolM .mbr-section-btn {
  display: block;
}
.cid-t0mcpkLolM .container {
  max-width: 739px;
}
.cid-t0mcpkLolM .btn {
  margin-top: 20px;
}
.cid-t0mcpkLolM a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcpku5rN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mcpku5rN .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-t0mcpku5rN img {
  width: 100%;
}
.cid-t0mcpku5rN p {
  margin-top: 6rem;
}
.cid-t0mcpku5rN .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t0mcpku5rN .content-wrapper {
  padding-top: 6rem;
}
.cid-t0mcpku5rN h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t0mcpku5rN .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t0mcpku5rN p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0mcpku5rN .back {
    width: 100%;
    height: 75%;
  }
  .cid-t0mcpku5rN .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t0mcpku5rN p {
    margin-top: 4rem;
  }
}
.cid-t0mcpku5rN .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t0mcpku5rN .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t0mcpku5rN .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t0mcpku5rN h4 {
    right: 2rem;
  }
}
.cid-t0wNkibYxK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0wNkibYxK .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0wNkibYxK .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0wNkibYxK .button-align {
  text-align: center;
}
.cid-t0wNkibYxK .mbr-section-btn {
  display: block;
}
.cid-t0wNkibYxK .container {
  max-width: 739px;
}
.cid-t0wNkibYxK .btn {
  margin-top: 20px;
}
.cid-t0wNkibYxK a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0xufOFMFz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0xufOFMFz .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0xufOFMFz .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t0xufOFMFz img,
.cid-t0xufOFMFz .item-img {
  width: 100%;
}
.cid-t0xufOFMFz .item:focus,
.cid-t0xufOFMFz span:focus {
  outline: none;
}
.cid-t0xufOFMFz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0xufOFMFz .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0xufOFMFz img {
  border-radius: 30px;
}
.cid-t0mcpltQ4U {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcpltQ4U .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcpltQ4U .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcpltQ4U .button-align {
  text-align: center;
}
.cid-t0mcpltQ4U .mbr-section-btn {
  display: block;
}
.cid-t0mcpltQ4U .container {
  max-width: 739px;
}
.cid-t0mcpltQ4U .btn {
  margin-top: 20px;
}
.cid-t0mcpltQ4U a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcplJk2A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffda00;
}
@media (min-width: 1500px) {
  .cid-t0mcplJk2A .container {
    max-width: 1400px;
  }
}
.cid-t0mcplJk2A img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0mcplJk2A .card {
  border-radius: 0;
  background: #333333;
}
.cid-t0mcplJk2A .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-t0mcplJk2A .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-t0mcplJk2A .img-col {
  padding: 0;
}
.cid-t0mcplJk2A .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t0mcplJk2A .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-t0mcplY9P4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcplY9P4 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcplY9P4 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcplY9P4 .button-align {
  text-align: center;
}
.cid-t0mcplY9P4 .mbr-section-btn {
  display: block;
}
.cid-t0mcplY9P4 .container {
  max-width: 739px;
}
.cid-t0mcplY9P4 .btn {
  margin-top: 20px;
}
.cid-t0mcplY9P4 a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mhoDGroL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0mhoDGroL .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t0mhoDGroL .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0mhoDGroL .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0mhoDGroL .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t0mhoDGroL .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #149dcc;
}
.cid-t0mcuYRF6V .nav-item:focus,
.cid-t0mcuYRF6V .nav-link:focus {
  outline: none;
}
.cid-t0mcuYRF6V a.nav-link:focus {
  color: #ffffff !important;
}
.cid-t0mcuYRF6V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffda00;
}
.cid-t0mcuYRF6V .navbar.opened {
  transition: all 0.3s;
  background: #ffda00 !important;
}
.cid-t0mcuYRF6V .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-t0mcuYRF6V .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t0mcuYRF6V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0mcuYRF6V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t0mcuYRF6V .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-t0mcuYRF6V .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-t0mcuYRF6V .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0mcuYRF6V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0mcuYRF6V .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-t0mcuYRF6V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0mcuYRF6V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0mcuYRF6V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0mcuYRF6V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-t0mcuYRF6V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0mcuYRF6V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0mcuYRF6V .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-t0mcuYRF6V .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0mcuYRF6V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0mcuYRF6V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0mcuYRF6V .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0mcuYRF6V .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0mcuYRF6V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0mcuYRF6V .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-t0mcuYRF6V .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t0mcuYRF6V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0mcuYRF6V .navbar.navbar-short {
  background: #ffda00 !important;
  min-height: 60px;
}
.cid-t0mcuYRF6V .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0mcuYRF6V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0mcuYRF6V .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0mcuYRF6V .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-t0mcuYRF6V .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-t0mcuYRF6V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0mcuYRF6V .dropdown-item.active,
.cid-t0mcuYRF6V .dropdown-item:active {
  background-color: transparent;
}
.cid-t0mcuYRF6V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0mcuYRF6V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0mcuYRF6V .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0mcuYRF6V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-t0mcuYRF6V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-t0mcuYRF6V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0mcuYRF6V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0mcuYRF6V .navbar-buttons {
  text-align: center;
}
.cid-t0mcuYRF6V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0mcuYRF6V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0mcuYRF6V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0mcuYRF6V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcuYRF6V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcuYRF6V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0mcuYRF6V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcuYRF6V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0mcuYRF6V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0mcuYRF6V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcuYRF6V .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-t0mcuYRF6V a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-t0mcuYRF6V .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0mcuYRF6V .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0mcuYRF6V .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t0mcuYRF6V .nav-link:hover,
.cid-t0mcuYRF6V .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t0mcuYRF6V .dropdown-item:hover {
  color: #878787 !important;
}
.cid-t0mcuYRF6V .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-t0mcuYRF6V .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-t0mcuYRF6V .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-t0mcuYRF6V .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-t0mcuYRF6V .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-t0mcuYRF6V .dropdown-menu {
    top: 100%;
  }
  .cid-t0mcuYRF6V .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-t0mcuYRF6V .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-t0mcuYRF6V .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-t0mcuYRF6V .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-t0mcuZlipA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/mudanas-em-campinas-1900x1267.jpg");
}
.cid-t0mcuZlipA .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0mcuZlipA .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcuZlipA .col-text {
    padding: 30px;
  }
}
.cid-t0mcuZlipA .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t0mcuZlipA .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcuZlipA .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t0mcuZlipA .col-form {
    max-height: 440px;
  }
}
.cid-t0mcuZlipA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0mcuZlipA .text-wrapper {
    text-align: center !important;
  }
}
.cid-t0mcuZlipA .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcuZlipA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t0mcuZlipA .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcuZlipA .mbr-text {
    text-align: center !important;
  }
}
.cid-t0mcuZlipA .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t0mcuZlipA .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcuZlipA .prof-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcuZlipA .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t0mcuZlipA .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0mcuZlipA .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0mcuZlipA .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0mcuZlipA .mbr-section-title,
.cid-t0mcuZlipA .mbr-section-btn {
  color: #ffffff;
}
.cid-t0wOdKheRb {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0wOdKheRb .link-wrap {
  width: 100%;
}
.cid-t0wOdKheRb .link {
  display: inline-block;
}
.cid-t0wOdKheRb .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-t0wOdKheRb .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-t0wOdKheRb .link a:hover {
  text-decoration: underline;
}
.cid-t0wOdKheRb .link,
.cid-t0wOdKheRb .link-wrap {
  color: #ffffff;
}
.cid-t0wOdKheRb .mbr-text,
.cid-t0wOdKheRb .mbr-section-btn {
  color: #333333;
}
.cid-t0wOdKheRb .mbr-text,
.cid-t0wOdKheRb .link-wrap {
  text-align: left;
}
.cid-t0wOdKheRb .card-title,
.cid-t0wOdKheRb .card-box {
  text-align: left;
}
.cid-t0wP54QdtH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0wP54QdtH .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0wP54QdtH .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0wP54QdtH .button-align {
  text-align: center;
}
.cid-t0wP54QdtH .mbr-section-btn {
  display: block;
}
.cid-t0wP54QdtH .container {
  max-width: 739px;
}
.cid-t0wP54QdtH .btn {
  margin-top: 20px;
}
.cid-t0wP54QdtH a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcuZBoDf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mcuZBoDf .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-t0mcuZBoDf img {
  width: 100%;
}
.cid-t0mcuZBoDf p {
  margin-top: 6rem;
}
.cid-t0mcuZBoDf .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t0mcuZBoDf .content-wrapper {
  padding-top: 6rem;
}
.cid-t0mcuZBoDf h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t0mcuZBoDf .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t0mcuZBoDf p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0mcuZBoDf .back {
    width: 100%;
    height: 75%;
  }
  .cid-t0mcuZBoDf .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t0mcuZBoDf p {
    margin-top: 4rem;
  }
}
.cid-t0mcuZBoDf .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t0mcuZBoDf .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t0mcuZBoDf .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t0mcuZBoDf h4 {
    right: 2rem;
  }
}
.cid-t0mcuZRXil {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcuZRXil .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcuZRXil .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcuZRXil .button-align {
  text-align: center;
}
.cid-t0mcuZRXil .mbr-section-btn {
  display: block;
}
.cid-t0mcuZRXil .container {
  max-width: 739px;
}
.cid-t0mcuZRXil .btn {
  margin-top: 20px;
}
.cid-t0mcuZRXil a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0xuHe2u00 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0xuHe2u00 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0xuHe2u00 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t0xuHe2u00 img,
.cid-t0xuHe2u00 .item-img {
  width: 100%;
}
.cid-t0xuHe2u00 .item:focus,
.cid-t0xuHe2u00 span:focus {
  outline: none;
}
.cid-t0xuHe2u00 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0xuHe2u00 .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0xuHe2u00 img {
  border-radius: 30px;
}
.cid-t0mcv0vq3j {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcv0vq3j .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcv0vq3j .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcv0vq3j .button-align {
  text-align: center;
}
.cid-t0mcv0vq3j .mbr-section-btn {
  display: block;
}
.cid-t0mcv0vq3j .container {
  max-width: 739px;
}
.cid-t0mcv0vq3j .btn {
  margin-top: 20px;
}
.cid-t0mcv0vq3j a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcv0Jvrb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffda00;
}
@media (min-width: 1500px) {
  .cid-t0mcv0Jvrb .container {
    max-width: 1400px;
  }
}
.cid-t0mcv0Jvrb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0mcv0Jvrb .card {
  border-radius: 0;
  background: #333333;
}
.cid-t0mcv0Jvrb .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-t0mcv0Jvrb .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-t0mcv0Jvrb .img-col {
  padding: 0;
}
.cid-t0mcv0Jvrb .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t0mcv0Jvrb .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-t0mcv0XHsF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcv0XHsF .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcv0XHsF .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcv0XHsF .button-align {
  text-align: center;
}
.cid-t0mcv0XHsF .mbr-section-btn {
  display: block;
}
.cid-t0mcv0XHsF .container {
  max-width: 739px;
}
.cid-t0mcv0XHsF .btn {
  margin-top: 20px;
}
.cid-t0mcv0XHsF a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mnyyuZnR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mnyyuZnR img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t0mnyyuZnR img:hover {
  transform: scale(1.1);
}
.cid-t0mnyyuZnR .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t0mnyyuZnR h2 {
  padding: 0;
  margin: 0;
}
.cid-t0mnyyuZnR .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0mnyyuZnR .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t0mnyyuZnR .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t0mnyyuZnR .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-t0mnyyuZnR .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t0mnyyuZnR .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-t0mnyyuZnR .mbr-iconfont {
  margin: 0 !important;
}
.cid-t0mnyyuZnR .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t0mnyyuZnR .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t0mnyyuZnR .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t0mnyyuZnR .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-t0mnyyuZnR .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t0mnyyuZnR H2 {
  color: #333333;
}
.cid-t0mnyyuZnR .mbr-text {
  color: #767676;
}
.cid-t0mhBGz2I7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0mhBGz2I7 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t0mhBGz2I7 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0mhBGz2I7 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0mhBGz2I7 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t0mhBGz2I7 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #149dcc;
}
.cid-t0mcCrP58G .nav-item:focus,
.cid-t0mcCrP58G .nav-link:focus {
  outline: none;
}
.cid-t0mcCrP58G a.nav-link:focus {
  color: #ffffff !important;
}
.cid-t0mcCrP58G .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffda00;
}
.cid-t0mcCrP58G .navbar.opened {
  transition: all 0.3s;
  background: #ffda00 !important;
}
.cid-t0mcCrP58G .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-t0mcCrP58G .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t0mcCrP58G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0mcCrP58G .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t0mcCrP58G .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-t0mcCrP58G .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-t0mcCrP58G .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0mcCrP58G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0mcCrP58G .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-t0mcCrP58G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0mcCrP58G .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0mcCrP58G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0mcCrP58G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-t0mcCrP58G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0mcCrP58G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0mcCrP58G .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-t0mcCrP58G .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0mcCrP58G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0mcCrP58G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0mcCrP58G .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0mcCrP58G .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0mcCrP58G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0mcCrP58G .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-t0mcCrP58G .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t0mcCrP58G .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0mcCrP58G .navbar.navbar-short {
  background: #ffda00 !important;
  min-height: 60px;
}
.cid-t0mcCrP58G .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0mcCrP58G .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0mcCrP58G .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0mcCrP58G .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-t0mcCrP58G .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-t0mcCrP58G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0mcCrP58G .dropdown-item.active,
.cid-t0mcCrP58G .dropdown-item:active {
  background-color: transparent;
}
.cid-t0mcCrP58G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0mcCrP58G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0mcCrP58G .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0mcCrP58G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-t0mcCrP58G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-t0mcCrP58G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0mcCrP58G ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0mcCrP58G .navbar-buttons {
  text-align: center;
}
.cid-t0mcCrP58G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0mcCrP58G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0mcCrP58G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0mcCrP58G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcCrP58G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcCrP58G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0mcCrP58G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcCrP58G nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0mcCrP58G nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0mcCrP58G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcCrP58G .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-t0mcCrP58G a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-t0mcCrP58G .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0mcCrP58G .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0mcCrP58G .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t0mcCrP58G .nav-link:hover,
.cid-t0mcCrP58G .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t0mcCrP58G .dropdown-item:hover {
  color: #878787 !important;
}
.cid-t0mcCrP58G .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-t0mcCrP58G .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-t0mcCrP58G .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-t0mcCrP58G .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-t0mcCrP58G .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-t0mcCrP58G .dropdown-menu {
    top: 100%;
  }
  .cid-t0mcCrP58G .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-t0mcCrP58G .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-t0mcCrP58G .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-t0mcCrP58G .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-t0mcCskZZo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/mudanas-em-campinas-1900x1267.jpg");
}
.cid-t0mcCskZZo .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0mcCskZZo .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcCskZZo .col-text {
    padding: 30px;
  }
}
.cid-t0mcCskZZo .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t0mcCskZZo .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcCskZZo .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t0mcCskZZo .col-form {
    max-height: 440px;
  }
}
.cid-t0mcCskZZo .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0mcCskZZo .text-wrapper {
    text-align: center !important;
  }
}
.cid-t0mcCskZZo .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcCskZZo .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t0mcCskZZo .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcCskZZo .mbr-text {
    text-align: center !important;
  }
}
.cid-t0mcCskZZo .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t0mcCskZZo .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcCskZZo .prof-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcCskZZo .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t0mcCskZZo .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0mcCskZZo .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0mcCskZZo .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0mcCskZZo .mbr-section-title,
.cid-t0mcCskZZo .mbr-section-btn {
  color: #ffffff;
}
.cid-t0wQUbCFww {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0wQUbCFww .link-wrap {
  width: 100%;
}
.cid-t0wQUbCFww .link {
  display: inline-block;
}
.cid-t0wQUbCFww .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-t0wQUbCFww .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-t0wQUbCFww .link a:hover {
  text-decoration: underline;
}
.cid-t0wQUbCFww .link,
.cid-t0wQUbCFww .link-wrap {
  color: #ffffff;
}
.cid-t0wQUbCFww .mbr-text,
.cid-t0wQUbCFww .mbr-section-btn {
  color: #333333;
}
.cid-t0wQUbCFww .mbr-text,
.cid-t0wQUbCFww .link-wrap {
  text-align: left;
}
.cid-t0wQUbCFww .card-title,
.cid-t0wQUbCFww .card-box {
  text-align: left;
}
.cid-t0wS2NcIk2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0wS2NcIk2 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0wS2NcIk2 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0wS2NcIk2 .button-align {
  text-align: center;
}
.cid-t0wS2NcIk2 .mbr-section-btn {
  display: block;
}
.cid-t0wS2NcIk2 .container {
  max-width: 739px;
}
.cid-t0wS2NcIk2 .btn {
  margin-top: 20px;
}
.cid-t0wS2NcIk2 a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcCsyYpJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mcCsyYpJ .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-t0mcCsyYpJ img {
  width: 100%;
}
.cid-t0mcCsyYpJ p {
  margin-top: 6rem;
}
.cid-t0mcCsyYpJ .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t0mcCsyYpJ .content-wrapper {
  padding-top: 6rem;
}
.cid-t0mcCsyYpJ h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t0mcCsyYpJ .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t0mcCsyYpJ p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0mcCsyYpJ .back {
    width: 100%;
    height: 75%;
  }
  .cid-t0mcCsyYpJ .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t0mcCsyYpJ p {
    margin-top: 4rem;
  }
}
.cid-t0mcCsyYpJ .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t0mcCsyYpJ .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t0mcCsyYpJ .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t0mcCsyYpJ h4 {
    right: 2rem;
  }
}
.cid-t0mcCsQrz0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcCsQrz0 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcCsQrz0 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcCsQrz0 .button-align {
  text-align: center;
}
.cid-t0mcCsQrz0 .mbr-section-btn {
  display: block;
}
.cid-t0mcCsQrz0 .container {
  max-width: 739px;
}
.cid-t0mcCsQrz0 .btn {
  margin-top: 20px;
}
.cid-t0mcCsQrz0 a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0xuXZAfIB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0xuXZAfIB .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0xuXZAfIB .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t0xuXZAfIB img,
.cid-t0xuXZAfIB .item-img {
  width: 100%;
}
.cid-t0xuXZAfIB .item:focus,
.cid-t0xuXZAfIB span:focus {
  outline: none;
}
.cid-t0xuXZAfIB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0xuXZAfIB .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0xuXZAfIB img {
  border-radius: 30px;
}
.cid-t0mcCtr4O3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcCtr4O3 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcCtr4O3 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcCtr4O3 .button-align {
  text-align: center;
}
.cid-t0mcCtr4O3 .mbr-section-btn {
  display: block;
}
.cid-t0mcCtr4O3 .container {
  max-width: 739px;
}
.cid-t0mcCtr4O3 .btn {
  margin-top: 20px;
}
.cid-t0mcCtr4O3 a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcCtHwGV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffda00;
}
@media (min-width: 1500px) {
  .cid-t0mcCtHwGV .container {
    max-width: 1400px;
  }
}
.cid-t0mcCtHwGV img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0mcCtHwGV .card {
  border-radius: 0;
  background: #333333;
}
.cid-t0mcCtHwGV .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-t0mcCtHwGV .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-t0mcCtHwGV .img-col {
  padding: 0;
}
.cid-t0mcCtHwGV .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t0mcCtHwGV .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-t0mtlIuK2r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mtlIuK2r img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t0mtlIuK2r img:hover {
  transform: scale(1.1);
}
.cid-t0mtlIuK2r .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t0mtlIuK2r h2 {
  padding: 0;
  margin: 0;
}
.cid-t0mtlIuK2r .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0mtlIuK2r .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t0mtlIuK2r .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t0mtlIuK2r .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-t0mtlIuK2r .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t0mtlIuK2r .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-t0mtlIuK2r .mbr-iconfont {
  margin: 0 !important;
}
.cid-t0mtlIuK2r .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t0mtlIuK2r .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t0mtlIuK2r .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t0mtlIuK2r .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-t0mtlIuK2r .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t0mtlIuK2r H2 {
  color: #333333;
}
.cid-t0mtlIuK2r .mbr-text {
  color: #767676;
}
.cid-t0mcCtVMcB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcCtVMcB .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcCtVMcB .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcCtVMcB .button-align {
  text-align: center;
}
.cid-t0mcCtVMcB .mbr-section-btn {
  display: block;
}
.cid-t0mcCtVMcB .container {
  max-width: 739px;
}
.cid-t0mcCtVMcB .btn {
  margin-top: 20px;
}
.cid-t0mcCtVMcB a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mhR9NHRX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0mhR9NHRX .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t0mhR9NHRX .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0mhR9NHRX .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0mhR9NHRX .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t0mhR9NHRX .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #149dcc;
}
.cid-t0mcH2oser .nav-item:focus,
.cid-t0mcH2oser .nav-link:focus {
  outline: none;
}
.cid-t0mcH2oser a.nav-link:focus {
  color: #ffffff !important;
}
.cid-t0mcH2oser .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffda00;
}
.cid-t0mcH2oser .navbar.opened {
  transition: all 0.3s;
  background: #ffda00 !important;
}
.cid-t0mcH2oser .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-t0mcH2oser .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-t0mcH2oser .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0mcH2oser .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-t0mcH2oser .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-t0mcH2oser .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-t0mcH2oser .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t0mcH2oser .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0mcH2oser .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-t0mcH2oser .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0mcH2oser .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t0mcH2oser .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0mcH2oser .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-t0mcH2oser .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0mcH2oser .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0mcH2oser .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-t0mcH2oser .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t0mcH2oser .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0mcH2oser .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0mcH2oser .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t0mcH2oser .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-t0mcH2oser .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0mcH2oser .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-t0mcH2oser .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-t0mcH2oser .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0mcH2oser .navbar.navbar-short {
  background: #ffda00 !important;
  min-height: 60px;
}
.cid-t0mcH2oser .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t0mcH2oser .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t0mcH2oser .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0mcH2oser .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-t0mcH2oser .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-t0mcH2oser .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0mcH2oser .dropdown-item.active,
.cid-t0mcH2oser .dropdown-item:active {
  background-color: transparent;
}
.cid-t0mcH2oser .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0mcH2oser .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0mcH2oser .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0mcH2oser .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-t0mcH2oser .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-t0mcH2oser .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0mcH2oser ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t0mcH2oser .navbar-buttons {
  text-align: center;
}
.cid-t0mcH2oser button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t0mcH2oser button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t0mcH2oser button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0mcH2oser button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcH2oser button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0mcH2oser button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0mcH2oser nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcH2oser nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0mcH2oser nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0mcH2oser nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0mcH2oser .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-t0mcH2oser a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-t0mcH2oser .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0mcH2oser .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t0mcH2oser .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-t0mcH2oser .nav-link:hover,
.cid-t0mcH2oser .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-t0mcH2oser .dropdown-item:hover {
  color: #878787 !important;
}
.cid-t0mcH2oser .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-t0mcH2oser .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-t0mcH2oser .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-t0mcH2oser .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-t0mcH2oser .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-t0mcH2oser .dropdown-menu {
    top: 100%;
  }
  .cid-t0mcH2oser .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-t0mcH2oser .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-t0mcH2oser .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-t0mcH2oser .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-t0mcH2XolI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../images/mudanas-em-campinas-1900x1267.jpg");
}
.cid-t0mcH2XolI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t0mcH2XolI .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcH2XolI .col-text {
    padding: 30px;
  }
}
.cid-t0mcH2XolI .col-form {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t0mcH2XolI .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-t0mcH2XolI .col-form {
    padding: 30px;
    min-height: 540px;
  }
}
@media (min-width: 768px) {
  .cid-t0mcH2XolI .col-form {
    max-height: 440px;
  }
}
.cid-t0mcH2XolI .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-t0mcH2XolI .text-wrapper {
    text-align: center !important;
  }
}
.cid-t0mcH2XolI .mbr-section-title {
  color: #000000;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcH2XolI .mbr-section-title {
    text-align: center !important;
  }
}
.cid-t0mcH2XolI .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t0mcH2XolI .mbr-text {
    text-align: center !important;
  }
}
.cid-t0mcH2XolI .text-user {
  width: 100%;
  margin-top: 20px;
}
.cid-t0mcH2XolI .name-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcH2XolI .prof-text {
  color: #ffffff;
  width: 100%;
}
.cid-t0mcH2XolI .btn-container {
  width: 100%;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .cid-t0mcH2XolI .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-t0mcH2XolI .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0mcH2XolI .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t0mcH2XolI .mbr-section-title,
.cid-t0mcH2XolI .mbr-section-btn {
  color: #ffffff;
}
.cid-t0wU2Czg3v {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0wU2Czg3v .link-wrap {
  width: 100%;
}
.cid-t0wU2Czg3v .link {
  display: inline-block;
}
.cid-t0wU2Czg3v .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-t0wU2Czg3v .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-t0wU2Czg3v .link a:hover {
  text-decoration: underline;
}
.cid-t0wU2Czg3v .link,
.cid-t0wU2Czg3v .link-wrap {
  color: #ffffff;
}
.cid-t0wU2Czg3v .mbr-text,
.cid-t0wU2Czg3v .mbr-section-btn {
  color: #333333;
}
.cid-t0wU2Czg3v .mbr-text,
.cid-t0wU2Czg3v .link-wrap {
  text-align: left;
}
.cid-t0wU2Czg3v .card-title,
.cid-t0wU2Czg3v .card-box {
  text-align: left;
}
.cid-t0wUVGDKx5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0wUVGDKx5 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0wUVGDKx5 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0wUVGDKx5 .button-align {
  text-align: center;
}
.cid-t0wUVGDKx5 .mbr-section-btn {
  display: block;
}
.cid-t0wUVGDKx5 .container {
  max-width: 739px;
}
.cid-t0wUVGDKx5 .btn {
  margin-top: 20px;
}
.cid-t0wUVGDKx5 a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcH3j0vF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mcH3j0vF .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ffda00;
}
.cid-t0mcH3j0vF img {
  width: 100%;
}
.cid-t0mcH3j0vF p {
  margin-top: 6rem;
}
.cid-t0mcH3j0vF .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t0mcH3j0vF .content-wrapper {
  padding-top: 6rem;
}
.cid-t0mcH3j0vF h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t0mcH3j0vF .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t0mcH3j0vF p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t0mcH3j0vF .back {
    width: 100%;
    height: 75%;
  }
  .cid-t0mcH3j0vF .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t0mcH3j0vF p {
    margin-top: 4rem;
  }
}
.cid-t0mcH3j0vF .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t0mcH3j0vF .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t0mcH3j0vF .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t0mcH3j0vF h4 {
    right: 2rem;
  }
}
.cid-t0mcH3AGoi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcH3AGoi .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcH3AGoi .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcH3AGoi .button-align {
  text-align: center;
}
.cid-t0mcH3AGoi .mbr-section-btn {
  display: block;
}
.cid-t0mcH3AGoi .container {
  max-width: 739px;
}
.cid-t0mcH3AGoi .btn {
  margin-top: 20px;
}
.cid-t0mcH3AGoi a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0xos5bENA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0xos5bENA .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-t0xos5bENA .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-t0xos5bENA img,
.cid-t0xos5bENA .item-img {
  width: 100%;
}
.cid-t0xos5bENA .item:focus,
.cid-t0xos5bENA span:focus {
  outline: none;
}
.cid-t0xos5bENA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0xos5bENA .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0xos5bENA img {
  border-radius: 30px;
}
.cid-t0mcH4jyDK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcH4jyDK .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcH4jyDK .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcH4jyDK .button-align {
  text-align: center;
}
.cid-t0mcH4jyDK .mbr-section-btn {
  display: block;
}
.cid-t0mcH4jyDK .container {
  max-width: 739px;
}
.cid-t0mcH4jyDK .btn {
  margin-top: 20px;
}
.cid-t0mcH4jyDK a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mcH4vrCe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffda00;
}
@media (min-width: 1500px) {
  .cid-t0mcH4vrCe .container {
    max-width: 1400px;
  }
}
.cid-t0mcH4vrCe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0mcH4vrCe .card {
  border-radius: 0;
  background: #333333;
}
.cid-t0mcH4vrCe .wrapper {
  padding: 6rem 8rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1200px) {
  .cid-t0mcH4vrCe .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-t0mcH4vrCe .img-col {
  padding: 0;
}
.cid-t0mcH4vrCe .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-t0mcH4vrCe .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-t0mtqjwfXN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t0mtqjwfXN img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t0mtqjwfXN img:hover {
  transform: scale(1.1);
}
.cid-t0mtqjwfXN .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t0mtqjwfXN h2 {
  padding: 0;
  margin: 0;
}
.cid-t0mtqjwfXN .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0mtqjwfXN .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t0mtqjwfXN .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t0mtqjwfXN .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 300px;
}
.cid-t0mtqjwfXN .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t0mtqjwfXN .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0 !important;
}
.cid-t0mtqjwfXN .mbr-iconfont {
  margin: 0 !important;
}
.cid-t0mtqjwfXN .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t0mtqjwfXN .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t0mtqjwfXN .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t0mtqjwfXN .btn {
    padding: 0.6rem 0.8rem !important;
    min-width: 200px !important;
  }
  .cid-t0mtqjwfXN .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t0mtqjwfXN H2 {
  color: #333333;
}
.cid-t0mtqjwfXN .mbr-text {
  color: #767676;
}
.cid-t0mcH4LeQ8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #cccccc;
}
.cid-t0mcH4LeQ8 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-t0mcH4LeQ8 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-t0mcH4LeQ8 .button-align {
  text-align: center;
}
.cid-t0mcH4LeQ8 .mbr-section-btn {
  display: block;
}
.cid-t0mcH4LeQ8 .container {
  max-width: 739px;
}
.cid-t0mcH4LeQ8 .btn {
  margin-top: 20px;
}
.cid-t0mcH4LeQ8 a.btn > span {
  margin-left: 0.5rem;
}
.cid-t0mhYvfsoX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0mhYvfsoX .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t0mhYvfsoX .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-t0mhYvfsoX .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t0mhYvfsoX .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t0mhYvfsoX .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #149dcc;
}
