body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #008a3d !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #e43f3f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #008a3d !important;
  border-color: #008a3d !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: #003317 !important;
  border-color: #003317 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #003317 !important;
  border-color: #003317 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e49230 !important;
  border-color: #e49230 !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: #a76516 !important;
  border-color: #a76516 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a76516 !important;
  border-color: #a76516 !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: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !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: #008a3d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #003317 !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: #008a3d !important;
  border-color: #008a3d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e49230;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a76516 !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: #e49230 !important;
  border-color: #e49230 !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !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: #e43f3f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !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: #008a3d !important;
}
.text-secondary {
  color: #e49230 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #e43f3f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #002410 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9a5d14 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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: #a61717 !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: #008a3d;
}
.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: #e43f3f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #008a3d;
  border-color: #008a3d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #008a3d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0aff77;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #fdf2f2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', 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: #008a3d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', 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: #008a3d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #008a3d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #008a3d;
}
.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: #008a3d;
  border-bottom-color: #008a3d;
}
.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: #008a3d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e49230 !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='%23008a3d' %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-urdvXNNs4L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urdvXNNs4L nav.navbar {
  position: fixed;
}
.cid-urdvXNNs4L .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-urdvXNNs4L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urdvXNNs4L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urdvXNNs4L .dropdown-item:hover,
.cid-urdvXNNs4L .dropdown-item:focus {
  background: #008a3d !important;
  color: white !important;
}
.cid-urdvXNNs4L .dropdown-item:hover span {
  color: white;
}
.cid-urdvXNNs4L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urdvXNNs4L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urdvXNNs4L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urdvXNNs4L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urdvXNNs4L .nav-link {
  position: relative;
}
.cid-urdvXNNs4L .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-urdvXNNs4L .container {
    flex-wrap: wrap;
  }
}
.cid-urdvXNNs4L .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-urdvXNNs4L .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-urdvXNNs4L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urdvXNNs4L .dropdown-menu,
.cid-urdvXNNs4L .navbar.opened {
  background: #ffffff !important;
}
.cid-urdvXNNs4L .nav-item:focus,
.cid-urdvXNNs4L .nav-link:focus {
  outline: none;
}
.cid-urdvXNNs4L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urdvXNNs4L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urdvXNNs4L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urdvXNNs4L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urdvXNNs4L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urdvXNNs4L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urdvXNNs4L .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-urdvXNNs4L .navbar.opened {
  transition: all 0.3s;
}
.cid-urdvXNNs4L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urdvXNNs4L .navbar .navbar-logo img {
  width: auto;
}
.cid-urdvXNNs4L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urdvXNNs4L .navbar.collapsed {
  justify-content: center;
}
.cid-urdvXNNs4L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urdvXNNs4L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urdvXNNs4L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-urdvXNNs4L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urdvXNNs4L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urdvXNNs4L .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-urdvXNNs4L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urdvXNNs4L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urdvXNNs4L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urdvXNNs4L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urdvXNNs4L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urdvXNNs4L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urdvXNNs4L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urdvXNNs4L .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-urdvXNNs4L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urdvXNNs4L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urdvXNNs4L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urdvXNNs4L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urdvXNNs4L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urdvXNNs4L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urdvXNNs4L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urdvXNNs4L .navbar.navbar-short {
  min-height: 60px;
}
.cid-urdvXNNs4L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urdvXNNs4L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urdvXNNs4L .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-urdvXNNs4L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urdvXNNs4L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urdvXNNs4L .dropdown-item.active,
.cid-urdvXNNs4L .dropdown-item:active {
  background-color: transparent;
}
.cid-urdvXNNs4L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urdvXNNs4L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urdvXNNs4L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urdvXNNs4L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urdvXNNs4L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urdvXNNs4L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urdvXNNs4L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urdvXNNs4L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urdvXNNs4L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urdvXNNs4L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urdvXNNs4L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urdvXNNs4L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urdvXNNs4L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urdvXNNs4L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urdvXNNs4L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urdvXNNs4L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urdvXNNs4L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urdvXNNs4L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urdvXNNs4L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urdvXNNs4L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urdvXNNs4L .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-urdvXNNs4L .navbar {
    height: 70px;
  }
  .cid-urdvXNNs4L .navbar.opened {
    height: auto;
  }
  .cid-urdvXNNs4L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urdw9KJ7l5 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fachada-shd.jpg");
}
.cid-urdw9KJ7l5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urdw9KJ7l5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urdw9KJ7l5 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urdw9KJ7l5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-urdw9KJ7l5 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-urdw9KJ7l5 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-urdw9KJ7l5 .mbr-section-title {
  color: #000000;
}
.cid-urdw9KJ7l5 .mbr-text,
.cid-urdw9KJ7l5 .mbr-section-btn {
  color: #082e28;
}
.cid-urdyuVlJ2F {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ff8c05;
}
.cid-urdyuVlJ2F .mbr-fallback-image.disabled {
  display: none;
}
.cid-urdyuVlJ2F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urdyuVlJ2F .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-urdyuVlJ2F .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urdyuVlJ2F .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-urdyuVlJ2F .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urdyuVlJ2F .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-urdyuVlJ2F .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-urdyuVlJ2F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urdyuVlJ2F .card-title {
  color: #008a3d;
}
.cid-uKlowIgyB4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ff8c05;
}
.cid-uKlowIgyB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKlowIgyB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKlowIgyB4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKlnBmTvks {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ff8c05;
}
@media (min-width: 992px) {
  .cid-uKlnBmTvks .carousel {
    min-height: 500px;
  }
  .cid-uKlnBmTvks .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uKlnBmTvks .carousel {
    min-height: 325px;
  }
  .cid-uKlnBmTvks .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uKlnBmTvks .carousel {
    min-height: 275px;
  }
  .cid-uKlnBmTvks .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-uKlnBmTvks .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uKlnBmTvks .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uKlnBmTvks .carousel,
.cid-uKlnBmTvks .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKlnBmTvks .item-wrapper {
  width: 100%;
}
.cid-uKlnBmTvks .carousel-caption {
  bottom: 40px;
}
.cid-uKlnBmTvks .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uKlnBmTvks .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uKlnBmTvks .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uKlnBmTvks .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uKlnBmTvks .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uKlnBmTvks .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKlnBmTvks .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKlnBmTvks .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKlnBmTvks .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uKlnBmTvks .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uKlnBmTvks .carousel-indicators li.active,
.cid-uKlnBmTvks .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKlnBmTvks .carousel-indicators li::after,
.cid-uKlnBmTvks .carousel-indicators li::before {
  content: none;
}
.cid-uKlnBmTvks .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKlnBmTvks .carousel-indicators {
    display: none !important;
  }
}
.cid-bZGx7un7bb .divider-top {
  position: relative;
  padding: 2.5em;
  background: #ff8c05;
}
.cid-bZGx7un7bb .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #ffffff;
}
.cid-bZGx7un7bb .divider-top::before,
.cid-bZGx7un7bb .divider-bottom::before,
.cid-bZGx7un7bb .divider-top::after,
.cid-bZGx7un7bb .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-bZGx7un7bb .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-bZGx7un7bb .divider-triangles::before {
  top: -50px;
}
.cid-bZGx7un7bb .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-bZGx7un7bb .divider-halfcircle::before {
  top: -50px;
}
.cid-bZGx7un7bb .divider-multitriangles::before,
.cid-bZGx7un7bb .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-bZGx7un7bb .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #ff8c05, 50px -50px 0 #ff8c05;
}
.cid-urdwuVOitz {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-urdwuVOitz img,
.cid-urdwuVOitz .item-img {
  width: 100%;
}
.cid-urdwuVOitz .item:focus,
.cid-urdwuVOitz span:focus {
  outline: none;
}
.cid-urdwuVOitz .item-wrapper {
  position: relative;
}
.cid-urdwuVOitz .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urdwuVOitz .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-urdwuVOitz .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urdwuVOitz .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-urdwuVOitz .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-urdwuVOitz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urdwuVOitz .mbr-section-title {
  color: #008a3d;
}
.cid-urdwuVOitz .mbr-text,
.cid-urdwuVOitz .mbr-section-btn {
  text-align: left;
}
.cid-urdwuVOitz .item-title {
  text-align: left;
}
.cid-urdwuVOitz .item-subtitle {
  text-align: left;
}
.cid-urdwuVOitz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-urdwuVOitz .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-urdwuVOitz .embla__button--next,
.cid-urdwuVOitz .embla__button--prev {
  display: flex;
}
.cid-urdwuVOitz .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;
}
@media (max-width: 768px) {
  .cid-urdwuVOitz .embla__button {
    display: none;
  }
}
.cid-urdwuVOitz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-urdwuVOitz .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-urdwuVOitz .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urdwuVOitz .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urdwuVOitz .embla__button {
    top: auto;
  }
}
.cid-urdwuVOitz .embla {
  position: relative;
  width: 100%;
}
.cid-urdwuVOitz .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-urdwuVOitz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-urdwuVOitz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-urdwuVOitz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKlsmAVPup {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKlsmAVPup .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKlsmAVPup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uKlsmAVPup .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKlsmAVPup .row {
  flex-direction: row-reverse;
}
.cid-uKlsmAVPup img {
  width: 100%;
}
.cid-uvR4vu4tzd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uvR4vu4tzd .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-uvR4vu4tzd .block-title {
  color: #008a3d;
}
.cid-urdxkDWgVb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-3.jpg");
}
.cid-urdxkDWgVb .mbr-fallback-image.disabled {
  display: none;
}
.cid-urdxkDWgVb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urdxkDWgVb .mbr-text,
.cid-urdxkDWgVb .mbr-section-btn {
  color: #232323;
}
.cid-urdxkDWgVb .card-title,
.cid-urdxkDWgVb .card-box {
  color: #ffffff;
}
.cid-urdxkDWgVb .mbr-text,
.cid-urdxkDWgVb .link-wrap {
  color: #ffffff;
}
.cid-uvQaYsRyvE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvQaYsRyvE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvQaYsRyvE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvQaYsRyvE .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uvQaYsRyvE .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvQaYsRyvE .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uvQaYsRyvE .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uvQaYsRyvE .row .row {
    flex-direction: column-reverse;
  }
  .cid-uvQaYsRyvE .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uvQaYsRyvE .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvQaYsRyvE .card-subtitle {
  color: #008a3d;
}
.cid-uvQaYsRyvE .mbr-text {
  color: #555555;
}
.cid-uvQl6OlFqv {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uvQl6OlFqv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvQl6OlFqv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvQl6OlFqv .card-wrapper {
  background: #e49230;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uvQl6OlFqv .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uvQl6OlFqv .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvQl6OlFqv .card-wrapper {
    padding: 4rem;
  }
}
.cid-uvQl6OlFqv .mbr-text,
.cid-uvQl6OlFqv .mbr-section-btn {
  color: #ffffff;
}
.cid-uvQl6OlFqv .card-title,
.cid-uvQl6OlFqv .card-box {
  text-align: left;
}
.cid-urdxyOckvi {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-urdxyOckvi img {
  width: 120px;
  margin: auto;
}
.cid-urdxyOckvi .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-urdxyOckvi .card {
    max-width: 12.5%;
  }
}
.cid-urdxyOckvi .mbr-section-title {
  color: #008a3d;
}
.cid-uKlufnDbwR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uKlufnDbwR img {
  width: 120px;
  margin: auto;
}
.cid-uKlufnDbwR .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKlufnDbwR .card {
    max-width: 12.5%;
  }
}
.cid-uKlufnDbwR .mbr-section-title {
  color: #008a3d;
}
.cid-urdxFRGoKM {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #008a3d;
}
@media (max-width: 767px) {
  .cid-urdxFRGoKM .content {
    text-align: center;
  }
  .cid-urdxFRGoKM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-urdxFRGoKM .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-urdxFRGoKM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-urdxFRGoKM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-urdxFRGoKM .google-map {
  height: 25rem;
  position: relative;
}
.cid-urdxFRGoKM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-urdxFRGoKM .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-urdxFRGoKM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-urdxFRGoKM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-urdxFRGoKM .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urdxFRGoKM .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-urdxFRGoKM .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-urdxFRGoKM .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-urdxFRGoKM .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-urdxFRGoKM .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-urdxFRGoKM .list {
  list-style-type: none;
  padding: 0;
}
.cid-urdxFRGoKM .copyright > p {
  color: #bbbbbb;
}
.cid-ure3rfqZ9W .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-ure3rfqZ9W .my-float {
  margin-top: 16px;
}
.cid-ure3rfqZ9W P {
  color: #232323;
}
.cid-ure3rfqZ9W DIV {
  color: #ffffff;
}
.cid-ure3rfqZ9W H10 {
  color: #767676;
}
.cid-ure3rfqZ9W .hidden {
  display: none;
}
.cid-ure8PELRXu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ure8PELRXu nav.navbar {
  position: fixed;
}
.cid-ure8PELRXu .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-ure8PELRXu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ure8PELRXu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ure8PELRXu .dropdown-item:hover,
.cid-ure8PELRXu .dropdown-item:focus {
  background: #008a3d !important;
  color: white !important;
}
.cid-ure8PELRXu .dropdown-item:hover span {
  color: white;
}
.cid-ure8PELRXu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ure8PELRXu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ure8PELRXu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ure8PELRXu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ure8PELRXu .nav-link {
  position: relative;
}
.cid-ure8PELRXu .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ure8PELRXu .container {
    flex-wrap: wrap;
  }
}
.cid-ure8PELRXu .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ure8PELRXu .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ure8PELRXu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ure8PELRXu .dropdown-menu,
.cid-ure8PELRXu .navbar.opened {
  background: #ffffff !important;
}
.cid-ure8PELRXu .nav-item:focus,
.cid-ure8PELRXu .nav-link:focus {
  outline: none;
}
.cid-ure8PELRXu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ure8PELRXu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ure8PELRXu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ure8PELRXu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ure8PELRXu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ure8PELRXu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ure8PELRXu .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-ure8PELRXu .navbar.opened {
  transition: all 0.3s;
}
.cid-ure8PELRXu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ure8PELRXu .navbar .navbar-logo img {
  width: auto;
}
.cid-ure8PELRXu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ure8PELRXu .navbar.collapsed {
  justify-content: center;
}
.cid-ure8PELRXu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ure8PELRXu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ure8PELRXu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ure8PELRXu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ure8PELRXu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ure8PELRXu .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-ure8PELRXu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ure8PELRXu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ure8PELRXu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ure8PELRXu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ure8PELRXu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ure8PELRXu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ure8PELRXu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ure8PELRXu .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-ure8PELRXu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ure8PELRXu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ure8PELRXu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ure8PELRXu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ure8PELRXu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ure8PELRXu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ure8PELRXu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ure8PELRXu .navbar.navbar-short {
  min-height: 60px;
}
.cid-ure8PELRXu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ure8PELRXu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ure8PELRXu .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-ure8PELRXu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ure8PELRXu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ure8PELRXu .dropdown-item.active,
.cid-ure8PELRXu .dropdown-item:active {
  background-color: transparent;
}
.cid-ure8PELRXu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ure8PELRXu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ure8PELRXu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ure8PELRXu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ure8PELRXu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ure8PELRXu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ure8PELRXu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ure8PELRXu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ure8PELRXu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ure8PELRXu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ure8PELRXu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ure8PELRXu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ure8PELRXu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ure8PELRXu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ure8PELRXu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ure8PELRXu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ure8PELRXu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ure8PELRXu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ure8PELRXu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ure8PELRXu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ure8PELRXu .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-ure8PELRXu .navbar {
    height: 70px;
  }
  .cid-ure8PELRXu .navbar.opened {
    height: auto;
  }
  .cid-ure8PELRXu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ure912ylvc {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/quem-somos-interna.jpg");
}
.cid-ure912ylvc .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-ure912ylvc .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-ure912ylvc {
    align-items: flex-end;
  }
  .cid-ure912ylvc .row {
    justify-content: flex-start;
  }
  .cid-ure912ylvc .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ure912ylvc .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ure912ylvc {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ure912ylvc .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ure912ylvc .content-wrap {
    width: 100%;
  }
}
.cid-ure912ylvc .mbr-section-title {
  color: #e49230;
}
.cid-ure9oLAxJZ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ure9oLAxJZ .mbr-section-subtitle {
  color: #39655e;
}
.cid-uDoMjpyYmz {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uDoMjpyYmz .mbr-section-subtitle {
  color: #39655e;
}
.cid-uDoMjpyYmz .mbr-section-title {
  color: #008a3d;
}
.cid-ureb6p9WNP {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ureb6p9WNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ureb6p9WNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ureb6p9WNP ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-ureb6p9WNP li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-ureb6p9WNP ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #008a3d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-ureb6p9WNP H3 {
  color: #008a3d;
}
.cid-ure8PSSiIU {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #008a3d;
}
@media (max-width: 767px) {
  .cid-ure8PSSiIU .content {
    text-align: center;
  }
  .cid-ure8PSSiIU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ure8PSSiIU .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-ure8PSSiIU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ure8PSSiIU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-ure8PSSiIU .google-map {
  height: 25rem;
  position: relative;
}
.cid-ure8PSSiIU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ure8PSSiIU .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-ure8PSSiIU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ure8PSSiIU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ure8PSSiIU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ure8PSSiIU .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ure8PSSiIU .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ure8PSSiIU .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ure8PSSiIU .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ure8PSSiIU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ure8PSSiIU .list {
  list-style-type: none;
  padding: 0;
}
.cid-ure8PSSiIU .copyright > p {
  color: #bbbbbb;
}
.cid-ure8PWDaiu .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-ure8PWDaiu .my-float {
  margin-top: 16px;
}
.cid-ure8PWDaiu P {
  color: #232323;
}
.cid-ure8PWDaiu DIV {
  color: #ffffff;
}
.cid-ure8PWDaiu H10 {
  color: #767676;
}
.cid-ure8PWDaiu .hidden {
  display: none;
}
.cid-ureckXfpj1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ureckXfpj1 nav.navbar {
  position: fixed;
}
.cid-ureckXfpj1 .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-ureckXfpj1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ureckXfpj1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ureckXfpj1 .dropdown-item:hover,
.cid-ureckXfpj1 .dropdown-item:focus {
  background: #008a3d !important;
  color: white !important;
}
.cid-ureckXfpj1 .dropdown-item:hover span {
  color: white;
}
.cid-ureckXfpj1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ureckXfpj1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ureckXfpj1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ureckXfpj1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ureckXfpj1 .nav-link {
  position: relative;
}
.cid-ureckXfpj1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ureckXfpj1 .container {
    flex-wrap: wrap;
  }
}
.cid-ureckXfpj1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ureckXfpj1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ureckXfpj1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ureckXfpj1 .dropdown-menu,
.cid-ureckXfpj1 .navbar.opened {
  background: #ffffff !important;
}
.cid-ureckXfpj1 .nav-item:focus,
.cid-ureckXfpj1 .nav-link:focus {
  outline: none;
}
.cid-ureckXfpj1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ureckXfpj1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ureckXfpj1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ureckXfpj1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ureckXfpj1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ureckXfpj1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ureckXfpj1 .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-ureckXfpj1 .navbar.opened {
  transition: all 0.3s;
}
.cid-ureckXfpj1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ureckXfpj1 .navbar .navbar-logo img {
  width: auto;
}
.cid-ureckXfpj1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ureckXfpj1 .navbar.collapsed {
  justify-content: center;
}
.cid-ureckXfpj1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ureckXfpj1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ureckXfpj1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ureckXfpj1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ureckXfpj1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ureckXfpj1 .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-ureckXfpj1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ureckXfpj1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ureckXfpj1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ureckXfpj1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ureckXfpj1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ureckXfpj1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ureckXfpj1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ureckXfpj1 .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-ureckXfpj1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ureckXfpj1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ureckXfpj1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ureckXfpj1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ureckXfpj1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ureckXfpj1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ureckXfpj1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ureckXfpj1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ureckXfpj1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ureckXfpj1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ureckXfpj1 .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-ureckXfpj1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ureckXfpj1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ureckXfpj1 .dropdown-item.active,
.cid-ureckXfpj1 .dropdown-item:active {
  background-color: transparent;
}
.cid-ureckXfpj1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ureckXfpj1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ureckXfpj1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ureckXfpj1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ureckXfpj1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ureckXfpj1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ureckXfpj1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ureckXfpj1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ureckXfpj1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ureckXfpj1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ureckXfpj1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ureckXfpj1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ureckXfpj1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ureckXfpj1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ureckXfpj1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ureckXfpj1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ureckXfpj1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ureckXfpj1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ureckXfpj1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ureckXfpj1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ureckXfpj1 .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-ureckXfpj1 .navbar {
    height: 70px;
  }
  .cid-ureckXfpj1 .navbar.opened {
    height: auto;
  }
  .cid-ureckXfpj1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ureckYA9dr {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/quem-somos-interna.jpg");
}
.cid-ureckYA9dr .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-ureckYA9dr .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-ureckYA9dr {
    align-items: flex-end;
  }
  .cid-ureckYA9dr .row {
    justify-content: flex-start;
  }
  .cid-ureckYA9dr .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ureckYA9dr .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ureckYA9dr {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ureckYA9dr .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ureckYA9dr .content-wrap {
    width: 100%;
  }
}
.cid-ureckYA9dr .mbr-section-title {
  color: #e49230;
}
.cid-uFVj4jg0xI {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uFVj4jg0xI .mbr-section-subtitle {
  color: #39655e;
}
.cid-uFVj4jg0xI .mbr-section-title {
  color: #008a3d;
}
.cid-uFVj4jg0xI .mbr-text {
  text-align: left;
}
.cid-urecl2SJzA {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #008a3d;
}
@media (max-width: 767px) {
  .cid-urecl2SJzA .content {
    text-align: center;
  }
  .cid-urecl2SJzA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-urecl2SJzA .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-urecl2SJzA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-urecl2SJzA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-urecl2SJzA .google-map {
  height: 25rem;
  position: relative;
}
.cid-urecl2SJzA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-urecl2SJzA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-urecl2SJzA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-urecl2SJzA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-urecl2SJzA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urecl2SJzA .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-urecl2SJzA .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-urecl2SJzA .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-urecl2SJzA .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-urecl2SJzA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-urecl2SJzA .list {
  list-style-type: none;
  padding: 0;
}
.cid-urecl2SJzA .copyright > p {
  color: #bbbbbb;
}
.cid-urecl6DSyt .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-urecl6DSyt .my-float {
  margin-top: 16px;
}
.cid-urecl6DSyt P {
  color: #232323;
}
.cid-urecl6DSyt DIV {
  color: #ffffff;
}
.cid-urecl6DSyt H10 {
  color: #767676;
}
.cid-urecl6DSyt .hidden {
  display: none;
}
.cid-urehmu94dQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urehmu94dQ nav.navbar {
  position: fixed;
}
.cid-urehmu94dQ .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-urehmu94dQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urehmu94dQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urehmu94dQ .dropdown-item:hover,
.cid-urehmu94dQ .dropdown-item:focus {
  background: #008a3d !important;
  color: white !important;
}
.cid-urehmu94dQ .dropdown-item:hover span {
  color: white;
}
.cid-urehmu94dQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urehmu94dQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urehmu94dQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urehmu94dQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urehmu94dQ .nav-link {
  position: relative;
}
.cid-urehmu94dQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-urehmu94dQ .container {
    flex-wrap: wrap;
  }
}
.cid-urehmu94dQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-urehmu94dQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-urehmu94dQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urehmu94dQ .dropdown-menu,
.cid-urehmu94dQ .navbar.opened {
  background: #ffffff !important;
}
.cid-urehmu94dQ .nav-item:focus,
.cid-urehmu94dQ .nav-link:focus {
  outline: none;
}
.cid-urehmu94dQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urehmu94dQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urehmu94dQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urehmu94dQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urehmu94dQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urehmu94dQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urehmu94dQ .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-urehmu94dQ .navbar.opened {
  transition: all 0.3s;
}
.cid-urehmu94dQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urehmu94dQ .navbar .navbar-logo img {
  width: auto;
}
.cid-urehmu94dQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urehmu94dQ .navbar.collapsed {
  justify-content: center;
}
.cid-urehmu94dQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urehmu94dQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urehmu94dQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-urehmu94dQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urehmu94dQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urehmu94dQ .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-urehmu94dQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urehmu94dQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urehmu94dQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urehmu94dQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urehmu94dQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urehmu94dQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urehmu94dQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urehmu94dQ .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-urehmu94dQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urehmu94dQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urehmu94dQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urehmu94dQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urehmu94dQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urehmu94dQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urehmu94dQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urehmu94dQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-urehmu94dQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urehmu94dQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urehmu94dQ .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-urehmu94dQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urehmu94dQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urehmu94dQ .dropdown-item.active,
.cid-urehmu94dQ .dropdown-item:active {
  background-color: transparent;
}
.cid-urehmu94dQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urehmu94dQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urehmu94dQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urehmu94dQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urehmu94dQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urehmu94dQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urehmu94dQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urehmu94dQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urehmu94dQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urehmu94dQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urehmu94dQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urehmu94dQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urehmu94dQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urehmu94dQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urehmu94dQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urehmu94dQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urehmu94dQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urehmu94dQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urehmu94dQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urehmu94dQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urehmu94dQ .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-urehmu94dQ .navbar {
    height: 70px;
  }
  .cid-urehmu94dQ .navbar.opened {
    height: auto;
  }
  .cid-urehmu94dQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urehmvcdgm {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/quem-somos-interna.jpg");
}
.cid-urehmvcdgm .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-urehmvcdgm .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-urehmvcdgm {
    align-items: flex-end;
  }
  .cid-urehmvcdgm .row {
    justify-content: flex-start;
  }
  .cid-urehmvcdgm .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-urehmvcdgm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-urehmvcdgm {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-urehmvcdgm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-urehmvcdgm .content-wrap {
    width: 100%;
  }
}
.cid-urehmvcdgm .mbr-section-title {
  color: #e49230;
}
.cid-urehmvMIoB {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urehmvMIoB .mbr-section-subtitle {
  color: #39655e;
}
.cid-urehmxbocu {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #008a3d;
}
@media (max-width: 767px) {
  .cid-urehmxbocu .content {
    text-align: center;
  }
  .cid-urehmxbocu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-urehmxbocu .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-urehmxbocu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-urehmxbocu .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-urehmxbocu .google-map {
  height: 25rem;
  position: relative;
}
.cid-urehmxbocu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-urehmxbocu .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-urehmxbocu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-urehmxbocu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-urehmxbocu .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urehmxbocu .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-urehmxbocu .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-urehmxbocu .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-urehmxbocu .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-urehmxbocu .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-urehmxbocu .list {
  list-style-type: none;
  padding: 0;
}
.cid-urehmxbocu .copyright > p {
  color: #bbbbbb;
}
.cid-urehmyyt7X .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-urehmyyt7X .my-float {
  margin-top: 16px;
}
.cid-urehmyyt7X P {
  color: #232323;
}
.cid-urehmyyt7X DIV {
  color: #ffffff;
}
.cid-urehmyyt7X H10 {
  color: #767676;
}
.cid-urehmyyt7X .hidden {
  display: none;
}
.cid-uvURwgfEJK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvURwgfEJK nav.navbar {
  position: fixed;
}
.cid-uvURwgfEJK .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-uvURwgfEJK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvURwgfEJK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvURwgfEJK .dropdown-item:hover,
.cid-uvURwgfEJK .dropdown-item:focus {
  background: #008a3d !important;
  color: white !important;
}
.cid-uvURwgfEJK .dropdown-item:hover span {
  color: white;
}
.cid-uvURwgfEJK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvURwgfEJK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvURwgfEJK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvURwgfEJK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvURwgfEJK .nav-link {
  position: relative;
}
.cid-uvURwgfEJK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvURwgfEJK .container {
    flex-wrap: wrap;
  }
}
.cid-uvURwgfEJK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvURwgfEJK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvURwgfEJK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvURwgfEJK .dropdown-menu,
.cid-uvURwgfEJK .navbar.opened {
  background: #ffffff !important;
}
.cid-uvURwgfEJK .nav-item:focus,
.cid-uvURwgfEJK .nav-link:focus {
  outline: none;
}
.cid-uvURwgfEJK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvURwgfEJK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvURwgfEJK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvURwgfEJK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvURwgfEJK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvURwgfEJK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvURwgfEJK .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-uvURwgfEJK .navbar.opened {
  transition: all 0.3s;
}
.cid-uvURwgfEJK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvURwgfEJK .navbar .navbar-logo img {
  width: auto;
}
.cid-uvURwgfEJK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvURwgfEJK .navbar.collapsed {
  justify-content: center;
}
.cid-uvURwgfEJK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvURwgfEJK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvURwgfEJK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uvURwgfEJK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvURwgfEJK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvURwgfEJK .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-uvURwgfEJK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvURwgfEJK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvURwgfEJK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvURwgfEJK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvURwgfEJK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvURwgfEJK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvURwgfEJK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvURwgfEJK .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-uvURwgfEJK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvURwgfEJK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvURwgfEJK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvURwgfEJK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvURwgfEJK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvURwgfEJK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvURwgfEJK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvURwgfEJK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvURwgfEJK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvURwgfEJK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvURwgfEJK .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-uvURwgfEJK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvURwgfEJK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvURwgfEJK .dropdown-item.active,
.cid-uvURwgfEJK .dropdown-item:active {
  background-color: transparent;
}
.cid-uvURwgfEJK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvURwgfEJK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvURwgfEJK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvURwgfEJK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvURwgfEJK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvURwgfEJK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvURwgfEJK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvURwgfEJK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvURwgfEJK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvURwgfEJK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvURwgfEJK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvURwgfEJK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvURwgfEJK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvURwgfEJK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvURwgfEJK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvURwgfEJK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvURwgfEJK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvURwgfEJK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvURwgfEJK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvURwgfEJK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvURwgfEJK .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-uvURwgfEJK .navbar {
    height: 70px;
  }
  .cid-uvURwgfEJK .navbar.opened {
    height: auto;
  }
  .cid-uvURwgfEJK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvURwgBP8E {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/quem-somos-interna.jpg");
}
.cid-uvURwgBP8E .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-uvURwgBP8E .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uvURwgBP8E {
    align-items: flex-end;
  }
  .cid-uvURwgBP8E .row {
    justify-content: flex-start;
  }
  .cid-uvURwgBP8E .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uvURwgBP8E .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uvURwgBP8E {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uvURwgBP8E .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uvURwgBP8E .content-wrap {
    width: 100%;
  }
}
.cid-uvURwgBP8E .mbr-section-title {
  color: #e49230;
}
.cid-uvURwgVBzt {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvURwgVBzt .mbr-section-subtitle {
  color: #39655e;
}
.cid-uvURwgVBzt .mbr-section-title {
  color: #008a3d;
}
.cid-uKlwm2S6xV {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKlwm2S6xV .carousel {
    min-height: 800px;
  }
  .cid-uKlwm2S6xV .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uKlwm2S6xV .carousel {
    min-height: 520px;
  }
  .cid-uKlwm2S6xV .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uKlwm2S6xV .carousel {
    min-height: 440px;
  }
  .cid-uKlwm2S6xV .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-uKlwm2S6xV .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uKlwm2S6xV .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uKlwm2S6xV .carousel,
.cid-uKlwm2S6xV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKlwm2S6xV .item-wrapper {
  width: 100%;
}
.cid-uKlwm2S6xV .carousel-caption {
  bottom: 40px;
}
.cid-uKlwm2S6xV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uKlwm2S6xV .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uKlwm2S6xV .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uKlwm2S6xV .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uKlwm2S6xV .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uKlwm2S6xV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKlwm2S6xV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKlwm2S6xV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKlwm2S6xV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uKlwm2S6xV .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uKlwm2S6xV .carousel-indicators li.active,
.cid-uKlwm2S6xV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKlwm2S6xV .carousel-indicators li::after,
.cid-uKlwm2S6xV .carousel-indicators li::before {
  content: none;
}
.cid-uKlwm2S6xV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKlwm2S6xV .carousel-indicators {
    display: none !important;
  }
}
.cid-uvURwhOa9u {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #008a3d;
}
@media (max-width: 767px) {
  .cid-uvURwhOa9u .content {
    text-align: center;
  }
  .cid-uvURwhOa9u .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uvURwhOa9u .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uvURwhOa9u .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uvURwhOa9u .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uvURwhOa9u .google-map {
  height: 25rem;
  position: relative;
}
.cid-uvURwhOa9u .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uvURwhOa9u .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uvURwhOa9u .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uvURwhOa9u .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uvURwhOa9u .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uvURwhOa9u .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uvURwhOa9u .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uvURwhOa9u .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uvURwhOa9u .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uvURwhOa9u .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uvURwhOa9u .list {
  list-style-type: none;
  padding: 0;
}
.cid-uvURwhOa9u .copyright > p {
  color: #bbbbbb;
}
.cid-uvURwiAvjT .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-uvURwiAvjT .my-float {
  margin-top: 16px;
}
.cid-uvURwiAvjT P {
  color: #232323;
}
.cid-uvURwiAvjT DIV {
  color: #ffffff;
}
.cid-uvURwiAvjT H10 {
  color: #767676;
}
.cid-uvURwiAvjT .hidden {
  display: none;
}
.cid-uvQKIuPyBK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvQKIuPyBK nav.navbar {
  position: fixed;
}
.cid-uvQKIuPyBK .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-uvQKIuPyBK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvQKIuPyBK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvQKIuPyBK .dropdown-item:hover,
.cid-uvQKIuPyBK .dropdown-item:focus {
  background: #008a3d !important;
  color: white !important;
}
.cid-uvQKIuPyBK .dropdown-item:hover span {
  color: white;
}
.cid-uvQKIuPyBK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvQKIuPyBK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvQKIuPyBK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvQKIuPyBK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvQKIuPyBK .nav-link {
  position: relative;
}
.cid-uvQKIuPyBK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvQKIuPyBK .container {
    flex-wrap: wrap;
  }
}
.cid-uvQKIuPyBK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvQKIuPyBK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvQKIuPyBK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvQKIuPyBK .dropdown-menu,
.cid-uvQKIuPyBK .navbar.opened {
  background: #ffffff !important;
}
.cid-uvQKIuPyBK .nav-item:focus,
.cid-uvQKIuPyBK .nav-link:focus {
  outline: none;
}
.cid-uvQKIuPyBK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvQKIuPyBK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvQKIuPyBK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvQKIuPyBK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvQKIuPyBK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvQKIuPyBK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvQKIuPyBK .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-uvQKIuPyBK .navbar.opened {
  transition: all 0.3s;
}
.cid-uvQKIuPyBK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvQKIuPyBK .navbar .navbar-logo img {
  width: auto;
}
.cid-uvQKIuPyBK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvQKIuPyBK .navbar.collapsed {
  justify-content: center;
}
.cid-uvQKIuPyBK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvQKIuPyBK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvQKIuPyBK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uvQKIuPyBK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvQKIuPyBK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvQKIuPyBK .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-uvQKIuPyBK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvQKIuPyBK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvQKIuPyBK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvQKIuPyBK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvQKIuPyBK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvQKIuPyBK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvQKIuPyBK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvQKIuPyBK .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-uvQKIuPyBK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvQKIuPyBK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvQKIuPyBK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvQKIuPyBK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvQKIuPyBK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvQKIuPyBK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvQKIuPyBK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvQKIuPyBK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvQKIuPyBK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvQKIuPyBK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvQKIuPyBK .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-uvQKIuPyBK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvQKIuPyBK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvQKIuPyBK .dropdown-item.active,
.cid-uvQKIuPyBK .dropdown-item:active {
  background-color: transparent;
}
.cid-uvQKIuPyBK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvQKIuPyBK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvQKIuPyBK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvQKIuPyBK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvQKIuPyBK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvQKIuPyBK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvQKIuPyBK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvQKIuPyBK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvQKIuPyBK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvQKIuPyBK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvQKIuPyBK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvQKIuPyBK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvQKIuPyBK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvQKIuPyBK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvQKIuPyBK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvQKIuPyBK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvQKIuPyBK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvQKIuPyBK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvQKIuPyBK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvQKIuPyBK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvQKIuPyBK .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-uvQKIuPyBK .navbar {
    height: 70px;
  }
  .cid-uvQKIuPyBK .navbar.opened {
    height: auto;
  }
  .cid-uvQKIuPyBK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvQKIvfrj9 {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/quem-somos-interna.jpg");
}
.cid-uvQKIvfrj9 .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-uvQKIvfrj9 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uvQKIvfrj9 {
    align-items: flex-end;
  }
  .cid-uvQKIvfrj9 .row {
    justify-content: flex-start;
  }
  .cid-uvQKIvfrj9 .content-wrap {
    width: 64%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uvQKIvfrj9 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uvQKIvfrj9 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uvQKIvfrj9 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uvQKIvfrj9 .content-wrap {
    width: 100%;
  }
}
.cid-uvQKIvfrj9 .mbr-section-title {
  color: #e49230;
}
.cid-uvQKIvAJtd {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uvQKIvAJtd .mbr-section-subtitle {
  color: #39655e;
}
.cid-uvQKIvAJtd .mbr-section-title {
  color: #008a3d;
}
.cid-uvQKIwp6Zg {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #008a3d;
}
@media (max-width: 767px) {
  .cid-uvQKIwp6Zg .content {
    text-align: center;
  }
  .cid-uvQKIwp6Zg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uvQKIwp6Zg .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uvQKIwp6Zg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uvQKIwp6Zg .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uvQKIwp6Zg .google-map {
  height: 25rem;
  position: relative;
}
.cid-uvQKIwp6Zg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uvQKIwp6Zg .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uvQKIwp6Zg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uvQKIwp6Zg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uvQKIwp6Zg .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uvQKIwp6Zg .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uvQKIwp6Zg .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uvQKIwp6Zg .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uvQKIwp6Zg .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uvQKIwp6Zg .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uvQKIwp6Zg .list {
  list-style-type: none;
  padding: 0;
}
.cid-uvQKIwp6Zg .copyright > p {
  color: #bbbbbb;
}
.cid-uvQKIwYMGy .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-uvQKIwYMGy .my-float {
  margin-top: 16px;
}
.cid-uvQKIwYMGy P {
  color: #232323;
}
.cid-uvQKIwYMGy DIV {
  color: #ffffff;
}
.cid-uvQKIwYMGy H10 {
  color: #767676;
}
.cid-uvQKIwYMGy .hidden {
  display: none;
}
.cid-uvQcm8CQLK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvQcm8CQLK nav.navbar {
  position: fixed;
}
.cid-uvQcm8CQLK .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-uvQcm8CQLK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvQcm8CQLK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvQcm8CQLK .dropdown-item:hover,
.cid-uvQcm8CQLK .dropdown-item:focus {
  background: #008a3d !important;
  color: white !important;
}
.cid-uvQcm8CQLK .dropdown-item:hover span {
  color: white;
}
.cid-uvQcm8CQLK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvQcm8CQLK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvQcm8CQLK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvQcm8CQLK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvQcm8CQLK .nav-link {
  position: relative;
}
.cid-uvQcm8CQLK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvQcm8CQLK .container {
    flex-wrap: wrap;
  }
}
.cid-uvQcm8CQLK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvQcm8CQLK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvQcm8CQLK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvQcm8CQLK .dropdown-menu,
.cid-uvQcm8CQLK .navbar.opened {
  background: #ffffff !important;
}
.cid-uvQcm8CQLK .nav-item:focus,
.cid-uvQcm8CQLK .nav-link:focus {
  outline: none;
}
.cid-uvQcm8CQLK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvQcm8CQLK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvQcm8CQLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvQcm8CQLK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvQcm8CQLK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvQcm8CQLK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvQcm8CQLK .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-uvQcm8CQLK .navbar.opened {
  transition: all 0.3s;
}
.cid-uvQcm8CQLK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvQcm8CQLK .navbar .navbar-logo img {
  width: auto;
}
.cid-uvQcm8CQLK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvQcm8CQLK .navbar.collapsed {
  justify-content: center;
}
.cid-uvQcm8CQLK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvQcm8CQLK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvQcm8CQLK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uvQcm8CQLK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvQcm8CQLK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvQcm8CQLK .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-uvQcm8CQLK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvQcm8CQLK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvQcm8CQLK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvQcm8CQLK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvQcm8CQLK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvQcm8CQLK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvQcm8CQLK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvQcm8CQLK .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-uvQcm8CQLK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvQcm8CQLK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvQcm8CQLK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvQcm8CQLK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvQcm8CQLK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvQcm8CQLK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvQcm8CQLK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvQcm8CQLK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvQcm8CQLK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvQcm8CQLK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvQcm8CQLK .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-uvQcm8CQLK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvQcm8CQLK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvQcm8CQLK .dropdown-item.active,
.cid-uvQcm8CQLK .dropdown-item:active {
  background-color: transparent;
}
.cid-uvQcm8CQLK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvQcm8CQLK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvQcm8CQLK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvQcm8CQLK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uvQcm8CQLK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvQcm8CQLK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvQcm8CQLK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvQcm8CQLK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvQcm8CQLK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvQcm8CQLK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvQcm8CQLK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvQcm8CQLK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvQcm8CQLK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvQcm8CQLK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvQcm8CQLK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvQcm8CQLK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvQcm8CQLK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvQcm8CQLK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvQcm8CQLK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvQcm8CQLK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvQcm8CQLK .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-uvQcm8CQLK .navbar {
    height: 70px;
  }
  .cid-uvQcm8CQLK .navbar.opened {
    height: auto;
  }
  .cid-uvQcm8CQLK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvQcm8ZoRh {
  display: flex;
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/quem-somos-interna.jpg");
}
.cid-uvQcm8ZoRh .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-uvQcm8ZoRh .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uvQcm8ZoRh {
    align-items: flex-end;
  }
  .cid-uvQcm8ZoRh .row {
    justify-content: flex-start;
  }
  .cid-uvQcm8ZoRh .content-wrap {
    width: 64%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uvQcm8ZoRh .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uvQcm8ZoRh {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uvQcm8ZoRh .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uvQcm8ZoRh .content-wrap {
    width: 100%;
  }
}
.cid-uvQcm8ZoRh .mbr-section-title {
  color: #e49230;
}
.cid-uFVisef8xH {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uFVisef8xH .mbr-section-subtitle {
  color: #39655e;
}
.cid-uFVisef8xH .mbr-section-title {
  color: #008a3d;
}
.cid-uvQcm9TGWs {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #008a3d;
}
@media (max-width: 767px) {
  .cid-uvQcm9TGWs .content {
    text-align: center;
  }
  .cid-uvQcm9TGWs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uvQcm9TGWs .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uvQcm9TGWs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uvQcm9TGWs .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uvQcm9TGWs .google-map {
  height: 25rem;
  position: relative;
}
.cid-uvQcm9TGWs .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uvQcm9TGWs .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uvQcm9TGWs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uvQcm9TGWs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uvQcm9TGWs .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uvQcm9TGWs .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uvQcm9TGWs .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uvQcm9TGWs .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uvQcm9TGWs .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uvQcm9TGWs .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uvQcm9TGWs .list {
  list-style-type: none;
  padding: 0;
}
.cid-uvQcm9TGWs .copyright > p {
  color: #bbbbbb;
}
.cid-uvQcmayXR9 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-uvQcmayXR9 .my-float {
  margin-top: 16px;
}
.cid-uvQcmayXR9 P {
  color: #232323;
}
.cid-uvQcmayXR9 DIV {
  color: #ffffff;
}
.cid-uvQcmayXR9 H10 {
  color: #767676;
}
.cid-uvQcmayXR9 .hidden {
  display: none;
}
