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: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #31947f !important;
}
.bg-success {
  background-color: #1d4719 !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: #31947f !important;
  border-color: #31947f !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: #1b5347 !important;
  border-color: #1b5347 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1b5347 !important;
  border-color: #1b5347 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c84a7 !important;
  border-color: #3c84a7 !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: #255267 !important;
  border-color: #255267 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #255267 !important;
  border-color: #255267 !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: #1d4719 !important;
  border-color: #1d4719 !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: #030702 !important;
  border-color: #030702 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #030702 !important;
  border-color: #030702 !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: #31947f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1b5347 !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: #31947f !important;
  border-color: #31947f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3c84a7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #255267 !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: #3c84a7 !important;
  border-color: #3c84a7 !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: #1d4719;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #030702 !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: #1d4719 !important;
  border-color: #1d4719 !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: #31947f !important;
}
.text-secondary {
  color: #3c84a7 !important;
}
.text-success {
  color: #1d4719 !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: #18473d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #21495c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !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: #31947f;
}
.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: #31947f;
  border-color: #31947f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #31947f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #74d1bd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7ecf77;
}
.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: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #31947f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #31947f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #31947f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #31947f;
}
.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: #31947f;
  border-bottom-color: #31947f;
}
.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: #31947f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3c84a7 !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='%2331947f' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-udjP1grxTN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-udjP1grxTN nav.navbar {
  position: fixed;
}
.cid-udjP1grxTN .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-udjP1grxTN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udjP1grxTN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udjP1grxTN .dropdown-item:hover,
.cid-udjP1grxTN .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-udjP1grxTN .dropdown-item:hover span {
  color: white;
}
.cid-udjP1grxTN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udjP1grxTN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udjP1grxTN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udjP1grxTN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udjP1grxTN .nav-link {
  position: relative;
}
.cid-udjP1grxTN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-udjP1grxTN .container {
    flex-wrap: wrap;
  }
}
.cid-udjP1grxTN .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-udjP1grxTN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-udjP1grxTN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udjP1grxTN .dropdown-menu,
.cid-udjP1grxTN .navbar.opened {
  background: #ffffff !important;
}
.cid-udjP1grxTN .nav-item:focus,
.cid-udjP1grxTN .nav-link:focus {
  outline: none;
}
.cid-udjP1grxTN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udjP1grxTN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udjP1grxTN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udjP1grxTN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udjP1grxTN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udjP1grxTN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udjP1grxTN .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: #ffffff;
}
.cid-udjP1grxTN .navbar.opened {
  transition: all 0.3s;
}
.cid-udjP1grxTN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udjP1grxTN .navbar .navbar-logo img {
  width: auto;
}
.cid-udjP1grxTN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udjP1grxTN .navbar.collapsed {
  justify-content: center;
}
.cid-udjP1grxTN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udjP1grxTN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udjP1grxTN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-udjP1grxTN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udjP1grxTN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udjP1grxTN .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-udjP1grxTN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udjP1grxTN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udjP1grxTN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udjP1grxTN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udjP1grxTN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udjP1grxTN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udjP1grxTN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udjP1grxTN .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-udjP1grxTN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udjP1grxTN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udjP1grxTN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udjP1grxTN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udjP1grxTN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udjP1grxTN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udjP1grxTN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udjP1grxTN .navbar.navbar-short {
  min-height: 60px;
}
.cid-udjP1grxTN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udjP1grxTN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udjP1grxTN .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-udjP1grxTN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udjP1grxTN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udjP1grxTN .dropdown-item.active,
.cid-udjP1grxTN .dropdown-item:active {
  background-color: transparent;
}
.cid-udjP1grxTN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udjP1grxTN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udjP1grxTN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udjP1grxTN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-udjP1grxTN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udjP1grxTN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udjP1grxTN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udjP1grxTN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udjP1grxTN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udjP1grxTN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-udjP1grxTN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udjP1grxTN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udjP1grxTN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udjP1grxTN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udjP1grxTN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udjP1grxTN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udjP1grxTN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udjP1grxTN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udjP1grxTN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-udjP1grxTN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udjP1grxTN .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-udjP1grxTN .navbar {
    height: 70px;
  }
  .cid-udjP1grxTN .navbar.opened {
    height: auto;
  }
  .cid-udjP1grxTN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udjRhgsA5Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-udjRhgsA5Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-udjRhgsA5Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udjRhgsA5Q .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-udjRhgsA5Q .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-udjRhgsA5Q .mbr-section-title {
  color: #31947f;
}
.cid-udjRhgsA5Q .mbr-text,
.cid-udjRhgsA5Q .mbr-section-btn {
  color: #000000;
}
.cid-udjTNSSw4q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-udjTNSSw4q .mbr-fallback-image.disabled {
  display: none;
}
.cid-udjTNSSw4q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udjTNSSw4q .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-udjTNSSw4q .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-udjTNSSw4q .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-udjTNSSw4q .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udjTNSSw4q .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udjTNSSw4q .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-udjTNSSw4q .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-udjTNSSw4q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-udjTNSSw4q .card-title {
  color: #31947f;
  text-align: center;
}
.cid-udjTNSSw4q .mbr-text,
.cid-udjTNSSw4q .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-udjUZNUFbM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-udjUZNUFbM .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-udjUZNUFbM img,
.cid-udjUZNUFbM .item-img {
  width: 100%;
}
.cid-udjUZNUFbM .item:focus,
.cid-udjUZNUFbM span:focus {
  outline: none;
}
.cid-udjUZNUFbM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-udjUZNUFbM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-udjUZNUFbM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-udjUZNUFbM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udjUZNUFbM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-udjUZNUFbM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-udjUZNUFbM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-udjUZNUFbM .mbr-section-title {
  color: #31947f;
}
.cid-udjUZNUFbM .mbr-text,
.cid-udjUZNUFbM .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-udjUZNUFbM .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-udjUZNUFbM .item-subtitle {
  text-align: center;
}
.cid-udkCqn6J4C {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-udkCqn6J4C img,
.cid-udkCqn6J4C .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-udkCqn6J4C .item:focus,
.cid-udkCqn6J4C span:focus {
  outline: none;
}
.cid-udkCqn6J4C .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-udkCqn6J4C .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-udkCqn6J4C .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udkCqn6J4C .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-udkCqn6J4C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-udkCqn6J4C .mbr-section-title {
  color: #3c84a7;
}
.cid-udkCqn6J4C .mbr-text,
.cid-udkCqn6J4C .mbr-section-btn {
  text-align: left;
}
.cid-udkCqn6J4C .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-udkCqn6J4C .item-subtitle {
  text-align: center;
}
.cid-udkCqn6J4C .mbr-section-subtitle {
  text-align: center;
}
.cid-udk3rNUZEn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-udk3rNUZEn .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-udk3rNUZEn img,
.cid-udk3rNUZEn .item-img {
  width: 100%;
}
.cid-udk3rNUZEn .item:focus,
.cid-udk3rNUZEn span:focus {
  outline: none;
}
.cid-udk3rNUZEn .item-wrapper {
  position: relative;
}
.cid-udk3rNUZEn .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-udk3rNUZEn .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udk3rNUZEn .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-udk3rNUZEn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-udk3rNUZEn .mbr-section-title {
  color: #ffffff;
}
.cid-udk3rNUZEn .mbr-text,
.cid-udk3rNUZEn .mbr-section-btn {
  text-align: left;
}
.cid-udk3rNUZEn .item-title {
  text-align: left;
}
.cid-udk3rNUZEn .item-subtitle {
  text-align: left;
}
.cid-udk3rNUZEn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-udk3rNUZEn .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-udk3rNUZEn .embla__button--next,
.cid-udk3rNUZEn .embla__button--prev {
  display: flex;
}
.cid-udk3rNUZEn .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-udk3rNUZEn .embla__button {
    display: none;
  }
}
.cid-udk3rNUZEn .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-udk3rNUZEn .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-udk3rNUZEn .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-udk3rNUZEn .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-udk3rNUZEn .embla__button {
    top: auto;
  }
}
.cid-udk3rNUZEn .embla {
  position: relative;
  width: 100%;
}
.cid-udk3rNUZEn .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-udk3rNUZEn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-udk3rNUZEn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-udk3rNUZEn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-udkcoisDVJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-udkcoisDVJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-udkcoisDVJ form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-udkcoisDVJ form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-udkcoisDVJ form.mbr-form {
    padding: 1rem;
  }
}
.cid-udkcoisDVJ form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-udkcoisDVJ form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-udkcoisDVJ .mbr-section-title {
  color: #ffffff;
}
.cid-udkcYlyTlY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-udkcYlyTlY .mbr-fallback-image.disabled {
  display: none;
}
.cid-udkcYlyTlY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udkcYlyTlY .google-map {
  height: 30rem;
  position: relative;
}
.cid-udkcYlyTlY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-udkcYlyTlY .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-udkcYlyTlY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-udkcYlyTlY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-udkd3tocqb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-udkd3tocqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-udkd3tocqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udkd3tocqb .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-udkd3tocqb .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-udkd3tocqb .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udkd3tocqb .card-wrapper {
    padding: 4rem;
  }
}
.cid-udkdtgS276 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-udkdtgS276 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udkdtgS276 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udkdtgS276 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-udkdtgS276 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-udkdtgS276 .row {
    text-align: center;
  }
  .cid-udkdtgS276 .row > div {
    margin: auto;
  }
  .cid-udkdtgS276 .social-row {
    justify-content: center;
  }
}
.cid-udkdtgS276 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-udkdtgS276 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-udkdtgS276 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-udkdtgS276 .list {
    margin-bottom: 0rem;
  }
}
.cid-udkdtgS276 .mbr-text {
  color: #000000;
}
.cid-udkdtgS276 .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-udkdtgS276 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-udkdtgS276 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-udkdtgS276 H5 {
  color: #1d4719;
}
.cid-ukXq8FStKX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXq8FStKX nav.navbar {
  position: fixed;
}
.cid-ukXq8FStKX .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-ukXq8FStKX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXq8FStKX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXq8FStKX .dropdown-item:hover,
.cid-ukXq8FStKX .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXq8FStKX .dropdown-item:hover span {
  color: white;
}
.cid-ukXq8FStKX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXq8FStKX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXq8FStKX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXq8FStKX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXq8FStKX .nav-link {
  position: relative;
}
.cid-ukXq8FStKX .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXq8FStKX .container {
    flex-wrap: wrap;
  }
}
.cid-ukXq8FStKX .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXq8FStKX .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXq8FStKX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXq8FStKX .dropdown-menu,
.cid-ukXq8FStKX .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXq8FStKX .nav-item:focus,
.cid-ukXq8FStKX .nav-link:focus {
  outline: none;
}
.cid-ukXq8FStKX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXq8FStKX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXq8FStKX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXq8FStKX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXq8FStKX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXq8FStKX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXq8FStKX .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: #ffffff;
}
.cid-ukXq8FStKX .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXq8FStKX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXq8FStKX .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXq8FStKX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXq8FStKX .navbar.collapsed {
  justify-content: center;
}
.cid-ukXq8FStKX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXq8FStKX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXq8FStKX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXq8FStKX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXq8FStKX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXq8FStKX .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-ukXq8FStKX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXq8FStKX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXq8FStKX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXq8FStKX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXq8FStKX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXq8FStKX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXq8FStKX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXq8FStKX .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-ukXq8FStKX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXq8FStKX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXq8FStKX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXq8FStKX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXq8FStKX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXq8FStKX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXq8FStKX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXq8FStKX .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXq8FStKX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXq8FStKX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXq8FStKX .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-ukXq8FStKX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXq8FStKX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXq8FStKX .dropdown-item.active,
.cid-ukXq8FStKX .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXq8FStKX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXq8FStKX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXq8FStKX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXq8FStKX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXq8FStKX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXq8FStKX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXq8FStKX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXq8FStKX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXq8FStKX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXq8FStKX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXq8FStKX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXq8FStKX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXq8FStKX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXq8FStKX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXq8FStKX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXq8FStKX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXq8FStKX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXq8FStKX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXq8FStKX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXq8FStKX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXq8FStKX .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-ukXq8FStKX .navbar {
    height: 70px;
  }
  .cid-ukXq8FStKX .navbar.opened {
    height: auto;
  }
  .cid-ukXq8FStKX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXq8GcKgt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXq8GcKgt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXq8GcKgt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXq8GcKgt .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXq8GcKgt .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXq8GcKgt .mbr-section-title {
  color: #31947f;
}
.cid-ukXq8GcKgt .mbr-text,
.cid-ukXq8GcKgt .mbr-section-btn {
  color: #000000;
}
.cid-ukXq8GxT5t {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXq8GxT5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXq8GxT5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXq8GxT5t .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXq8GxT5t .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXq8GxT5t .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXq8GxT5t .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXq8GxT5t .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXq8GxT5t .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXq8GxT5t .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXq8GxT5t .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXq8GxT5t .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXq8GxT5t .mbr-text,
.cid-ukXq8GxT5t .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXq8GOgYm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXq8GOgYm .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXq8GOgYm img,
.cid-ukXq8GOgYm .item-img {
  width: 100%;
}
.cid-ukXq8GOgYm .item:focus,
.cid-ukXq8GOgYm span:focus {
  outline: none;
}
.cid-ukXq8GOgYm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXq8GOgYm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXq8GOgYm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXq8GOgYm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXq8GOgYm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXq8GOgYm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXq8GOgYm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXq8GOgYm .mbr-section-title {
  color: #31947f;
}
.cid-ukXq8GOgYm .mbr-text,
.cid-ukXq8GOgYm .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXq8GOgYm .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXq8GOgYm .item-subtitle {
  text-align: center;
}
.cid-ukXq8HfyPd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXq8HfyPd img,
.cid-ukXq8HfyPd .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXq8HfyPd .item:focus,
.cid-ukXq8HfyPd span:focus {
  outline: none;
}
.cid-ukXq8HfyPd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXq8HfyPd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXq8HfyPd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXq8HfyPd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXq8HfyPd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXq8HfyPd .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXq8HfyPd .mbr-text,
.cid-ukXq8HfyPd .mbr-section-btn {
  text-align: left;
}
.cid-ukXq8HfyPd .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXq8HfyPd .item-subtitle {
  text-align: center;
}
.cid-ukXq8HfyPd .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXq8IkdUu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXq8IkdUu .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXq8IkdUu img,
.cid-ukXq8IkdUu .item-img {
  width: 100%;
}
.cid-ukXq8IkdUu .item:focus,
.cid-ukXq8IkdUu span:focus {
  outline: none;
}
.cid-ukXq8IkdUu .item-wrapper {
  position: relative;
}
.cid-ukXq8IkdUu .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXq8IkdUu .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXq8IkdUu .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXq8IkdUu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXq8IkdUu .mbr-section-title {
  color: #ffffff;
}
.cid-ukXq8IkdUu .mbr-text,
.cid-ukXq8IkdUu .mbr-section-btn {
  text-align: left;
}
.cid-ukXq8IkdUu .item-title {
  text-align: left;
}
.cid-ukXq8IkdUu .item-subtitle {
  text-align: left;
}
.cid-ukXq8IkdUu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXq8IkdUu .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXq8IkdUu .embla__button--next,
.cid-ukXq8IkdUu .embla__button--prev {
  display: flex;
}
.cid-ukXq8IkdUu .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXq8IkdUu .embla__button {
    display: none;
  }
}
.cid-ukXq8IkdUu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXq8IkdUu .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXq8IkdUu .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXq8IkdUu .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXq8IkdUu .embla__button {
    top: auto;
  }
}
.cid-ukXq8IkdUu .embla {
  position: relative;
  width: 100%;
}
.cid-ukXq8IkdUu .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXq8IkdUu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXq8IkdUu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXq8IkdUu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXq8JiiqO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXq8JiiqO .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXq8JiiqO form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXq8JiiqO form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXq8JiiqO form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXq8JiiqO form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXq8JiiqO form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXq8JiiqO .mbr-section-title {
  color: #ffffff;
}
.cid-ukXq8JzyZU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXq8JzyZU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXq8JzyZU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXq8JzyZU .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXq8JzyZU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXq8JzyZU .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-ukXq8JzyZU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXq8JzyZU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXq8JSPlL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXq8JSPlL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXq8JSPlL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXq8JSPlL .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXq8JSPlL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXq8JSPlL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXq8JSPlL .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXq8K9VNr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXq8K9VNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXq8K9VNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXq8K9VNr .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXq8K9VNr .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXq8K9VNr .row {
    text-align: center;
  }
  .cid-ukXq8K9VNr .row > div {
    margin: auto;
  }
  .cid-ukXq8K9VNr .social-row {
    justify-content: center;
  }
}
.cid-ukXq8K9VNr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXq8K9VNr .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXq8K9VNr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXq8K9VNr .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXq8K9VNr .mbr-text {
  color: #000000;
}
.cid-ukXq8K9VNr .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-ukXq8K9VNr .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXq8K9VNr div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXq8K9VNr H5 {
  color: #1d4719;
}
.cid-ukXqyXiwBd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXqyXiwBd nav.navbar {
  position: fixed;
}
.cid-ukXqyXiwBd .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-ukXqyXiwBd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXqyXiwBd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXqyXiwBd .dropdown-item:hover,
.cid-ukXqyXiwBd .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXqyXiwBd .dropdown-item:hover span {
  color: white;
}
.cid-ukXqyXiwBd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXqyXiwBd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXqyXiwBd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXqyXiwBd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXqyXiwBd .nav-link {
  position: relative;
}
.cid-ukXqyXiwBd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXqyXiwBd .container {
    flex-wrap: wrap;
  }
}
.cid-ukXqyXiwBd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXqyXiwBd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXqyXiwBd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXqyXiwBd .dropdown-menu,
.cid-ukXqyXiwBd .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXqyXiwBd .nav-item:focus,
.cid-ukXqyXiwBd .nav-link:focus {
  outline: none;
}
.cid-ukXqyXiwBd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXqyXiwBd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXqyXiwBd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXqyXiwBd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXqyXiwBd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXqyXiwBd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXqyXiwBd .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: #ffffff;
}
.cid-ukXqyXiwBd .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXqyXiwBd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXqyXiwBd .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXqyXiwBd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXqyXiwBd .navbar.collapsed {
  justify-content: center;
}
.cid-ukXqyXiwBd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXqyXiwBd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXqyXiwBd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXqyXiwBd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXqyXiwBd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXqyXiwBd .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-ukXqyXiwBd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXqyXiwBd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXqyXiwBd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXqyXiwBd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXqyXiwBd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXqyXiwBd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXqyXiwBd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXqyXiwBd .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-ukXqyXiwBd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXqyXiwBd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXqyXiwBd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXqyXiwBd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXqyXiwBd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXqyXiwBd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXqyXiwBd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXqyXiwBd .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXqyXiwBd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXqyXiwBd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXqyXiwBd .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-ukXqyXiwBd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXqyXiwBd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXqyXiwBd .dropdown-item.active,
.cid-ukXqyXiwBd .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXqyXiwBd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXqyXiwBd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXqyXiwBd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXqyXiwBd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXqyXiwBd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXqyXiwBd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXqyXiwBd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXqyXiwBd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXqyXiwBd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXqyXiwBd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXqyXiwBd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXqyXiwBd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXqyXiwBd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXqyXiwBd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXqyXiwBd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXqyXiwBd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXqyXiwBd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXqyXiwBd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXqyXiwBd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXqyXiwBd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXqyXiwBd .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-ukXqyXiwBd .navbar {
    height: 70px;
  }
  .cid-ukXqyXiwBd .navbar.opened {
    height: auto;
  }
  .cid-ukXqyXiwBd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXqyXDM8C {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXqyXDM8C .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqyXDM8C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqyXDM8C .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXqyXDM8C .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXqyXDM8C .mbr-section-title {
  color: #31947f;
}
.cid-ukXqyXDM8C .mbr-text,
.cid-ukXqyXDM8C .mbr-section-btn {
  color: #000000;
}
.cid-ukXqyXUXJc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXqyXUXJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqyXUXJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqyXUXJc .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXqyXUXJc .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXqyXUXJc .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXqyXUXJc .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXqyXUXJc .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqyXUXJc .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXqyXUXJc .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXqyXUXJc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXqyXUXJc .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXqyXUXJc .mbr-text,
.cid-ukXqyXUXJc .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXqyYbD1W {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXqyYbD1W .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXqyYbD1W img,
.cid-ukXqyYbD1W .item-img {
  width: 100%;
}
.cid-ukXqyYbD1W .item:focus,
.cid-ukXqyYbD1W span:focus {
  outline: none;
}
.cid-ukXqyYbD1W .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXqyYbD1W .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqyYbD1W .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXqyYbD1W .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqyYbD1W .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXqyYbD1W .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXqyYbD1W .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqyYbD1W .mbr-section-title {
  color: #31947f;
}
.cid-ukXqyYbD1W .mbr-text,
.cid-ukXqyYbD1W .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqyYbD1W .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqyYbD1W .item-subtitle {
  text-align: center;
}
.cid-ukXqyYtvvn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXqyYtvvn img,
.cid-ukXqyYtvvn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXqyYtvvn .item:focus,
.cid-ukXqyYtvvn span:focus {
  outline: none;
}
.cid-ukXqyYtvvn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXqyYtvvn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqyYtvvn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqyYtvvn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXqyYtvvn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqyYtvvn .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXqyYtvvn .mbr-text,
.cid-ukXqyYtvvn .mbr-section-btn {
  text-align: left;
}
.cid-ukXqyYtvvn .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqyYtvvn .item-subtitle {
  text-align: center;
}
.cid-ukXqyYtvvn .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXqyZi031 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXqyZi031 .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXqyZi031 img,
.cid-ukXqyZi031 .item-img {
  width: 100%;
}
.cid-ukXqyZi031 .item:focus,
.cid-ukXqyZi031 span:focus {
  outline: none;
}
.cid-ukXqyZi031 .item-wrapper {
  position: relative;
}
.cid-ukXqyZi031 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqyZi031 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqyZi031 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXqyZi031 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqyZi031 .mbr-section-title {
  color: #ffffff;
}
.cid-ukXqyZi031 .mbr-text,
.cid-ukXqyZi031 .mbr-section-btn {
  text-align: left;
}
.cid-ukXqyZi031 .item-title {
  text-align: left;
}
.cid-ukXqyZi031 .item-subtitle {
  text-align: left;
}
.cid-ukXqyZi031 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXqyZi031 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXqyZi031 .embla__button--next,
.cid-ukXqyZi031 .embla__button--prev {
  display: flex;
}
.cid-ukXqyZi031 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXqyZi031 .embla__button {
    display: none;
  }
}
.cid-ukXqyZi031 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXqyZi031 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXqyZi031 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXqyZi031 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXqyZi031 .embla__button {
    top: auto;
  }
}
.cid-ukXqyZi031 .embla {
  position: relative;
  width: 100%;
}
.cid-ukXqyZi031 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXqyZi031 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXqyZi031 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXqyZi031 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXqz0khi1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXqz0khi1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXqz0khi1 form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXqz0khi1 form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXqz0khi1 form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXqz0khi1 form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXqz0khi1 form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXqz0khi1 .mbr-section-title {
  color: #ffffff;
}
.cid-ukXqz0KoKf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXqz0KoKf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqz0KoKf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqz0KoKf .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXqz0KoKf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXqz0KoKf .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-ukXqz0KoKf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXqz0KoKf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXqz1gMyU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXqz1gMyU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqz1gMyU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqz1gMyU .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXqz1gMyU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXqz1gMyU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqz1gMyU .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXqz1x1N3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXqz1x1N3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqz1x1N3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqz1x1N3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXqz1x1N3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXqz1x1N3 .row {
    text-align: center;
  }
  .cid-ukXqz1x1N3 .row > div {
    margin: auto;
  }
  .cid-ukXqz1x1N3 .social-row {
    justify-content: center;
  }
}
.cid-ukXqz1x1N3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXqz1x1N3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXqz1x1N3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqz1x1N3 .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXqz1x1N3 .mbr-text {
  color: #000000;
}
.cid-ukXqz1x1N3 .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-ukXqz1x1N3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXqz1x1N3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXqz1x1N3 H5 {
  color: #1d4719;
}
.cid-ukXqOPIXI9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXqOPIXI9 nav.navbar {
  position: fixed;
}
.cid-ukXqOPIXI9 .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-ukXqOPIXI9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXqOPIXI9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXqOPIXI9 .dropdown-item:hover,
.cid-ukXqOPIXI9 .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXqOPIXI9 .dropdown-item:hover span {
  color: white;
}
.cid-ukXqOPIXI9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXqOPIXI9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXqOPIXI9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXqOPIXI9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXqOPIXI9 .nav-link {
  position: relative;
}
.cid-ukXqOPIXI9 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXqOPIXI9 .container {
    flex-wrap: wrap;
  }
}
.cid-ukXqOPIXI9 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXqOPIXI9 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXqOPIXI9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXqOPIXI9 .dropdown-menu,
.cid-ukXqOPIXI9 .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXqOPIXI9 .nav-item:focus,
.cid-ukXqOPIXI9 .nav-link:focus {
  outline: none;
}
.cid-ukXqOPIXI9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXqOPIXI9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXqOPIXI9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXqOPIXI9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXqOPIXI9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXqOPIXI9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXqOPIXI9 .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: #ffffff;
}
.cid-ukXqOPIXI9 .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXqOPIXI9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXqOPIXI9 .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXqOPIXI9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXqOPIXI9 .navbar.collapsed {
  justify-content: center;
}
.cid-ukXqOPIXI9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXqOPIXI9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXqOPIXI9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXqOPIXI9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXqOPIXI9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXqOPIXI9 .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-ukXqOPIXI9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXqOPIXI9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXqOPIXI9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXqOPIXI9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXqOPIXI9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXqOPIXI9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXqOPIXI9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXqOPIXI9 .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-ukXqOPIXI9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXqOPIXI9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXqOPIXI9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXqOPIXI9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXqOPIXI9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXqOPIXI9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXqOPIXI9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXqOPIXI9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXqOPIXI9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXqOPIXI9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXqOPIXI9 .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-ukXqOPIXI9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXqOPIXI9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXqOPIXI9 .dropdown-item.active,
.cid-ukXqOPIXI9 .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXqOPIXI9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXqOPIXI9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXqOPIXI9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXqOPIXI9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXqOPIXI9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXqOPIXI9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXqOPIXI9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXqOPIXI9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXqOPIXI9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXqOPIXI9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXqOPIXI9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXqOPIXI9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXqOPIXI9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXqOPIXI9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXqOPIXI9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXqOPIXI9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXqOPIXI9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXqOPIXI9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXqOPIXI9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXqOPIXI9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXqOPIXI9 .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-ukXqOPIXI9 .navbar {
    height: 70px;
  }
  .cid-ukXqOPIXI9 .navbar.opened {
    height: auto;
  }
  .cid-ukXqOPIXI9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXqOPYQE4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXqOPYQE4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqOPYQE4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqOPYQE4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXqOPYQE4 .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXqOPYQE4 .mbr-section-title {
  color: #31947f;
}
.cid-ukXqOPYQE4 .mbr-text,
.cid-ukXqOPYQE4 .mbr-section-btn {
  color: #000000;
}
.cid-ukXqOQbLBS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXqOQbLBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqOQbLBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqOQbLBS .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXqOQbLBS .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXqOQbLBS .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXqOQbLBS .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXqOQbLBS .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqOQbLBS .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXqOQbLBS .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXqOQbLBS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXqOQbLBS .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXqOQbLBS .mbr-text,
.cid-ukXqOQbLBS .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXqOQq1lv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXqOQq1lv .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXqOQq1lv img,
.cid-ukXqOQq1lv .item-img {
  width: 100%;
}
.cid-ukXqOQq1lv .item:focus,
.cid-ukXqOQq1lv span:focus {
  outline: none;
}
.cid-ukXqOQq1lv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXqOQq1lv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqOQq1lv .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXqOQq1lv .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqOQq1lv .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXqOQq1lv .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXqOQq1lv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqOQq1lv .mbr-section-title {
  color: #31947f;
}
.cid-ukXqOQq1lv .mbr-text,
.cid-ukXqOQq1lv .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqOQq1lv .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqOQq1lv .item-subtitle {
  text-align: center;
}
.cid-ukXqOQHBrk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXqOQHBrk img,
.cid-ukXqOQHBrk .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXqOQHBrk .item:focus,
.cid-ukXqOQHBrk span:focus {
  outline: none;
}
.cid-ukXqOQHBrk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXqOQHBrk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqOQHBrk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqOQHBrk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXqOQHBrk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqOQHBrk .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXqOQHBrk .mbr-text,
.cid-ukXqOQHBrk .mbr-section-btn {
  text-align: left;
}
.cid-ukXqOQHBrk .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqOQHBrk .item-subtitle {
  text-align: center;
}
.cid-ukXqOQHBrk .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXqORphIj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXqORphIj .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXqORphIj img,
.cid-ukXqORphIj .item-img {
  width: 100%;
}
.cid-ukXqORphIj .item:focus,
.cid-ukXqORphIj span:focus {
  outline: none;
}
.cid-ukXqORphIj .item-wrapper {
  position: relative;
}
.cid-ukXqORphIj .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqORphIj .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqORphIj .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXqORphIj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqORphIj .mbr-section-title {
  color: #ffffff;
}
.cid-ukXqORphIj .mbr-text,
.cid-ukXqORphIj .mbr-section-btn {
  text-align: left;
}
.cid-ukXqORphIj .item-title {
  text-align: left;
}
.cid-ukXqORphIj .item-subtitle {
  text-align: left;
}
.cid-ukXqORphIj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXqORphIj .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXqORphIj .embla__button--next,
.cid-ukXqORphIj .embla__button--prev {
  display: flex;
}
.cid-ukXqORphIj .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXqORphIj .embla__button {
    display: none;
  }
}
.cid-ukXqORphIj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXqORphIj .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXqORphIj .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXqORphIj .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXqORphIj .embla__button {
    top: auto;
  }
}
.cid-ukXqORphIj .embla {
  position: relative;
  width: 100%;
}
.cid-ukXqORphIj .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXqORphIj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXqORphIj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXqORphIj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXqOSe4Fc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXqOSe4Fc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXqOSe4Fc form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXqOSe4Fc form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXqOSe4Fc form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXqOSe4Fc form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXqOSe4Fc form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXqOSe4Fc .mbr-section-title {
  color: #ffffff;
}
.cid-ukXqOSvpyE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXqOSvpyE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqOSvpyE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqOSvpyE .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXqOSvpyE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXqOSvpyE .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-ukXqOSvpyE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXqOSvpyE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXqOSOMzi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXqOSOMzi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqOSOMzi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqOSOMzi .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXqOSOMzi .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXqOSOMzi .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqOSOMzi .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXqOT3fLb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXqOT3fLb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqOT3fLb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqOT3fLb .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXqOT3fLb .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXqOT3fLb .row {
    text-align: center;
  }
  .cid-ukXqOT3fLb .row > div {
    margin: auto;
  }
  .cid-ukXqOT3fLb .social-row {
    justify-content: center;
  }
}
.cid-ukXqOT3fLb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXqOT3fLb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXqOT3fLb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqOT3fLb .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXqOT3fLb .mbr-text {
  color: #000000;
}
.cid-ukXqOT3fLb .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-ukXqOT3fLb .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXqOT3fLb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXqOT3fLb H5 {
  color: #1d4719;
}
.cid-ukXqZCktvr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXqZCktvr nav.navbar {
  position: fixed;
}
.cid-ukXqZCktvr .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-ukXqZCktvr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXqZCktvr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXqZCktvr .dropdown-item:hover,
.cid-ukXqZCktvr .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXqZCktvr .dropdown-item:hover span {
  color: white;
}
.cid-ukXqZCktvr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXqZCktvr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXqZCktvr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXqZCktvr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXqZCktvr .nav-link {
  position: relative;
}
.cid-ukXqZCktvr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXqZCktvr .container {
    flex-wrap: wrap;
  }
}
.cid-ukXqZCktvr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXqZCktvr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXqZCktvr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXqZCktvr .dropdown-menu,
.cid-ukXqZCktvr .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXqZCktvr .nav-item:focus,
.cid-ukXqZCktvr .nav-link:focus {
  outline: none;
}
.cid-ukXqZCktvr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXqZCktvr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXqZCktvr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXqZCktvr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXqZCktvr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXqZCktvr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXqZCktvr .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: #ffffff;
}
.cid-ukXqZCktvr .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXqZCktvr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXqZCktvr .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXqZCktvr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXqZCktvr .navbar.collapsed {
  justify-content: center;
}
.cid-ukXqZCktvr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXqZCktvr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXqZCktvr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXqZCktvr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXqZCktvr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXqZCktvr .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-ukXqZCktvr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXqZCktvr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXqZCktvr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXqZCktvr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXqZCktvr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXqZCktvr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXqZCktvr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXqZCktvr .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-ukXqZCktvr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXqZCktvr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXqZCktvr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXqZCktvr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXqZCktvr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXqZCktvr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXqZCktvr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXqZCktvr .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXqZCktvr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXqZCktvr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXqZCktvr .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-ukXqZCktvr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXqZCktvr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXqZCktvr .dropdown-item.active,
.cid-ukXqZCktvr .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXqZCktvr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXqZCktvr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXqZCktvr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXqZCktvr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXqZCktvr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXqZCktvr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXqZCktvr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXqZCktvr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXqZCktvr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXqZCktvr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXqZCktvr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXqZCktvr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXqZCktvr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXqZCktvr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXqZCktvr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXqZCktvr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXqZCktvr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXqZCktvr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXqZCktvr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXqZCktvr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXqZCktvr .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-ukXqZCktvr .navbar {
    height: 70px;
  }
  .cid-ukXqZCktvr .navbar.opened {
    height: auto;
  }
  .cid-ukXqZCktvr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXqZCE2Qc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXqZCE2Qc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqZCE2Qc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqZCE2Qc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXqZCE2Qc .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXqZCE2Qc .mbr-section-title {
  color: #31947f;
}
.cid-ukXqZCE2Qc .mbr-text,
.cid-ukXqZCE2Qc .mbr-section-btn {
  color: #000000;
}
.cid-ukXqZCYcBx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXqZCYcBx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqZCYcBx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqZCYcBx .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXqZCYcBx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXqZCYcBx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXqZCYcBx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXqZCYcBx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqZCYcBx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXqZCYcBx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXqZCYcBx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXqZCYcBx .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXqZCYcBx .mbr-text,
.cid-ukXqZCYcBx .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXqZDgZ53 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXqZDgZ53 .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXqZDgZ53 img,
.cid-ukXqZDgZ53 .item-img {
  width: 100%;
}
.cid-ukXqZDgZ53 .item:focus,
.cid-ukXqZDgZ53 span:focus {
  outline: none;
}
.cid-ukXqZDgZ53 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXqZDgZ53 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqZDgZ53 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXqZDgZ53 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqZDgZ53 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXqZDgZ53 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXqZDgZ53 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqZDgZ53 .mbr-section-title {
  color: #31947f;
}
.cid-ukXqZDgZ53 .mbr-text,
.cid-ukXqZDgZ53 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqZDgZ53 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqZDgZ53 .item-subtitle {
  text-align: center;
}
.cid-ukXqZDI3Ih {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXqZDI3Ih img,
.cid-ukXqZDI3Ih .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXqZDI3Ih .item:focus,
.cid-ukXqZDI3Ih span:focus {
  outline: none;
}
.cid-ukXqZDI3Ih .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXqZDI3Ih .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqZDI3Ih .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqZDI3Ih .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXqZDI3Ih .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqZDI3Ih .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXqZDI3Ih .mbr-text,
.cid-ukXqZDI3Ih .mbr-section-btn {
  text-align: left;
}
.cid-ukXqZDI3Ih .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXqZDI3Ih .item-subtitle {
  text-align: center;
}
.cid-ukXqZDI3Ih .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXqZEFc9i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXqZEFc9i .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXqZEFc9i img,
.cid-ukXqZEFc9i .item-img {
  width: 100%;
}
.cid-ukXqZEFc9i .item:focus,
.cid-ukXqZEFc9i span:focus {
  outline: none;
}
.cid-ukXqZEFc9i .item-wrapper {
  position: relative;
}
.cid-ukXqZEFc9i .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXqZEFc9i .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXqZEFc9i .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXqZEFc9i .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXqZEFc9i .mbr-section-title {
  color: #ffffff;
}
.cid-ukXqZEFc9i .mbr-text,
.cid-ukXqZEFc9i .mbr-section-btn {
  text-align: left;
}
.cid-ukXqZEFc9i .item-title {
  text-align: left;
}
.cid-ukXqZEFc9i .item-subtitle {
  text-align: left;
}
.cid-ukXqZEFc9i .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXqZEFc9i .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXqZEFc9i .embla__button--next,
.cid-ukXqZEFc9i .embla__button--prev {
  display: flex;
}
.cid-ukXqZEFc9i .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXqZEFc9i .embla__button {
    display: none;
  }
}
.cid-ukXqZEFc9i .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXqZEFc9i .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXqZEFc9i .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXqZEFc9i .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXqZEFc9i .embla__button {
    top: auto;
  }
}
.cid-ukXqZEFc9i .embla {
  position: relative;
  width: 100%;
}
.cid-ukXqZEFc9i .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXqZEFc9i .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXqZEFc9i .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXqZEFc9i .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXqZFHyyp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXqZFHyyp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXqZFHyyp form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXqZFHyyp form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXqZFHyyp form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXqZFHyyp form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXqZFHyyp form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXqZFHyyp .mbr-section-title {
  color: #ffffff;
}
.cid-ukXqZG3WES {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXqZG3WES .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqZG3WES .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqZG3WES .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXqZG3WES .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXqZG3WES .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-ukXqZG3WES .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXqZG3WES .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXqZGstjb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXqZGstjb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqZGstjb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqZGstjb .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXqZGstjb .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXqZGstjb .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqZGstjb .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXqZGMwdM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXqZGMwdM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXqZGMwdM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXqZGMwdM .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXqZGMwdM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXqZGMwdM .row {
    text-align: center;
  }
  .cid-ukXqZGMwdM .row > div {
    margin: auto;
  }
  .cid-ukXqZGMwdM .social-row {
    justify-content: center;
  }
}
.cid-ukXqZGMwdM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXqZGMwdM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXqZGMwdM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXqZGMwdM .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXqZGMwdM .mbr-text {
  color: #000000;
}
.cid-ukXqZGMwdM .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-ukXqZGMwdM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXqZGMwdM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXqZGMwdM H5 {
  color: #1d4719;
}
.cid-ukXr63Hs2b {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXr63Hs2b nav.navbar {
  position: fixed;
}
.cid-ukXr63Hs2b .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-ukXr63Hs2b .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXr63Hs2b .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXr63Hs2b .dropdown-item:hover,
.cid-ukXr63Hs2b .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXr63Hs2b .dropdown-item:hover span {
  color: white;
}
.cid-ukXr63Hs2b .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXr63Hs2b .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXr63Hs2b .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXr63Hs2b .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXr63Hs2b .nav-link {
  position: relative;
}
.cid-ukXr63Hs2b .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXr63Hs2b .container {
    flex-wrap: wrap;
  }
}
.cid-ukXr63Hs2b .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXr63Hs2b .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXr63Hs2b .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXr63Hs2b .dropdown-menu,
.cid-ukXr63Hs2b .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXr63Hs2b .nav-item:focus,
.cid-ukXr63Hs2b .nav-link:focus {
  outline: none;
}
.cid-ukXr63Hs2b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXr63Hs2b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXr63Hs2b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXr63Hs2b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXr63Hs2b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXr63Hs2b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXr63Hs2b .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: #ffffff;
}
.cid-ukXr63Hs2b .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXr63Hs2b .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXr63Hs2b .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXr63Hs2b .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXr63Hs2b .navbar.collapsed {
  justify-content: center;
}
.cid-ukXr63Hs2b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXr63Hs2b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXr63Hs2b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXr63Hs2b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXr63Hs2b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXr63Hs2b .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-ukXr63Hs2b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXr63Hs2b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXr63Hs2b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXr63Hs2b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXr63Hs2b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXr63Hs2b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXr63Hs2b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXr63Hs2b .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-ukXr63Hs2b .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXr63Hs2b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXr63Hs2b .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXr63Hs2b .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXr63Hs2b .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXr63Hs2b .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXr63Hs2b .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXr63Hs2b .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXr63Hs2b .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXr63Hs2b .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXr63Hs2b .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-ukXr63Hs2b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXr63Hs2b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXr63Hs2b .dropdown-item.active,
.cid-ukXr63Hs2b .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXr63Hs2b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXr63Hs2b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXr63Hs2b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXr63Hs2b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXr63Hs2b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXr63Hs2b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXr63Hs2b ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXr63Hs2b .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXr63Hs2b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXr63Hs2b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXr63Hs2b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXr63Hs2b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXr63Hs2b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXr63Hs2b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXr63Hs2b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXr63Hs2b nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXr63Hs2b nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXr63Hs2b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXr63Hs2b .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXr63Hs2b a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXr63Hs2b .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-ukXr63Hs2b .navbar {
    height: 70px;
  }
  .cid-ukXr63Hs2b .navbar.opened {
    height: auto;
  }
  .cid-ukXr63Hs2b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXr63XVp4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXr63XVp4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXr63XVp4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXr63XVp4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXr63XVp4 .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXr63XVp4 .mbr-section-title {
  color: #31947f;
}
.cid-ukXr63XVp4 .mbr-text,
.cid-ukXr63XVp4 .mbr-section-btn {
  color: #000000;
}
.cid-ukXr649KXi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXr649KXi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXr649KXi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXr649KXi .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXr649KXi .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXr649KXi .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXr649KXi .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXr649KXi .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXr649KXi .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXr649KXi .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXr649KXi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXr649KXi .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXr649KXi .mbr-text,
.cid-ukXr649KXi .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXr64p70i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXr64p70i .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXr64p70i img,
.cid-ukXr64p70i .item-img {
  width: 100%;
}
.cid-ukXr64p70i .item:focus,
.cid-ukXr64p70i span:focus {
  outline: none;
}
.cid-ukXr64p70i .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXr64p70i .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXr64p70i .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXr64p70i .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXr64p70i .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXr64p70i .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXr64p70i .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXr64p70i .mbr-section-title {
  color: #31947f;
}
.cid-ukXr64p70i .mbr-text,
.cid-ukXr64p70i .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXr64p70i .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXr64p70i .item-subtitle {
  text-align: center;
}
.cid-ukXr64JYpe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXr64JYpe img,
.cid-ukXr64JYpe .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXr64JYpe .item:focus,
.cid-ukXr64JYpe span:focus {
  outline: none;
}
.cid-ukXr64JYpe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXr64JYpe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXr64JYpe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXr64JYpe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXr64JYpe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXr64JYpe .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXr64JYpe .mbr-text,
.cid-ukXr64JYpe .mbr-section-btn {
  text-align: left;
}
.cid-ukXr64JYpe .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXr64JYpe .item-subtitle {
  text-align: center;
}
.cid-ukXr64JYpe .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXr65oXuv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXr65oXuv .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXr65oXuv img,
.cid-ukXr65oXuv .item-img {
  width: 100%;
}
.cid-ukXr65oXuv .item:focus,
.cid-ukXr65oXuv span:focus {
  outline: none;
}
.cid-ukXr65oXuv .item-wrapper {
  position: relative;
}
.cid-ukXr65oXuv .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXr65oXuv .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXr65oXuv .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXr65oXuv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXr65oXuv .mbr-section-title {
  color: #ffffff;
}
.cid-ukXr65oXuv .mbr-text,
.cid-ukXr65oXuv .mbr-section-btn {
  text-align: left;
}
.cid-ukXr65oXuv .item-title {
  text-align: left;
}
.cid-ukXr65oXuv .item-subtitle {
  text-align: left;
}
.cid-ukXr65oXuv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXr65oXuv .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXr65oXuv .embla__button--next,
.cid-ukXr65oXuv .embla__button--prev {
  display: flex;
}
.cid-ukXr65oXuv .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXr65oXuv .embla__button {
    display: none;
  }
}
.cid-ukXr65oXuv .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXr65oXuv .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXr65oXuv .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXr65oXuv .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXr65oXuv .embla__button {
    top: auto;
  }
}
.cid-ukXr65oXuv .embla {
  position: relative;
  width: 100%;
}
.cid-ukXr65oXuv .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXr65oXuv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXr65oXuv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXr65oXuv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXr66dEBT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXr66dEBT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXr66dEBT form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXr66dEBT form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXr66dEBT form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXr66dEBT form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXr66dEBT form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXr66dEBT .mbr-section-title {
  color: #ffffff;
}
.cid-ukXr66tkI0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXr66tkI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXr66tkI0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXr66tkI0 .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXr66tkI0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXr66tkI0 .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-ukXr66tkI0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXr66tkI0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXr66Miir {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXr66Miir .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXr66Miir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXr66Miir .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXr66Miir .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXr66Miir .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXr66Miir .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXr6727BB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXr6727BB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXr6727BB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXr6727BB .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXr6727BB .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXr6727BB .row {
    text-align: center;
  }
  .cid-ukXr6727BB .row > div {
    margin: auto;
  }
  .cid-ukXr6727BB .social-row {
    justify-content: center;
  }
}
.cid-ukXr6727BB .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXr6727BB .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXr6727BB .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXr6727BB .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXr6727BB .mbr-text {
  color: #000000;
}
.cid-ukXr6727BB .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-ukXr6727BB .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXr6727BB div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXr6727BB H5 {
  color: #1d4719;
}
.cid-ukXt0Xmmvc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXt0Xmmvc nav.navbar {
  position: fixed;
}
.cid-ukXt0Xmmvc .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-ukXt0Xmmvc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXt0Xmmvc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXt0Xmmvc .dropdown-item:hover,
.cid-ukXt0Xmmvc .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXt0Xmmvc .dropdown-item:hover span {
  color: white;
}
.cid-ukXt0Xmmvc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXt0Xmmvc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXt0Xmmvc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXt0Xmmvc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXt0Xmmvc .nav-link {
  position: relative;
}
.cid-ukXt0Xmmvc .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXt0Xmmvc .container {
    flex-wrap: wrap;
  }
}
.cid-ukXt0Xmmvc .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXt0Xmmvc .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXt0Xmmvc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXt0Xmmvc .dropdown-menu,
.cid-ukXt0Xmmvc .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXt0Xmmvc .nav-item:focus,
.cid-ukXt0Xmmvc .nav-link:focus {
  outline: none;
}
.cid-ukXt0Xmmvc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXt0Xmmvc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXt0Xmmvc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXt0Xmmvc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXt0Xmmvc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXt0Xmmvc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXt0Xmmvc .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: #ffffff;
}
.cid-ukXt0Xmmvc .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXt0Xmmvc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXt0Xmmvc .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXt0Xmmvc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXt0Xmmvc .navbar.collapsed {
  justify-content: center;
}
.cid-ukXt0Xmmvc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXt0Xmmvc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXt0Xmmvc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXt0Xmmvc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXt0Xmmvc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXt0Xmmvc .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-ukXt0Xmmvc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXt0Xmmvc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXt0Xmmvc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXt0Xmmvc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXt0Xmmvc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXt0Xmmvc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXt0Xmmvc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXt0Xmmvc .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-ukXt0Xmmvc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXt0Xmmvc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXt0Xmmvc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXt0Xmmvc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXt0Xmmvc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXt0Xmmvc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXt0Xmmvc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXt0Xmmvc .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXt0Xmmvc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXt0Xmmvc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXt0Xmmvc .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-ukXt0Xmmvc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXt0Xmmvc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXt0Xmmvc .dropdown-item.active,
.cid-ukXt0Xmmvc .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXt0Xmmvc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXt0Xmmvc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXt0Xmmvc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXt0Xmmvc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXt0Xmmvc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXt0Xmmvc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXt0Xmmvc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXt0Xmmvc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXt0Xmmvc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXt0Xmmvc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXt0Xmmvc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXt0Xmmvc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXt0Xmmvc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXt0Xmmvc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXt0Xmmvc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXt0Xmmvc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXt0Xmmvc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXt0Xmmvc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXt0Xmmvc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXt0Xmmvc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXt0Xmmvc .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-ukXt0Xmmvc .navbar {
    height: 70px;
  }
  .cid-ukXt0Xmmvc .navbar.opened {
    height: auto;
  }
  .cid-ukXt0Xmmvc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXt0XFShW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXt0XFShW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXt0XFShW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXt0XFShW .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXt0XFShW .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXt0XFShW .mbr-section-title {
  color: #31947f;
}
.cid-ukXt0XFShW .mbr-text,
.cid-ukXt0XFShW .mbr-section-btn {
  color: #000000;
}
.cid-ukXt0XXVwU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXt0XXVwU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXt0XXVwU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXt0XXVwU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXt0XXVwU .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXt0XXVwU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXt0XXVwU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXt0XXVwU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXt0XXVwU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXt0XXVwU .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXt0XXVwU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXt0XXVwU .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXt0XXVwU .mbr-text,
.cid-ukXt0XXVwU .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXt0YcdSP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXt0YcdSP .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXt0YcdSP img,
.cid-ukXt0YcdSP .item-img {
  width: 100%;
}
.cid-ukXt0YcdSP .item:focus,
.cid-ukXt0YcdSP span:focus {
  outline: none;
}
.cid-ukXt0YcdSP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXt0YcdSP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXt0YcdSP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXt0YcdSP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXt0YcdSP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXt0YcdSP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXt0YcdSP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXt0YcdSP .mbr-section-title {
  color: #31947f;
}
.cid-ukXt0YcdSP .mbr-text,
.cid-ukXt0YcdSP .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXt0YcdSP .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXt0YcdSP .item-subtitle {
  text-align: center;
}
.cid-ukXt0YvYsJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXt0YvYsJ img,
.cid-ukXt0YvYsJ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXt0YvYsJ .item:focus,
.cid-ukXt0YvYsJ span:focus {
  outline: none;
}
.cid-ukXt0YvYsJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXt0YvYsJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXt0YvYsJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXt0YvYsJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXt0YvYsJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXt0YvYsJ .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXt0YvYsJ .mbr-text,
.cid-ukXt0YvYsJ .mbr-section-btn {
  text-align: left;
}
.cid-ukXt0YvYsJ .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXt0YvYsJ .item-subtitle {
  text-align: center;
}
.cid-ukXt0YvYsJ .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXt0ZdhtZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXt0ZdhtZ .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXt0ZdhtZ img,
.cid-ukXt0ZdhtZ .item-img {
  width: 100%;
}
.cid-ukXt0ZdhtZ .item:focus,
.cid-ukXt0ZdhtZ span:focus {
  outline: none;
}
.cid-ukXt0ZdhtZ .item-wrapper {
  position: relative;
}
.cid-ukXt0ZdhtZ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXt0ZdhtZ .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXt0ZdhtZ .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXt0ZdhtZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXt0ZdhtZ .mbr-section-title {
  color: #ffffff;
}
.cid-ukXt0ZdhtZ .mbr-text,
.cid-ukXt0ZdhtZ .mbr-section-btn {
  text-align: left;
}
.cid-ukXt0ZdhtZ .item-title {
  text-align: left;
}
.cid-ukXt0ZdhtZ .item-subtitle {
  text-align: left;
}
.cid-ukXt0ZdhtZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXt0ZdhtZ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXt0ZdhtZ .embla__button--next,
.cid-ukXt0ZdhtZ .embla__button--prev {
  display: flex;
}
.cid-ukXt0ZdhtZ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXt0ZdhtZ .embla__button {
    display: none;
  }
}
.cid-ukXt0ZdhtZ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXt0ZdhtZ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXt0ZdhtZ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXt0ZdhtZ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXt0ZdhtZ .embla__button {
    top: auto;
  }
}
.cid-ukXt0ZdhtZ .embla {
  position: relative;
  width: 100%;
}
.cid-ukXt0ZdhtZ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXt0ZdhtZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXt0ZdhtZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXt0ZdhtZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXt107WDq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXt107WDq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXt107WDq form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXt107WDq form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXt107WDq form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXt107WDq form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXt107WDq form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXt107WDq .mbr-section-title {
  color: #ffffff;
}
.cid-ukXt10ncxo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXt10ncxo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXt10ncxo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXt10ncxo .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXt10ncxo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXt10ncxo .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-ukXt10ncxo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXt10ncxo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXt10GDTB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXt10GDTB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXt10GDTB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXt10GDTB .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXt10GDTB .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXt10GDTB .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXt10GDTB .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXt10WaH9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXt10WaH9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXt10WaH9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXt10WaH9 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXt10WaH9 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXt10WaH9 .row {
    text-align: center;
  }
  .cid-ukXt10WaH9 .row > div {
    margin: auto;
  }
  .cid-ukXt10WaH9 .social-row {
    justify-content: center;
  }
}
.cid-ukXt10WaH9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXt10WaH9 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXt10WaH9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXt10WaH9 .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXt10WaH9 .mbr-text {
  color: #000000;
}
.cid-ukXt10WaH9 .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-ukXt10WaH9 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXt10WaH9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXt10WaH9 H5 {
  color: #1d4719;
}
.cid-ukXtaJS7MO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXtaJS7MO nav.navbar {
  position: fixed;
}
.cid-ukXtaJS7MO .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-ukXtaJS7MO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXtaJS7MO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXtaJS7MO .dropdown-item:hover,
.cid-ukXtaJS7MO .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXtaJS7MO .dropdown-item:hover span {
  color: white;
}
.cid-ukXtaJS7MO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXtaJS7MO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXtaJS7MO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXtaJS7MO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXtaJS7MO .nav-link {
  position: relative;
}
.cid-ukXtaJS7MO .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXtaJS7MO .container {
    flex-wrap: wrap;
  }
}
.cid-ukXtaJS7MO .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXtaJS7MO .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXtaJS7MO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXtaJS7MO .dropdown-menu,
.cid-ukXtaJS7MO .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXtaJS7MO .nav-item:focus,
.cid-ukXtaJS7MO .nav-link:focus {
  outline: none;
}
.cid-ukXtaJS7MO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXtaJS7MO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXtaJS7MO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXtaJS7MO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXtaJS7MO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXtaJS7MO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXtaJS7MO .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: #ffffff;
}
.cid-ukXtaJS7MO .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXtaJS7MO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXtaJS7MO .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXtaJS7MO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXtaJS7MO .navbar.collapsed {
  justify-content: center;
}
.cid-ukXtaJS7MO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXtaJS7MO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXtaJS7MO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXtaJS7MO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXtaJS7MO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXtaJS7MO .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-ukXtaJS7MO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXtaJS7MO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXtaJS7MO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXtaJS7MO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXtaJS7MO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXtaJS7MO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXtaJS7MO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXtaJS7MO .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-ukXtaJS7MO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXtaJS7MO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXtaJS7MO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXtaJS7MO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXtaJS7MO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXtaJS7MO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXtaJS7MO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXtaJS7MO .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXtaJS7MO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXtaJS7MO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXtaJS7MO .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-ukXtaJS7MO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXtaJS7MO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXtaJS7MO .dropdown-item.active,
.cid-ukXtaJS7MO .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXtaJS7MO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXtaJS7MO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXtaJS7MO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXtaJS7MO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXtaJS7MO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXtaJS7MO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXtaJS7MO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXtaJS7MO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXtaJS7MO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXtaJS7MO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXtaJS7MO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXtaJS7MO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXtaJS7MO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXtaJS7MO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXtaJS7MO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXtaJS7MO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXtaJS7MO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXtaJS7MO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXtaJS7MO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXtaJS7MO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXtaJS7MO .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-ukXtaJS7MO .navbar {
    height: 70px;
  }
  .cid-ukXtaJS7MO .navbar.opened {
    height: auto;
  }
  .cid-ukXtaJS7MO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXtaKaZUt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXtaKaZUt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtaKaZUt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtaKaZUt .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXtaKaZUt .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXtaKaZUt .mbr-section-title {
  color: #31947f;
}
.cid-ukXtaKaZUt .mbr-text,
.cid-ukXtaKaZUt .mbr-section-btn {
  color: #000000;
}
.cid-ukXtaKp7tq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXtaKp7tq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtaKp7tq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtaKp7tq .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXtaKp7tq .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXtaKp7tq .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXtaKp7tq .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXtaKp7tq .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtaKp7tq .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXtaKp7tq .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXtaKp7tq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXtaKp7tq .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXtaKp7tq .mbr-text,
.cid-ukXtaKp7tq .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXtaKFVCa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXtaKFVCa .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXtaKFVCa img,
.cid-ukXtaKFVCa .item-img {
  width: 100%;
}
.cid-ukXtaKFVCa .item:focus,
.cid-ukXtaKFVCa span:focus {
  outline: none;
}
.cid-ukXtaKFVCa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXtaKFVCa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtaKFVCa .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXtaKFVCa .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtaKFVCa .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXtaKFVCa .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXtaKFVCa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtaKFVCa .mbr-section-title {
  color: #31947f;
}
.cid-ukXtaKFVCa .mbr-text,
.cid-ukXtaKFVCa .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtaKFVCa .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtaKFVCa .item-subtitle {
  text-align: center;
}
.cid-ukXtaKXvas {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXtaKXvas img,
.cid-ukXtaKXvas .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXtaKXvas .item:focus,
.cid-ukXtaKXvas span:focus {
  outline: none;
}
.cid-ukXtaKXvas .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXtaKXvas .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtaKXvas .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtaKXvas .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXtaKXvas .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtaKXvas .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXtaKXvas .mbr-text,
.cid-ukXtaKXvas .mbr-section-btn {
  text-align: left;
}
.cid-ukXtaKXvas .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtaKXvas .item-subtitle {
  text-align: center;
}
.cid-ukXtaKXvas .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXtaLGFy1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXtaLGFy1 .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXtaLGFy1 img,
.cid-ukXtaLGFy1 .item-img {
  width: 100%;
}
.cid-ukXtaLGFy1 .item:focus,
.cid-ukXtaLGFy1 span:focus {
  outline: none;
}
.cid-ukXtaLGFy1 .item-wrapper {
  position: relative;
}
.cid-ukXtaLGFy1 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtaLGFy1 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtaLGFy1 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXtaLGFy1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtaLGFy1 .mbr-section-title {
  color: #ffffff;
}
.cid-ukXtaLGFy1 .mbr-text,
.cid-ukXtaLGFy1 .mbr-section-btn {
  text-align: left;
}
.cid-ukXtaLGFy1 .item-title {
  text-align: left;
}
.cid-ukXtaLGFy1 .item-subtitle {
  text-align: left;
}
.cid-ukXtaLGFy1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXtaLGFy1 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXtaLGFy1 .embla__button--next,
.cid-ukXtaLGFy1 .embla__button--prev {
  display: flex;
}
.cid-ukXtaLGFy1 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXtaLGFy1 .embla__button {
    display: none;
  }
}
.cid-ukXtaLGFy1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXtaLGFy1 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXtaLGFy1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXtaLGFy1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXtaLGFy1 .embla__button {
    top: auto;
  }
}
.cid-ukXtaLGFy1 .embla {
  position: relative;
  width: 100%;
}
.cid-ukXtaLGFy1 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXtaLGFy1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXtaLGFy1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXtaLGFy1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXtaMtaKq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXtaMtaKq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXtaMtaKq form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXtaMtaKq form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXtaMtaKq form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXtaMtaKq form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXtaMtaKq form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXtaMtaKq .mbr-section-title {
  color: #ffffff;
}
.cid-ukXtaMOOS3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXtaMOOS3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtaMOOS3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtaMOOS3 .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXtaMOOS3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXtaMOOS3 .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-ukXtaMOOS3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXtaMOOS3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXtaN8VlU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXtaN8VlU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtaN8VlU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtaN8VlU .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXtaN8VlU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXtaN8VlU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtaN8VlU .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXtaNq718 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXtaNq718 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtaNq718 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtaNq718 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXtaNq718 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXtaNq718 .row {
    text-align: center;
  }
  .cid-ukXtaNq718 .row > div {
    margin: auto;
  }
  .cid-ukXtaNq718 .social-row {
    justify-content: center;
  }
}
.cid-ukXtaNq718 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXtaNq718 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXtaNq718 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtaNq718 .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXtaNq718 .mbr-text {
  color: #000000;
}
.cid-ukXtaNq718 .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-ukXtaNq718 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXtaNq718 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXtaNq718 H5 {
  color: #1d4719;
}
.cid-ukXthgNZJj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXthgNZJj nav.navbar {
  position: fixed;
}
.cid-ukXthgNZJj .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-ukXthgNZJj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXthgNZJj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXthgNZJj .dropdown-item:hover,
.cid-ukXthgNZJj .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXthgNZJj .dropdown-item:hover span {
  color: white;
}
.cid-ukXthgNZJj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXthgNZJj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXthgNZJj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXthgNZJj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXthgNZJj .nav-link {
  position: relative;
}
.cid-ukXthgNZJj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXthgNZJj .container {
    flex-wrap: wrap;
  }
}
.cid-ukXthgNZJj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXthgNZJj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXthgNZJj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXthgNZJj .dropdown-menu,
.cid-ukXthgNZJj .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXthgNZJj .nav-item:focus,
.cid-ukXthgNZJj .nav-link:focus {
  outline: none;
}
.cid-ukXthgNZJj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXthgNZJj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXthgNZJj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXthgNZJj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXthgNZJj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXthgNZJj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXthgNZJj .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: #ffffff;
}
.cid-ukXthgNZJj .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXthgNZJj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXthgNZJj .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXthgNZJj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXthgNZJj .navbar.collapsed {
  justify-content: center;
}
.cid-ukXthgNZJj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXthgNZJj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXthgNZJj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXthgNZJj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXthgNZJj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXthgNZJj .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-ukXthgNZJj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXthgNZJj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXthgNZJj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXthgNZJj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXthgNZJj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXthgNZJj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXthgNZJj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXthgNZJj .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-ukXthgNZJj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXthgNZJj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXthgNZJj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXthgNZJj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXthgNZJj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXthgNZJj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXthgNZJj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXthgNZJj .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXthgNZJj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXthgNZJj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXthgNZJj .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-ukXthgNZJj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXthgNZJj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXthgNZJj .dropdown-item.active,
.cid-ukXthgNZJj .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXthgNZJj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXthgNZJj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXthgNZJj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXthgNZJj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXthgNZJj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXthgNZJj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXthgNZJj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXthgNZJj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXthgNZJj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXthgNZJj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXthgNZJj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXthgNZJj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXthgNZJj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXthgNZJj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXthgNZJj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXthgNZJj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXthgNZJj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXthgNZJj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXthgNZJj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXthgNZJj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXthgNZJj .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-ukXthgNZJj .navbar {
    height: 70px;
  }
  .cid-ukXthgNZJj .navbar.opened {
    height: auto;
  }
  .cid-ukXthgNZJj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXthh3Qmp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXthh3Qmp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXthh3Qmp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXthh3Qmp .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXthh3Qmp .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXthh3Qmp .mbr-section-title {
  color: #31947f;
}
.cid-ukXthh3Qmp .mbr-text,
.cid-ukXthh3Qmp .mbr-section-btn {
  color: #000000;
}
.cid-ukXthhgzQm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXthhgzQm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXthhgzQm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXthhgzQm .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXthhgzQm .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXthhgzQm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXthhgzQm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXthhgzQm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXthhgzQm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXthhgzQm .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXthhgzQm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXthhgzQm .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXthhgzQm .mbr-text,
.cid-ukXthhgzQm .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXthht9zQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXthht9zQ .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXthht9zQ img,
.cid-ukXthht9zQ .item-img {
  width: 100%;
}
.cid-ukXthht9zQ .item:focus,
.cid-ukXthht9zQ span:focus {
  outline: none;
}
.cid-ukXthht9zQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXthht9zQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXthht9zQ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXthht9zQ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXthht9zQ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXthht9zQ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXthht9zQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXthht9zQ .mbr-section-title {
  color: #31947f;
}
.cid-ukXthht9zQ .mbr-text,
.cid-ukXthht9zQ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXthht9zQ .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXthht9zQ .item-subtitle {
  text-align: center;
}
.cid-ukXthhJC8y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXthhJC8y img,
.cid-ukXthhJC8y .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXthhJC8y .item:focus,
.cid-ukXthhJC8y span:focus {
  outline: none;
}
.cid-ukXthhJC8y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXthhJC8y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXthhJC8y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXthhJC8y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXthhJC8y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXthhJC8y .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXthhJC8y .mbr-text,
.cid-ukXthhJC8y .mbr-section-btn {
  text-align: left;
}
.cid-ukXthhJC8y .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXthhJC8y .item-subtitle {
  text-align: center;
}
.cid-ukXthhJC8y .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXthiohSU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXthiohSU .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXthiohSU img,
.cid-ukXthiohSU .item-img {
  width: 100%;
}
.cid-ukXthiohSU .item:focus,
.cid-ukXthiohSU span:focus {
  outline: none;
}
.cid-ukXthiohSU .item-wrapper {
  position: relative;
}
.cid-ukXthiohSU .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXthiohSU .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXthiohSU .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXthiohSU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXthiohSU .mbr-section-title {
  color: #ffffff;
}
.cid-ukXthiohSU .mbr-text,
.cid-ukXthiohSU .mbr-section-btn {
  text-align: left;
}
.cid-ukXthiohSU .item-title {
  text-align: left;
}
.cid-ukXthiohSU .item-subtitle {
  text-align: left;
}
.cid-ukXthiohSU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXthiohSU .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXthiohSU .embla__button--next,
.cid-ukXthiohSU .embla__button--prev {
  display: flex;
}
.cid-ukXthiohSU .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXthiohSU .embla__button {
    display: none;
  }
}
.cid-ukXthiohSU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXthiohSU .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXthiohSU .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXthiohSU .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXthiohSU .embla__button {
    top: auto;
  }
}
.cid-ukXthiohSU .embla {
  position: relative;
  width: 100%;
}
.cid-ukXthiohSU .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXthiohSU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXthiohSU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXthiohSU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXthj8rhI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXthj8rhI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXthj8rhI form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXthj8rhI form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXthj8rhI form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXthj8rhI form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXthj8rhI form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXthj8rhI .mbr-section-title {
  color: #ffffff;
}
.cid-ukXthjrRth {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXthjrRth .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXthjrRth .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXthjrRth .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXthjrRth .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXthjrRth .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-ukXthjrRth .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXthjrRth .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXthjKpBY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXthjKpBY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXthjKpBY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXthjKpBY .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXthjKpBY .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXthjKpBY .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXthjKpBY .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXthjZoTc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXthjZoTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXthjZoTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXthjZoTc .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXthjZoTc .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXthjZoTc .row {
    text-align: center;
  }
  .cid-ukXthjZoTc .row > div {
    margin: auto;
  }
  .cid-ukXthjZoTc .social-row {
    justify-content: center;
  }
}
.cid-ukXthjZoTc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXthjZoTc .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXthjZoTc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXthjZoTc .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXthjZoTc .mbr-text {
  color: #000000;
}
.cid-ukXthjZoTc .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-ukXthjZoTc .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXthjZoTc div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXthjZoTc H5 {
  color: #1d4719;
}
.cid-ukXtmmFxq0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXtmmFxq0 nav.navbar {
  position: fixed;
}
.cid-ukXtmmFxq0 .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-ukXtmmFxq0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXtmmFxq0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXtmmFxq0 .dropdown-item:hover,
.cid-ukXtmmFxq0 .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXtmmFxq0 .dropdown-item:hover span {
  color: white;
}
.cid-ukXtmmFxq0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXtmmFxq0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXtmmFxq0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXtmmFxq0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXtmmFxq0 .nav-link {
  position: relative;
}
.cid-ukXtmmFxq0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXtmmFxq0 .container {
    flex-wrap: wrap;
  }
}
.cid-ukXtmmFxq0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXtmmFxq0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXtmmFxq0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXtmmFxq0 .dropdown-menu,
.cid-ukXtmmFxq0 .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXtmmFxq0 .nav-item:focus,
.cid-ukXtmmFxq0 .nav-link:focus {
  outline: none;
}
.cid-ukXtmmFxq0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXtmmFxq0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXtmmFxq0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXtmmFxq0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXtmmFxq0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXtmmFxq0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXtmmFxq0 .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: #ffffff;
}
.cid-ukXtmmFxq0 .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXtmmFxq0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXtmmFxq0 .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXtmmFxq0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXtmmFxq0 .navbar.collapsed {
  justify-content: center;
}
.cid-ukXtmmFxq0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXtmmFxq0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXtmmFxq0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXtmmFxq0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXtmmFxq0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXtmmFxq0 .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-ukXtmmFxq0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXtmmFxq0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXtmmFxq0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXtmmFxq0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXtmmFxq0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXtmmFxq0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXtmmFxq0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXtmmFxq0 .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-ukXtmmFxq0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXtmmFxq0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXtmmFxq0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXtmmFxq0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXtmmFxq0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXtmmFxq0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXtmmFxq0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXtmmFxq0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXtmmFxq0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXtmmFxq0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXtmmFxq0 .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-ukXtmmFxq0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXtmmFxq0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXtmmFxq0 .dropdown-item.active,
.cid-ukXtmmFxq0 .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXtmmFxq0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXtmmFxq0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXtmmFxq0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXtmmFxq0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXtmmFxq0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXtmmFxq0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXtmmFxq0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXtmmFxq0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXtmmFxq0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXtmmFxq0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXtmmFxq0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXtmmFxq0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXtmmFxq0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXtmmFxq0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXtmmFxq0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXtmmFxq0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXtmmFxq0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXtmmFxq0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXtmmFxq0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXtmmFxq0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXtmmFxq0 .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-ukXtmmFxq0 .navbar {
    height: 70px;
  }
  .cid-ukXtmmFxq0 .navbar.opened {
    height: auto;
  }
  .cid-ukXtmmFxq0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXtmmWnoi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXtmmWnoi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtmmWnoi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtmmWnoi .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXtmmWnoi .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXtmmWnoi .mbr-section-title {
  color: #31947f;
}
.cid-ukXtmmWnoi .mbr-text,
.cid-ukXtmmWnoi .mbr-section-btn {
  color: #000000;
}
.cid-ukXtmncUTH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXtmncUTH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtmncUTH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtmncUTH .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXtmncUTH .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXtmncUTH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXtmncUTH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXtmncUTH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtmncUTH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXtmncUTH .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXtmncUTH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXtmncUTH .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXtmncUTH .mbr-text,
.cid-ukXtmncUTH .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXtmnrPuc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXtmnrPuc .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXtmnrPuc img,
.cid-ukXtmnrPuc .item-img {
  width: 100%;
}
.cid-ukXtmnrPuc .item:focus,
.cid-ukXtmnrPuc span:focus {
  outline: none;
}
.cid-ukXtmnrPuc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXtmnrPuc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtmnrPuc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXtmnrPuc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtmnrPuc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXtmnrPuc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXtmnrPuc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtmnrPuc .mbr-section-title {
  color: #31947f;
}
.cid-ukXtmnrPuc .mbr-text,
.cid-ukXtmnrPuc .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtmnrPuc .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtmnrPuc .item-subtitle {
  text-align: center;
}
.cid-ukXtmnKqxt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXtmnKqxt img,
.cid-ukXtmnKqxt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXtmnKqxt .item:focus,
.cid-ukXtmnKqxt span:focus {
  outline: none;
}
.cid-ukXtmnKqxt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXtmnKqxt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtmnKqxt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtmnKqxt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXtmnKqxt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtmnKqxt .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXtmnKqxt .mbr-text,
.cid-ukXtmnKqxt .mbr-section-btn {
  text-align: left;
}
.cid-ukXtmnKqxt .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtmnKqxt .item-subtitle {
  text-align: center;
}
.cid-ukXtmnKqxt .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXtmoqesL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXtmoqesL .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXtmoqesL img,
.cid-ukXtmoqesL .item-img {
  width: 100%;
}
.cid-ukXtmoqesL .item:focus,
.cid-ukXtmoqesL span:focus {
  outline: none;
}
.cid-ukXtmoqesL .item-wrapper {
  position: relative;
}
.cid-ukXtmoqesL .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtmoqesL .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtmoqesL .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXtmoqesL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtmoqesL .mbr-section-title {
  color: #ffffff;
}
.cid-ukXtmoqesL .mbr-text,
.cid-ukXtmoqesL .mbr-section-btn {
  text-align: left;
}
.cid-ukXtmoqesL .item-title {
  text-align: left;
}
.cid-ukXtmoqesL .item-subtitle {
  text-align: left;
}
.cid-ukXtmoqesL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXtmoqesL .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXtmoqesL .embla__button--next,
.cid-ukXtmoqesL .embla__button--prev {
  display: flex;
}
.cid-ukXtmoqesL .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXtmoqesL .embla__button {
    display: none;
  }
}
.cid-ukXtmoqesL .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXtmoqesL .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXtmoqesL .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXtmoqesL .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXtmoqesL .embla__button {
    top: auto;
  }
}
.cid-ukXtmoqesL .embla {
  position: relative;
  width: 100%;
}
.cid-ukXtmoqesL .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXtmoqesL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXtmoqesL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXtmoqesL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXtmpdH35 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXtmpdH35 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXtmpdH35 form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXtmpdH35 form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXtmpdH35 form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXtmpdH35 form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXtmpdH35 form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXtmpdH35 .mbr-section-title {
  color: #ffffff;
}
.cid-ukXtmpwa4q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXtmpwa4q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtmpwa4q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtmpwa4q .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXtmpwa4q .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXtmpwa4q .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-ukXtmpwa4q .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXtmpwa4q .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXtmpPb1q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXtmpPb1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtmpPb1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtmpPb1q .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXtmpPb1q .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXtmpPb1q .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtmpPb1q .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXtmq5fVR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXtmq5fVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtmq5fVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtmq5fVR .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXtmq5fVR .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXtmq5fVR .row {
    text-align: center;
  }
  .cid-ukXtmq5fVR .row > div {
    margin: auto;
  }
  .cid-ukXtmq5fVR .social-row {
    justify-content: center;
  }
}
.cid-ukXtmq5fVR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXtmq5fVR .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXtmq5fVR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtmq5fVR .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXtmq5fVR .mbr-text {
  color: #000000;
}
.cid-ukXtmq5fVR .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-ukXtmq5fVR .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXtmq5fVR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXtmq5fVR H5 {
  color: #1d4719;
}
.cid-ukXtuNJ9qp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukXtuNJ9qp nav.navbar {
  position: fixed;
}
.cid-ukXtuNJ9qp .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-ukXtuNJ9qp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukXtuNJ9qp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukXtuNJ9qp .dropdown-item:hover,
.cid-ukXtuNJ9qp .dropdown-item:focus {
  background: #31947f !important;
  color: white !important;
}
.cid-ukXtuNJ9qp .dropdown-item:hover span {
  color: white;
}
.cid-ukXtuNJ9qp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukXtuNJ9qp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukXtuNJ9qp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukXtuNJ9qp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukXtuNJ9qp .nav-link {
  position: relative;
}
.cid-ukXtuNJ9qp .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXtuNJ9qp .container {
    flex-wrap: wrap;
  }
}
.cid-ukXtuNJ9qp .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ukXtuNJ9qp .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ukXtuNJ9qp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukXtuNJ9qp .dropdown-menu,
.cid-ukXtuNJ9qp .navbar.opened {
  background: #ffffff !important;
}
.cid-ukXtuNJ9qp .nav-item:focus,
.cid-ukXtuNJ9qp .nav-link:focus {
  outline: none;
}
.cid-ukXtuNJ9qp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukXtuNJ9qp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukXtuNJ9qp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukXtuNJ9qp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukXtuNJ9qp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukXtuNJ9qp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukXtuNJ9qp .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: #ffffff;
}
.cid-ukXtuNJ9qp .navbar.opened {
  transition: all 0.3s;
}
.cid-ukXtuNJ9qp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukXtuNJ9qp .navbar .navbar-logo img {
  width: auto;
}
.cid-ukXtuNJ9qp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukXtuNJ9qp .navbar.collapsed {
  justify-content: center;
}
.cid-ukXtuNJ9qp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukXtuNJ9qp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukXtuNJ9qp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ukXtuNJ9qp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukXtuNJ9qp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukXtuNJ9qp .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-ukXtuNJ9qp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukXtuNJ9qp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukXtuNJ9qp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukXtuNJ9qp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukXtuNJ9qp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukXtuNJ9qp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukXtuNJ9qp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukXtuNJ9qp .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-ukXtuNJ9qp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukXtuNJ9qp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukXtuNJ9qp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukXtuNJ9qp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukXtuNJ9qp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukXtuNJ9qp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukXtuNJ9qp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukXtuNJ9qp .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukXtuNJ9qp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukXtuNJ9qp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukXtuNJ9qp .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-ukXtuNJ9qp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukXtuNJ9qp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukXtuNJ9qp .dropdown-item.active,
.cid-ukXtuNJ9qp .dropdown-item:active {
  background-color: transparent;
}
.cid-ukXtuNJ9qp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukXtuNJ9qp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukXtuNJ9qp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukXtuNJ9qp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukXtuNJ9qp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukXtuNJ9qp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukXtuNJ9qp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukXtuNJ9qp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukXtuNJ9qp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukXtuNJ9qp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukXtuNJ9qp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukXtuNJ9qp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXtuNJ9qp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukXtuNJ9qp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukXtuNJ9qp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXtuNJ9qp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukXtuNJ9qp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukXtuNJ9qp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukXtuNJ9qp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukXtuNJ9qp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukXtuNJ9qp .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-ukXtuNJ9qp .navbar {
    height: 70px;
  }
  .cid-ukXtuNJ9qp .navbar.opened {
    height: auto;
  }
  .cid-ukXtuNJ9qp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukXtuNYB0O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-1-382x510.webp");
}
.cid-ukXtuNYB0O .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtuNYB0O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtuNYB0O .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukXtuNYB0O .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-ukXtuNYB0O .mbr-section-title {
  color: #31947f;
}
.cid-ukXtuNYB0O .mbr-text,
.cid-ukXtuNYB0O .mbr-section-btn {
  color: #000000;
}
.cid-ukXtuObIzP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x382.webp");
}
.cid-ukXtuObIzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtuObIzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtuObIzP .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukXtuObIzP .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ukXtuObIzP .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXtuObIzP .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXtuObIzP .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtuObIzP .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ukXtuObIzP .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ukXtuObIzP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukXtuObIzP .card-title {
  color: #31947f;
  text-align: center;
}
.cid-ukXtuObIzP .mbr-text,
.cid-ukXtuObIzP .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-ukXtuOpJ3f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXtuOpJ3f .mbr-overlay {
  background: #fafafa;
  opacity: 0.7;
}
.cid-ukXtuOpJ3f img,
.cid-ukXtuOpJ3f .item-img {
  width: 100%;
}
.cid-ukXtuOpJ3f .item:focus,
.cid-ukXtuOpJ3f span:focus {
  outline: none;
}
.cid-ukXtuOpJ3f .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXtuOpJ3f .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #3c84a7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtuOpJ3f .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukXtuOpJ3f .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtuOpJ3f .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukXtuOpJ3f .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukXtuOpJ3f .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtuOpJ3f .mbr-section-title {
  color: #31947f;
}
.cid-ukXtuOpJ3f .mbr-text,
.cid-ukXtuOpJ3f .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtuOpJ3f .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtuOpJ3f .item-subtitle {
  text-align: center;
}
.cid-ukXtuOG1gg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ukXtuOG1gg img,
.cid-ukXtuOG1gg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukXtuOG1gg .item:focus,
.cid-ukXtuOG1gg span:focus {
  outline: none;
}
.cid-ukXtuOG1gg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukXtuOG1gg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #31947f;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtuOG1gg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtuOG1gg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukXtuOG1gg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtuOG1gg .mbr-section-title {
  color: #3c84a7;
}
.cid-ukXtuOG1gg .mbr-text,
.cid-ukXtuOG1gg .mbr-section-btn {
  text-align: left;
}
.cid-ukXtuOG1gg .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-ukXtuOG1gg .item-subtitle {
  text-align: center;
}
.cid-ukXtuOG1gg .mbr-section-subtitle {
  text-align: center;
}
.cid-ukXtuPnbXh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/alamino-vidracaria-3-680x354.webp");
}
.cid-ukXtuPnbXh .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-ukXtuPnbXh img,
.cid-ukXtuPnbXh .item-img {
  width: 100%;
}
.cid-ukXtuPnbXh .item:focus,
.cid-ukXtuPnbXh span:focus {
  outline: none;
}
.cid-ukXtuPnbXh .item-wrapper {
  position: relative;
}
.cid-ukXtuPnbXh .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukXtuPnbXh .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukXtuPnbXh .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ukXtuPnbXh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukXtuPnbXh .mbr-section-title {
  color: #ffffff;
}
.cid-ukXtuPnbXh .mbr-text,
.cid-ukXtuPnbXh .mbr-section-btn {
  text-align: left;
}
.cid-ukXtuPnbXh .item-title {
  text-align: left;
}
.cid-ukXtuPnbXh .item-subtitle {
  text-align: left;
}
.cid-ukXtuPnbXh .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ukXtuPnbXh .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ukXtuPnbXh .embla__button--next,
.cid-ukXtuPnbXh .embla__button--prev {
  display: flex;
}
.cid-ukXtuPnbXh .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-ukXtuPnbXh .embla__button {
    display: none;
  }
}
.cid-ukXtuPnbXh .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ukXtuPnbXh .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ukXtuPnbXh .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukXtuPnbXh .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukXtuPnbXh .embla__button {
    top: auto;
  }
}
.cid-ukXtuPnbXh .embla {
  position: relative;
  width: 100%;
}
.cid-ukXtuPnbXh .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ukXtuPnbXh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ukXtuPnbXh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ukXtuPnbXh .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ukXtuQbPgV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1d4719;
}
.cid-ukXtuQbPgV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukXtuQbPgV form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-ukXtuQbPgV form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-ukXtuQbPgV form.mbr-form {
    padding: 1rem;
  }
}
.cid-ukXtuQbPgV form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukXtuQbPgV form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-ukXtuQbPgV .mbr-section-title {
  color: #ffffff;
}
.cid-ukXtuQrRIW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ukXtuQrRIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtuQrRIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtuQrRIW .google-map {
  height: 30rem;
  position: relative;
}
.cid-ukXtuQrRIW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ukXtuQrRIW .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-ukXtuQrRIW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ukXtuQrRIW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ukXtuQKUv4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3c84a7;
}
.cid-ukXtuQKUv4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtuQKUv4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtuQKUv4 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ukXtuQKUv4 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ukXtuQKUv4 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtuQKUv4 .card-wrapper {
    padding: 4rem;
  }
}
.cid-ukXtuR0rtz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/alamino-vidracaria-4-960x502.webp");
}
.cid-ukXtuR0rtz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukXtuR0rtz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukXtuR0rtz .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ukXtuR0rtz .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ukXtuR0rtz .row {
    text-align: center;
  }
  .cid-ukXtuR0rtz .row > div {
    margin: auto;
  }
  .cid-ukXtuR0rtz .social-row {
    justify-content: center;
  }
}
.cid-ukXtuR0rtz .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukXtuR0rtz .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukXtuR0rtz .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukXtuR0rtz .list {
    margin-bottom: 0rem;
  }
}
.cid-ukXtuR0rtz .mbr-text {
  color: #000000;
}
.cid-ukXtuR0rtz .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-ukXtuR0rtz .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ukXtuR0rtz div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ukXtuR0rtz H5 {
  color: #1d4719;
}
