body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #48cf50 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #48cf50 !important;
  border-color: #48cf50 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #28982f !important;
  border-color: #28982f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #28982f !important;
  border-color: #28982f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #48cf50;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #28982f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #48cf50 !important;
  border-color: #48cf50 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #48cf50 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #258c2b !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #eaf9eb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tvhFVKrLJj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvhFVKrLJj nav.navbar {
  position: fixed;
}
.cid-tvhFVKrLJj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvhFVKrLJj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvhFVKrLJj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvhFVKrLJj .dropdown-item:hover,
.cid-tvhFVKrLJj .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tvhFVKrLJj .dropdown-item:hover span {
  color: white;
}
.cid-tvhFVKrLJj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvhFVKrLJj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvhFVKrLJj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvhFVKrLJj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvhFVKrLJj .nav-link {
  position: relative;
}
.cid-tvhFVKrLJj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tvhFVKrLJj .container {
    flex-wrap: nowrap;
  }
}
.cid-tvhFVKrLJj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvhFVKrLJj .dropdown-menu,
.cid-tvhFVKrLJj .navbar.opened {
  background: #4479d9 !important;
}
.cid-tvhFVKrLJj .nav-item:focus,
.cid-tvhFVKrLJj .nav-link:focus {
  outline: none;
}
.cid-tvhFVKrLJj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvhFVKrLJj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvhFVKrLJj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvhFVKrLJj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvhFVKrLJj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvhFVKrLJj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvhFVKrLJj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-tvhFVKrLJj .navbar.opened {
  transition: all 0.3s;
}
.cid-tvhFVKrLJj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvhFVKrLJj .navbar .navbar-logo img {
  width: auto;
}
.cid-tvhFVKrLJj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvhFVKrLJj .navbar.collapsed {
  justify-content: center;
}
.cid-tvhFVKrLJj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvhFVKrLJj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvhFVKrLJj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvhFVKrLJj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvhFVKrLJj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvhFVKrLJj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tvhFVKrLJj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvhFVKrLJj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvhFVKrLJj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvhFVKrLJj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvhFVKrLJj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvhFVKrLJj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvhFVKrLJj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvhFVKrLJj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tvhFVKrLJj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvhFVKrLJj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvhFVKrLJj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvhFVKrLJj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvhFVKrLJj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvhFVKrLJj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tvhFVKrLJj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tvhFVKrLJj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvhFVKrLJj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvhFVKrLJj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvhFVKrLJj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvhFVKrLJj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvhFVKrLJj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvhFVKrLJj .dropdown-item.active,
.cid-tvhFVKrLJj .dropdown-item:active {
  background-color: transparent;
}
.cid-tvhFVKrLJj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvhFVKrLJj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvhFVKrLJj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvhFVKrLJj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-tvhFVKrLJj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvhFVKrLJj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvhFVKrLJj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvhFVKrLJj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvhFVKrLJj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvhFVKrLJj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tvhFVKrLJj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvhFVKrLJj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvhFVKrLJj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvhFVKrLJj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvhFVKrLJj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvhFVKrLJj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvhFVKrLJj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvhFVKrLJj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvhFVKrLJj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvhFVKrLJj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvhFVKrLJj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvhFVKrLJj .navbar {
    height: 70px;
  }
  .cid-tvhFVKrLJj .navbar.opened {
    height: auto;
  }
  .cid-tvhFVKrLJj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tviiJaqnjf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-tviiJaqnjf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tviiJaqnjf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tviiJaqnjf .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tviiJaqnjf .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tviiJaqnjf .mbr-section-title {
  color: #bbbbbb;
}
.cid-tviiK4TdLp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/atacadao-do-gesso-drywall-2.jpg");
}
.cid-tviiK4TdLp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tviiK4TdLp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tviiK4TdLp .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tviiK4TdLp .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tviiK4TdLp .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tviiK4TdLp .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvioWIQiCR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/parede-drywall-atacadao-do-gesso.jpg");
}
.cid-tvioWIQiCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvioWIQiCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvioWIQiCR .row {
  flex-direction: row-reverse;
}
.cid-tvioWIQiCR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvioWIQiCR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvioWIQiCR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tvioWIQiCR .mbr-text,
.cid-tvioWIQiCR .mbr-section-btn {
  text-align: left;
}
.cid-tvioWIQiCR .mbr-section-title {
  text-align: left;
}
.cid-tviiNbyTaR {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/moldura-gesso.jpg");
}
.cid-tviiNbyTaR .mbr-overlay {
  background: #6592e6;
  opacity: 0.8;
}
.cid-tviiNbyTaR img,
.cid-tviiNbyTaR .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tviiNbyTaR .item:focus,
.cid-tviiNbyTaR span:focus {
  outline: none;
}
.cid-tviiNbyTaR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tviiNbyTaR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tviiNbyTaR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tviiNbyTaR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tviiNbyTaR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tviiNbyTaR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tviiNbyTaR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tviiNbyTaR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tviiNbyTaR .mbr-text,
.cid-tviiNbyTaR .mbr-section-btn {
  text-align: left;
}
.cid-tviiNbyTaR .item-title {
  text-align: left;
}
.cid-tviiNbyTaR .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tviiRb0nGW {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/manual-fixao-manuteno-e-acabamento-de-drywall-1.jpg");
}
.cid-tviiRb0nGW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-tviiRb0nGW form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tviiRb0nGW form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tviiRb0nGW form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tviiRb0nGW .mbr-section-title {
  text-align: center;
}
.cid-tvj3J54QOB {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvj3J54QOB img,
.cid-tvj3J54QOB .item-img {
  width: 100%;
}
.cid-tvj3J54QOB .item:focus,
.cid-tvj3J54QOB span:focus {
  outline: none;
}
.cid-tvj3J54QOB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tvj3J54QOB .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tvj3J54QOB .item {
  padding: 0;
  margin: 0;
}
.cid-tvj3J54QOB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvj3J54QOB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvj3J54QOB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvj3J54QOB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvj3J54QOB .mbr-section-title {
  color: #232323;
}
.cid-tviiW3SXOc {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-tviiW3SXOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tviiW3SXOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tviiW3SXOc .google-map {
  height: 30rem;
  position: relative;
}
.cid-tviiW3SXOc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tviiW3SXOc .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tviiW3SXOc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tviiW3SXOc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tviiW3SXOc .mbr-section-title {
  color: #ffffff;
}
.cid-tviiW3SXOc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tvij1OfvVZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tvij1OfvVZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvij1OfvVZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvij1OfvVZ .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tvij5mdFzc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tvij5mdFzc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvij5mdFzc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvij5mdFzc .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tvij5mdFzc .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tvij5mdFzc .row {
    text-align: center;
  }
  .cid-tvij5mdFzc .row > div {
    margin: auto;
  }
  .cid-tvij5mdFzc .social-row {
    justify-content: center;
  }
}
.cid-tvij5mdFzc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tvij5mdFzc .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tvij5mdFzc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvij5mdFzc .list {
    margin-bottom: 0rem;
  }
}
.cid-tvij5mdFzc .mbr-text {
  color: #bbbbbb;
}
.cid-tvij5mdFzc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tvij5mdFzc .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tvij5mdFzc div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2QLHgc5NN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2QLHgc5NN nav.navbar {
  position: fixed;
}
.cid-u2QLHgc5NN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLHgc5NN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2QLHgc5NN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2QLHgc5NN .dropdown-item:hover,
.cid-u2QLHgc5NN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2QLHgc5NN .dropdown-item:hover span {
  color: white;
}
.cid-u2QLHgc5NN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2QLHgc5NN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2QLHgc5NN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2QLHgc5NN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2QLHgc5NN .nav-link {
  position: relative;
}
.cid-u2QLHgc5NN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2QLHgc5NN .container {
    flex-wrap: nowrap;
  }
}
.cid-u2QLHgc5NN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2QLHgc5NN .dropdown-menu,
.cid-u2QLHgc5NN .navbar.opened {
  background: #4479d9 !important;
}
.cid-u2QLHgc5NN .nav-item:focus,
.cid-u2QLHgc5NN .nav-link:focus {
  outline: none;
}
.cid-u2QLHgc5NN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2QLHgc5NN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2QLHgc5NN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2QLHgc5NN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLHgc5NN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2QLHgc5NN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2QLHgc5NN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-u2QLHgc5NN .navbar.opened {
  transition: all 0.3s;
}
.cid-u2QLHgc5NN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2QLHgc5NN .navbar .navbar-logo img {
  width: auto;
}
.cid-u2QLHgc5NN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2QLHgc5NN .navbar.collapsed {
  justify-content: center;
}
.cid-u2QLHgc5NN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2QLHgc5NN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2QLHgc5NN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2QLHgc5NN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2QLHgc5NN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2QLHgc5NN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2QLHgc5NN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2QLHgc5NN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2QLHgc5NN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2QLHgc5NN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2QLHgc5NN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2QLHgc5NN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2QLHgc5NN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2QLHgc5NN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2QLHgc5NN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2QLHgc5NN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2QLHgc5NN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2QLHgc5NN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2QLHgc5NN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2QLHgc5NN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2QLHgc5NN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2QLHgc5NN .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2QLHgc5NN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2QLHgc5NN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2QLHgc5NN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2QLHgc5NN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2QLHgc5NN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2QLHgc5NN .dropdown-item.active,
.cid-u2QLHgc5NN .dropdown-item:active {
  background-color: transparent;
}
.cid-u2QLHgc5NN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2QLHgc5NN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2QLHgc5NN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2QLHgc5NN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-u2QLHgc5NN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2QLHgc5NN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2QLHgc5NN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2QLHgc5NN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2QLHgc5NN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2QLHgc5NN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2QLHgc5NN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2QLHgc5NN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLHgc5NN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLHgc5NN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2QLHgc5NN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLHgc5NN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2QLHgc5NN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2QLHgc5NN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLHgc5NN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2QLHgc5NN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2QLHgc5NN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2QLHgc5NN .navbar {
    height: 70px;
  }
  .cid-u2QLHgc5NN .navbar.opened {
    height: auto;
  }
  .cid-u2QLHgc5NN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2QLHgt5Hl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLHgt5Hl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLHgt5Hl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLHgt5Hl .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2QLHgt5Hl .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-u2QLHgt5Hl .mbr-section-title {
  color: #bbbbbb;
}
.cid-u2QLHgJu8R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/atacadao-do-gesso-drywall-2.jpg");
}
.cid-u2QLHgJu8R .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLHgJu8R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLHgJu8R .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u2QLHgJu8R .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u2QLHgJu8R .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLHgJu8R .card-wrapper {
    padding: 4rem;
  }
}
.cid-u2QLHgXLAC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/parede-drywall-atacadao-do-gesso.jpg");
}
.cid-u2QLHgXLAC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLHgXLAC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLHgXLAC .row {
  flex-direction: row-reverse;
}
.cid-u2QLHgXLAC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2QLHgXLAC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLHgXLAC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u2QLHgXLAC .mbr-text,
.cid-u2QLHgXLAC .mbr-section-btn {
  text-align: left;
}
.cid-u2QLHgXLAC .mbr-section-title {
  text-align: left;
}
.cid-u2QLHhb6Ed {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/moldura-gesso.jpg");
}
.cid-u2QLHhb6Ed .mbr-overlay {
  background: #6592e6;
  opacity: 0.8;
}
.cid-u2QLHhb6Ed img,
.cid-u2QLHhb6Ed .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u2QLHhb6Ed .item:focus,
.cid-u2QLHhb6Ed span:focus {
  outline: none;
}
.cid-u2QLHhb6Ed .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2QLHhb6Ed .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLHhb6Ed .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u2QLHhb6Ed .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLHhb6Ed .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u2QLHhb6Ed .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u2QLHhb6Ed .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLHhb6Ed .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u2QLHhb6Ed .mbr-text,
.cid-u2QLHhb6Ed .mbr-section-btn {
  text-align: left;
}
.cid-u2QLHhb6Ed .item-title {
  text-align: left;
}
.cid-u2QLHhb6Ed .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-u2QLHhyDCJ {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/manual-fixao-manuteno-e-acabamento-de-drywall-1.jpg");
}
.cid-u2QLHhyDCJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-u2QLHhyDCJ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u2QLHhyDCJ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u2QLHhyDCJ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u2QLHhyDCJ .mbr-section-title {
  text-align: center;
}
.cid-u2QLHhMlUI {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2QLHhMlUI img,
.cid-u2QLHhMlUI .item-img {
  width: 100%;
}
.cid-u2QLHhMlUI .item:focus,
.cid-u2QLHhMlUI span:focus {
  outline: none;
}
.cid-u2QLHhMlUI .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2QLHhMlUI .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u2QLHhMlUI .item {
  padding: 0;
  margin: 0;
}
.cid-u2QLHhMlUI .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLHhMlUI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLHhMlUI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2QLHhMlUI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLHhMlUI .mbr-section-title {
  color: #232323;
}
.cid-u2QLHiBDzg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2QLHiBDzg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLHiBDzg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLHiBDzg .mbr-section-subtitle {
  color: #000000;
}
.cid-u2QLHiiwjp {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLHiiwjp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLHiiwjp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLHiiwjp .google-map {
  height: 30rem;
  position: relative;
}
.cid-u2QLHiiwjp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2QLHiiwjp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2QLHiiwjp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2QLHiiwjp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2QLHiiwjp .mbr-section-title {
  color: #ffffff;
}
.cid-u2QLHiiwjp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2QLHiRuDK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u2QLHiRuDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLHiRuDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLHiRuDK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u2QLHiRuDK .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u2QLHiRuDK .row {
    text-align: center;
  }
  .cid-u2QLHiRuDK .row > div {
    margin: auto;
  }
  .cid-u2QLHiRuDK .social-row {
    justify-content: center;
  }
}
.cid-u2QLHiRuDK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2QLHiRuDK .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u2QLHiRuDK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLHiRuDK .list {
    margin-bottom: 0rem;
  }
}
.cid-u2QLHiRuDK .mbr-text {
  color: #bbbbbb;
}
.cid-u2QLHiRuDK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u2QLHiRuDK .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u2QLHiRuDK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2QLFm2kth {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2QLFm2kth nav.navbar {
  position: fixed;
}
.cid-u2QLFm2kth .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLFm2kth .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2QLFm2kth .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2QLFm2kth .dropdown-item:hover,
.cid-u2QLFm2kth .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2QLFm2kth .dropdown-item:hover span {
  color: white;
}
.cid-u2QLFm2kth .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2QLFm2kth .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2QLFm2kth .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2QLFm2kth .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2QLFm2kth .nav-link {
  position: relative;
}
.cid-u2QLFm2kth .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2QLFm2kth .container {
    flex-wrap: nowrap;
  }
}
.cid-u2QLFm2kth .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2QLFm2kth .dropdown-menu,
.cid-u2QLFm2kth .navbar.opened {
  background: #4479d9 !important;
}
.cid-u2QLFm2kth .nav-item:focus,
.cid-u2QLFm2kth .nav-link:focus {
  outline: none;
}
.cid-u2QLFm2kth .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2QLFm2kth .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2QLFm2kth .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2QLFm2kth .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLFm2kth .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2QLFm2kth .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2QLFm2kth .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-u2QLFm2kth .navbar.opened {
  transition: all 0.3s;
}
.cid-u2QLFm2kth .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2QLFm2kth .navbar .navbar-logo img {
  width: auto;
}
.cid-u2QLFm2kth .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2QLFm2kth .navbar.collapsed {
  justify-content: center;
}
.cid-u2QLFm2kth .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2QLFm2kth .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2QLFm2kth .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2QLFm2kth .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2QLFm2kth .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2QLFm2kth .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2QLFm2kth .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2QLFm2kth .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2QLFm2kth .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2QLFm2kth .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2QLFm2kth .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2QLFm2kth .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2QLFm2kth .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2QLFm2kth .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2QLFm2kth .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2QLFm2kth .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2QLFm2kth .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2QLFm2kth .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2QLFm2kth .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2QLFm2kth .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2QLFm2kth .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2QLFm2kth .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2QLFm2kth .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2QLFm2kth .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2QLFm2kth .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2QLFm2kth .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2QLFm2kth .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2QLFm2kth .dropdown-item.active,
.cid-u2QLFm2kth .dropdown-item:active {
  background-color: transparent;
}
.cid-u2QLFm2kth .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2QLFm2kth .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2QLFm2kth .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2QLFm2kth .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-u2QLFm2kth .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2QLFm2kth .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2QLFm2kth ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2QLFm2kth .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2QLFm2kth button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2QLFm2kth button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2QLFm2kth button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2QLFm2kth button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLFm2kth button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLFm2kth button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2QLFm2kth nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLFm2kth nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2QLFm2kth nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2QLFm2kth nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLFm2kth .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2QLFm2kth a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2QLFm2kth .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2QLFm2kth .navbar {
    height: 70px;
  }
  .cid-u2QLFm2kth .navbar.opened {
    height: auto;
  }
  .cid-u2QLFm2kth .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2QLFmllbG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLFmllbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLFmllbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLFmllbG .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2QLFmllbG .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-u2QLFmllbG .mbr-section-title {
  color: #bbbbbb;
}
.cid-u2QLFmE3Pg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/atacadao-do-gesso-drywall-2.jpg");
}
.cid-u2QLFmE3Pg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLFmE3Pg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLFmE3Pg .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u2QLFmE3Pg .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u2QLFmE3Pg .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLFmE3Pg .card-wrapper {
    padding: 4rem;
  }
}
.cid-u2QLFn9xhF {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/moldura-gesso.jpg");
}
.cid-u2QLFn9xhF .mbr-overlay {
  background: #6592e6;
  opacity: 0.8;
}
.cid-u2QLFn9xhF img,
.cid-u2QLFn9xhF .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u2QLFn9xhF .item:focus,
.cid-u2QLFn9xhF span:focus {
  outline: none;
}
.cid-u2QLFn9xhF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2QLFn9xhF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLFn9xhF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u2QLFn9xhF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLFn9xhF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u2QLFn9xhF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u2QLFn9xhF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLFn9xhF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u2QLFn9xhF .mbr-text,
.cid-u2QLFn9xhF .mbr-section-btn {
  text-align: left;
}
.cid-u2QLFn9xhF .item-title {
  text-align: left;
}
.cid-u2QLFn9xhF .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-u2QLFmURea {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/parede-drywall-atacadao-do-gesso.jpg");
}
.cid-u2QLFmURea .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLFmURea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLFmURea .row {
  flex-direction: row-reverse;
}
.cid-u2QLFmURea .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2QLFmURea .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLFmURea .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u2QLFmURea .mbr-text,
.cid-u2QLFmURea .mbr-section-btn {
  text-align: left;
}
.cid-u2QLFmURea .mbr-section-title {
  text-align: left;
}
.cid-u2QLFnvSOz {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/manual-fixao-manuteno-e-acabamento-de-drywall-1.jpg");
}
.cid-u2QLFnvSOz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-u2QLFnvSOz form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u2QLFnvSOz form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u2QLFnvSOz form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u2QLFnvSOz .mbr-section-title {
  text-align: center;
}
.cid-u2QLFnKOAo {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2QLFnKOAo img,
.cid-u2QLFnKOAo .item-img {
  width: 100%;
}
.cid-u2QLFnKOAo .item:focus,
.cid-u2QLFnKOAo span:focus {
  outline: none;
}
.cid-u2QLFnKOAo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2QLFnKOAo .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u2QLFnKOAo .item {
  padding: 0;
  margin: 0;
}
.cid-u2QLFnKOAo .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLFnKOAo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLFnKOAo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2QLFnKOAo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLFnKOAo .mbr-section-title {
  color: #232323;
}
.cid-u2QLFohD3b {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLFohD3b .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLFohD3b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLFohD3b .google-map {
  height: 30rem;
  position: relative;
}
.cid-u2QLFohD3b .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2QLFohD3b .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2QLFohD3b .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2QLFohD3b .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2QLFohD3b .mbr-section-title {
  color: #ffffff;
}
.cid-u2QLFohD3b .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2QLFoAygV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2QLFoAygV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLFoAygV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLFoAygV .mbr-section-subtitle {
  color: #353535;
}
.cid-u2QLFoSU6q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u2QLFoSU6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLFoSU6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLFoSU6q .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u2QLFoSU6q .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u2QLFoSU6q .row {
    text-align: center;
  }
  .cid-u2QLFoSU6q .row > div {
    margin: auto;
  }
  .cid-u2QLFoSU6q .social-row {
    justify-content: center;
  }
}
.cid-u2QLFoSU6q .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2QLFoSU6q .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u2QLFoSU6q .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLFoSU6q .list {
    margin-bottom: 0rem;
  }
}
.cid-u2QLFoSU6q .mbr-text {
  color: #bbbbbb;
}
.cid-u2QLFoSU6q .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u2QLFoSU6q .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u2QLFoSU6q div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2QLAst2Qp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2QLAst2Qp nav.navbar {
  position: fixed;
}
.cid-u2QLAst2Qp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLAst2Qp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2QLAst2Qp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2QLAst2Qp .dropdown-item:hover,
.cid-u2QLAst2Qp .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2QLAst2Qp .dropdown-item:hover span {
  color: white;
}
.cid-u2QLAst2Qp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2QLAst2Qp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2QLAst2Qp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2QLAst2Qp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2QLAst2Qp .nav-link {
  position: relative;
}
.cid-u2QLAst2Qp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2QLAst2Qp .container {
    flex-wrap: nowrap;
  }
}
.cid-u2QLAst2Qp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2QLAst2Qp .dropdown-menu,
.cid-u2QLAst2Qp .navbar.opened {
  background: #4479d9 !important;
}
.cid-u2QLAst2Qp .nav-item:focus,
.cid-u2QLAst2Qp .nav-link:focus {
  outline: none;
}
.cid-u2QLAst2Qp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2QLAst2Qp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2QLAst2Qp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2QLAst2Qp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLAst2Qp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2QLAst2Qp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2QLAst2Qp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-u2QLAst2Qp .navbar.opened {
  transition: all 0.3s;
}
.cid-u2QLAst2Qp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2QLAst2Qp .navbar .navbar-logo img {
  width: auto;
}
.cid-u2QLAst2Qp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2QLAst2Qp .navbar.collapsed {
  justify-content: center;
}
.cid-u2QLAst2Qp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2QLAst2Qp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2QLAst2Qp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2QLAst2Qp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2QLAst2Qp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2QLAst2Qp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2QLAst2Qp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2QLAst2Qp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2QLAst2Qp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2QLAst2Qp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2QLAst2Qp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2QLAst2Qp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2QLAst2Qp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2QLAst2Qp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2QLAst2Qp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2QLAst2Qp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2QLAst2Qp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2QLAst2Qp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2QLAst2Qp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2QLAst2Qp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2QLAst2Qp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2QLAst2Qp .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2QLAst2Qp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2QLAst2Qp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2QLAst2Qp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2QLAst2Qp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2QLAst2Qp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2QLAst2Qp .dropdown-item.active,
.cid-u2QLAst2Qp .dropdown-item:active {
  background-color: transparent;
}
.cid-u2QLAst2Qp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2QLAst2Qp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2QLAst2Qp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2QLAst2Qp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-u2QLAst2Qp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2QLAst2Qp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2QLAst2Qp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2QLAst2Qp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2QLAst2Qp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2QLAst2Qp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2QLAst2Qp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2QLAst2Qp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLAst2Qp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLAst2Qp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2QLAst2Qp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLAst2Qp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2QLAst2Qp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2QLAst2Qp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLAst2Qp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2QLAst2Qp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2QLAst2Qp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2QLAst2Qp .navbar {
    height: 70px;
  }
  .cid-u2QLAst2Qp .navbar.opened {
    height: auto;
  }
  .cid-u2QLAst2Qp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2QLAsMZaI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLAsMZaI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLAsMZaI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLAsMZaI .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2QLAsMZaI .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-u2QLAsMZaI .mbr-section-title {
  color: #bbbbbb;
}
.cid-u2QLAt2b1G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/atacadao-do-gesso-drywall-2.jpg");
}
.cid-u2QLAt2b1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLAt2b1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLAt2b1G .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u2QLAt2b1G .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u2QLAt2b1G .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLAt2b1G .card-wrapper {
    padding: 4rem;
  }
}
.cid-u2QLAtiWJB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/parede-drywall-atacadao-do-gesso.jpg");
}
.cid-u2QLAtiWJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLAtiWJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLAtiWJB .row {
  flex-direction: row-reverse;
}
.cid-u2QLAtiWJB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2QLAtiWJB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLAtiWJB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u2QLAtiWJB .mbr-text,
.cid-u2QLAtiWJB .mbr-section-btn {
  text-align: left;
}
.cid-u2QLAtiWJB .mbr-section-title {
  text-align: left;
}
.cid-u2QLAty929 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/moldura-gesso.jpg");
}
.cid-u2QLAty929 .mbr-overlay {
  background: #6592e6;
  opacity: 0.8;
}
.cid-u2QLAty929 img,
.cid-u2QLAty929 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u2QLAty929 .item:focus,
.cid-u2QLAty929 span:focus {
  outline: none;
}
.cid-u2QLAty929 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2QLAty929 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLAty929 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u2QLAty929 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLAty929 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u2QLAty929 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u2QLAty929 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLAty929 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u2QLAty929 .mbr-text,
.cid-u2QLAty929 .mbr-section-btn {
  text-align: left;
}
.cid-u2QLAty929 .item-title {
  text-align: left;
}
.cid-u2QLAty929 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-u2QLAu8oQl {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2QLAu8oQl img,
.cid-u2QLAu8oQl .item-img {
  width: 100%;
}
.cid-u2QLAu8oQl .item:focus,
.cid-u2QLAu8oQl span:focus {
  outline: none;
}
.cid-u2QLAu8oQl .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2QLAu8oQl .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u2QLAu8oQl .item {
  padding: 0;
  margin: 0;
}
.cid-u2QLAu8oQl .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLAu8oQl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLAu8oQl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2QLAu8oQl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLAu8oQl .mbr-section-title {
  color: #232323;
}
.cid-u2QLAtTMck {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/manual-fixao-manuteno-e-acabamento-de-drywall-1.jpg");
}
.cid-u2QLAtTMck .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-u2QLAtTMck form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u2QLAtTMck form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u2QLAtTMck form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u2QLAtTMck .mbr-section-title {
  text-align: center;
}
.cid-u2QLAuFNt8 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLAuFNt8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLAuFNt8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLAuFNt8 .google-map {
  height: 30rem;
  position: relative;
}
.cid-u2QLAuFNt8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2QLAuFNt8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2QLAuFNt8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2QLAuFNt8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2QLAuFNt8 .mbr-section-title {
  color: #ffffff;
}
.cid-u2QLAuFNt8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2QLAuX4FJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2QLAuX4FJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLAuX4FJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLAuX4FJ .mbr-section-subtitle {
  color: #353535;
}
.cid-u2QLAvg0Oa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u2QLAvg0Oa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLAvg0Oa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLAvg0Oa .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u2QLAvg0Oa .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u2QLAvg0Oa .row {
    text-align: center;
  }
  .cid-u2QLAvg0Oa .row > div {
    margin: auto;
  }
  .cid-u2QLAvg0Oa .social-row {
    justify-content: center;
  }
}
.cid-u2QLAvg0Oa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2QLAvg0Oa .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u2QLAvg0Oa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLAvg0Oa .list {
    margin-bottom: 0rem;
  }
}
.cid-u2QLAvg0Oa .mbr-text {
  color: #bbbbbb;
}
.cid-u2QLAvg0Oa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u2QLAvg0Oa .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u2QLAvg0Oa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2QLu2MdGS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2QLu2MdGS nav.navbar {
  position: fixed;
}
.cid-u2QLu2MdGS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLu2MdGS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2QLu2MdGS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2QLu2MdGS .dropdown-item:hover,
.cid-u2QLu2MdGS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2QLu2MdGS .dropdown-item:hover span {
  color: white;
}
.cid-u2QLu2MdGS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2QLu2MdGS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2QLu2MdGS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2QLu2MdGS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2QLu2MdGS .nav-link {
  position: relative;
}
.cid-u2QLu2MdGS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2QLu2MdGS .container {
    flex-wrap: nowrap;
  }
}
.cid-u2QLu2MdGS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2QLu2MdGS .dropdown-menu,
.cid-u2QLu2MdGS .navbar.opened {
  background: #4479d9 !important;
}
.cid-u2QLu2MdGS .nav-item:focus,
.cid-u2QLu2MdGS .nav-link:focus {
  outline: none;
}
.cid-u2QLu2MdGS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2QLu2MdGS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2QLu2MdGS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2QLu2MdGS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLu2MdGS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2QLu2MdGS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2QLu2MdGS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-u2QLu2MdGS .navbar.opened {
  transition: all 0.3s;
}
.cid-u2QLu2MdGS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2QLu2MdGS .navbar .navbar-logo img {
  width: auto;
}
.cid-u2QLu2MdGS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2QLu2MdGS .navbar.collapsed {
  justify-content: center;
}
.cid-u2QLu2MdGS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2QLu2MdGS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2QLu2MdGS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2QLu2MdGS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2QLu2MdGS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2QLu2MdGS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2QLu2MdGS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2QLu2MdGS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2QLu2MdGS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2QLu2MdGS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2QLu2MdGS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2QLu2MdGS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2QLu2MdGS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2QLu2MdGS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2QLu2MdGS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2QLu2MdGS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2QLu2MdGS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2QLu2MdGS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2QLu2MdGS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2QLu2MdGS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2QLu2MdGS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2QLu2MdGS .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2QLu2MdGS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2QLu2MdGS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2QLu2MdGS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2QLu2MdGS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2QLu2MdGS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2QLu2MdGS .dropdown-item.active,
.cid-u2QLu2MdGS .dropdown-item:active {
  background-color: transparent;
}
.cid-u2QLu2MdGS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2QLu2MdGS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2QLu2MdGS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2QLu2MdGS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-u2QLu2MdGS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2QLu2MdGS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2QLu2MdGS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2QLu2MdGS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2QLu2MdGS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2QLu2MdGS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2QLu2MdGS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2QLu2MdGS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLu2MdGS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLu2MdGS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2QLu2MdGS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLu2MdGS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2QLu2MdGS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2QLu2MdGS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLu2MdGS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2QLu2MdGS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2QLu2MdGS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2QLu2MdGS .navbar {
    height: 70px;
  }
  .cid-u2QLu2MdGS .navbar.opened {
    height: auto;
  }
  .cid-u2QLu2MdGS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2QLu33J6l {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLu33J6l .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLu33J6l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLu33J6l .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2QLu33J6l .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-u2QLu33J6l .mbr-section-title {
  color: #bbbbbb;
}
.cid-u2QLu3hYr1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/atacadao-do-gesso-drywall-2.jpg");
}
.cid-u2QLu3hYr1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLu3hYr1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLu3hYr1 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u2QLu3hYr1 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u2QLu3hYr1 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLu3hYr1 .card-wrapper {
    padding: 4rem;
  }
}
.cid-u2QLu3vj3Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/parede-drywall-atacadao-do-gesso.jpg");
}
.cid-u2QLu3vj3Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLu3vj3Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLu3vj3Q .row {
  flex-direction: row-reverse;
}
.cid-u2QLu3vj3Q .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2QLu3vj3Q .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLu3vj3Q .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u2QLu3vj3Q .mbr-text,
.cid-u2QLu3vj3Q .mbr-section-btn {
  text-align: left;
}
.cid-u2QLu3vj3Q .mbr-section-title {
  text-align: left;
}
.cid-u2QLu44OzI {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/moldura-gesso.jpg");
}
.cid-u2QLu44OzI .mbr-overlay {
  background: #6592e6;
  opacity: 0.8;
}
.cid-u2QLu44OzI img,
.cid-u2QLu44OzI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u2QLu44OzI .item:focus,
.cid-u2QLu44OzI span:focus {
  outline: none;
}
.cid-u2QLu44OzI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2QLu44OzI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLu44OzI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u2QLu44OzI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLu44OzI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u2QLu44OzI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u2QLu44OzI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLu44OzI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u2QLu44OzI .mbr-text,
.cid-u2QLu44OzI .mbr-section-btn {
  text-align: left;
}
.cid-u2QLu44OzI .item-title {
  text-align: left;
}
.cid-u2QLu44OzI .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-u2QLu4A2ii {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/manual-fixao-manuteno-e-acabamento-de-drywall-1.jpg");
}
.cid-u2QLu4A2ii .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-u2QLu4A2ii form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u2QLu4A2ii form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u2QLu4A2ii form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u2QLu4A2ii .mbr-section-title {
  text-align: center;
}
.cid-u2QLu5fpHi {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLu5fpHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLu5fpHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLu5fpHi .google-map {
  height: 30rem;
  position: relative;
}
.cid-u2QLu5fpHi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2QLu5fpHi .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2QLu5fpHi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2QLu5fpHi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2QLu5fpHi .mbr-section-title {
  color: #ffffff;
}
.cid-u2QLu5fpHi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2QLu4N8TV {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2QLu4N8TV img,
.cid-u2QLu4N8TV .item-img {
  width: 100%;
}
.cid-u2QLu4N8TV .item:focus,
.cid-u2QLu4N8TV span:focus {
  outline: none;
}
.cid-u2QLu4N8TV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2QLu4N8TV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u2QLu4N8TV .item {
  padding: 0;
  margin: 0;
}
.cid-u2QLu4N8TV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLu4N8TV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLu4N8TV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2QLu4N8TV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLu4N8TV .mbr-section-title {
  color: #232323;
}
.cid-u2QLu5x3Gp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2QLu5x3Gp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLu5x3Gp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLu5x3Gp .mbr-section-subtitle {
  color: #353535;
}
.cid-u2QLu5NN6d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u2QLu5NN6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLu5NN6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLu5NN6d .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u2QLu5NN6d .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u2QLu5NN6d .row {
    text-align: center;
  }
  .cid-u2QLu5NN6d .row > div {
    margin: auto;
  }
  .cid-u2QLu5NN6d .social-row {
    justify-content: center;
  }
}
.cid-u2QLu5NN6d .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2QLu5NN6d .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u2QLu5NN6d .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLu5NN6d .list {
    margin-bottom: 0rem;
  }
}
.cid-u2QLu5NN6d .mbr-text {
  color: #bbbbbb;
}
.cid-u2QLu5NN6d .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u2QLu5NN6d .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u2QLu5NN6d div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2QLqrLubb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2QLqrLubb nav.navbar {
  position: fixed;
}
.cid-u2QLqrLubb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLqrLubb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2QLqrLubb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2QLqrLubb .dropdown-item:hover,
.cid-u2QLqrLubb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u2QLqrLubb .dropdown-item:hover span {
  color: white;
}
.cid-u2QLqrLubb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2QLqrLubb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2QLqrLubb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2QLqrLubb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2QLqrLubb .nav-link {
  position: relative;
}
.cid-u2QLqrLubb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2QLqrLubb .container {
    flex-wrap: nowrap;
  }
}
.cid-u2QLqrLubb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2QLqrLubb .dropdown-menu,
.cid-u2QLqrLubb .navbar.opened {
  background: #4479d9 !important;
}
.cid-u2QLqrLubb .nav-item:focus,
.cid-u2QLqrLubb .nav-link:focus {
  outline: none;
}
.cid-u2QLqrLubb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2QLqrLubb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2QLqrLubb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2QLqrLubb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2QLqrLubb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2QLqrLubb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2QLqrLubb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-u2QLqrLubb .navbar.opened {
  transition: all 0.3s;
}
.cid-u2QLqrLubb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2QLqrLubb .navbar .navbar-logo img {
  width: auto;
}
.cid-u2QLqrLubb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2QLqrLubb .navbar.collapsed {
  justify-content: center;
}
.cid-u2QLqrLubb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2QLqrLubb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2QLqrLubb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2QLqrLubb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2QLqrLubb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2QLqrLubb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2QLqrLubb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2QLqrLubb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2QLqrLubb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2QLqrLubb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2QLqrLubb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2QLqrLubb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2QLqrLubb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2QLqrLubb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2QLqrLubb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2QLqrLubb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2QLqrLubb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2QLqrLubb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2QLqrLubb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2QLqrLubb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2QLqrLubb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2QLqrLubb .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2QLqrLubb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2QLqrLubb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2QLqrLubb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2QLqrLubb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2QLqrLubb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2QLqrLubb .dropdown-item.active,
.cid-u2QLqrLubb .dropdown-item:active {
  background-color: transparent;
}
.cid-u2QLqrLubb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2QLqrLubb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2QLqrLubb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2QLqrLubb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-u2QLqrLubb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2QLqrLubb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2QLqrLubb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2QLqrLubb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2QLqrLubb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2QLqrLubb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2QLqrLubb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2QLqrLubb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLqrLubb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2QLqrLubb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2QLqrLubb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLqrLubb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2QLqrLubb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2QLqrLubb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2QLqrLubb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2QLqrLubb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2QLqrLubb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2QLqrLubb .navbar {
    height: 70px;
  }
  .cid-u2QLqrLubb .navbar.opened {
    height: auto;
  }
  .cid-u2QLqrLubb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2QLqs77VP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLqs77VP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLqs77VP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLqs77VP .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2QLqs77VP .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-u2QLqs77VP .mbr-section-title {
  color: #bbbbbb;
}
.cid-u2QLqsHzR6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/parede-drywall-atacadao-do-gesso.jpg");
}
.cid-u2QLqsHzR6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLqsHzR6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLqsHzR6 .row {
  flex-direction: row-reverse;
}
.cid-u2QLqsHzR6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2QLqsHzR6 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLqsHzR6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u2QLqsHzR6 .mbr-text,
.cid-u2QLqsHzR6 .mbr-section-btn {
  text-align: left;
}
.cid-u2QLqsHzR6 .mbr-section-title {
  text-align: left;
}
.cid-u2QLqssijz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/atacadao-do-gesso-drywall-2.jpg");
}
.cid-u2QLqssijz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLqssijz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLqssijz .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u2QLqssijz .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u2QLqssijz .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLqssijz .card-wrapper {
    padding: 4rem;
  }
}
.cid-u2QLqsY9rm {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/moldura-gesso.jpg");
}
.cid-u2QLqsY9rm .mbr-overlay {
  background: #6592e6;
  opacity: 0.8;
}
.cid-u2QLqsY9rm img,
.cid-u2QLqsY9rm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u2QLqsY9rm .item:focus,
.cid-u2QLqsY9rm span:focus {
  outline: none;
}
.cid-u2QLqsY9rm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u2QLqsY9rm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLqsY9rm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u2QLqsY9rm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLqsY9rm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u2QLqsY9rm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u2QLqsY9rm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLqsY9rm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u2QLqsY9rm .mbr-text,
.cid-u2QLqsY9rm .mbr-section-btn {
  text-align: left;
}
.cid-u2QLqsY9rm .item-title {
  text-align: left;
}
.cid-u2QLqsY9rm .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-u2QLqtlf0n {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/manual-fixao-manuteno-e-acabamento-de-drywall-1.jpg");
}
.cid-u2QLqtlf0n .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-u2QLqtlf0n form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u2QLqtlf0n form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u2QLqtlf0n form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u2QLqtlf0n .mbr-section-title {
  text-align: center;
}
.cid-u2QLqtAUSG {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2QLqtAUSG img,
.cid-u2QLqtAUSG .item-img {
  width: 100%;
}
.cid-u2QLqtAUSG .item:focus,
.cid-u2QLqtAUSG span:focus {
  outline: none;
}
.cid-u2QLqtAUSG .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u2QLqtAUSG .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u2QLqtAUSG .item {
  padding: 0;
  margin: 0;
}
.cid-u2QLqtAUSG .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u2QLqtAUSG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2QLqtAUSG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u2QLqtAUSG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u2QLqtAUSG .mbr-section-title {
  color: #232323;
}
.cid-u2QLqu8ojY {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ferragem-para-gesso.jpg");
}
.cid-u2QLqu8ojY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLqu8ojY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLqu8ojY .google-map {
  height: 30rem;
  position: relative;
}
.cid-u2QLqu8ojY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2QLqu8ojY .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2QLqu8ojY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2QLqu8ojY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2QLqu8ojY .mbr-section-title {
  color: #ffffff;
}
.cid-u2QLqu8ojY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2QLqus9xE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u2QLqus9xE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLqus9xE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLqus9xE .mbr-section-subtitle {
  color: #353535;
}
.cid-u2QLquK1sG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u2QLquK1sG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2QLquK1sG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2QLquK1sG .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u2QLquK1sG .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u2QLquK1sG .row {
    text-align: center;
  }
  .cid-u2QLquK1sG .row > div {
    margin: auto;
  }
  .cid-u2QLquK1sG .social-row {
    justify-content: center;
  }
}
.cid-u2QLquK1sG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2QLquK1sG .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u2QLquK1sG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2QLquK1sG .list {
    margin-bottom: 0rem;
  }
}
.cid-u2QLquK1sG .mbr-text {
  color: #bbbbbb;
}
.cid-u2QLquK1sG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u2QLquK1sG .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u2QLquK1sG div > *:last-child {
    margin-top: 0 !important;
  }
}
