body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3.4rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 5.44rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.2rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #003910 !important;
}
.bg-success {
  background-color: #00a13a !important;
}
.bg-info {
  background-color: #f7ed4a !important;
}
.bg-warning {
  background-color: #ff0000 !important;
}
.bg-danger {
  background-color: #767676 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #003910 !important;
  border-color: #003910 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success,
.btn-success:active {
  background-color: #00a13a !important;
  border-color: #00a13a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #00551e !important;
  border-color: #00551e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00551e !important;
  border-color: #00551e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b30000 !important;
  border-color: #b30000 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b30000 !important;
  border-color: #b30000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #003910;
  border-color: #003910;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #003910 !important;
  border-color: #003910 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #003b15;
  color: #003b15;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #00a13a;
  border-color: #00a13a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #00a13a !important;
  border-color: #00a13a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #990000;
  color: #990000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #ff0000;
  border-color: #ff0000;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #003910 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #00a13a !important;
}
.text-info {
  color: #f7ed4a !important;
}
.text-warning {
  color: #ff0000 !important;
}
.text-danger {
  color: #767676 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #003b15 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #d2c609 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #990000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #434343 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f7ed4a;
}
.alert-warning {
  background-color: #ff0000;
}
.alert-danger {
  background-color: #767676;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #003910;
  border-color: #003910;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #003910;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #20ff5e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #21ff71;
}
.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: #ffcccc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b6b6b6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #003910;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #003910;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #003910;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #003910;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #003910;
  border-bottom-color: #003910;
}
.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: #003910 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23003910' %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.3;
}
.cid-qYxAWF1ho3 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-qYxAWF1ho3 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qYxAWF1ho3 a {
  font-style: normal;
}
.cid-qYxAWF1ho3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qYxAWF1ho3 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qYxAWF1ho3 .nav-item:focus,
.cid-qYxAWF1ho3 .nav-link:focus {
  outline: none;
}
.cid-qYxAWF1ho3 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qYxAWF1ho3 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qYxAWF1ho3 .menu-logo {
  margin-right: auto;
}
.cid-qYxAWF1ho3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qYxAWF1ho3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qYxAWF1ho3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qYxAWF1ho3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qYxAWF1ho3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qYxAWF1ho3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qYxAWF1ho3 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qYxAWF1ho3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qYxAWF1ho3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qYxAWF1ho3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qYxAWF1ho3 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qYxAWF1ho3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qYxAWF1ho3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qYxAWF1ho3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qYxAWF1ho3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qYxAWF1ho3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qYxAWF1ho3 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qYxAWF1ho3 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qYxAWF1ho3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qYxAWF1ho3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qYxAWF1ho3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qYxAWF1ho3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qYxAWF1ho3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qYxAWF1ho3 button.navbar-toggler:focus {
  outline: none;
}
.cid-qYxAWF1ho3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #003910;
}
.cid-qYxAWF1ho3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qYxAWF1ho3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qYxAWF1ho3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qYxAWF1ho3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qYxAWF1ho3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qYxAWF1ho3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qYxAWF1ho3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qYxAWF1ho3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qYxAWF1ho3 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qYxAWF1ho3 .collapsed .btn {
  display: flex;
}
.cid-qYxAWF1ho3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.collapsing,
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qYxAWF1ho3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qYxAWF1ho3 .collapsed button.navbar-toggler {
  display: block;
}
.cid-qYxAWF1ho3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qYxAWF1ho3 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qYxAWF1ho3 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qYxAWF1ho3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qYxAWF1ho3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qYxAWF1ho3 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qYxAWF1ho3.navbar-expand {
    flex-direction: column;
  }
  .cid-qYxAWF1ho3 img {
    height: 3.8rem !important;
  }
  .cid-qYxAWF1ho3 .btn {
    display: flex;
  }
  .cid-qYxAWF1ho3 button.navbar-toggler {
    display: block;
  }
  .cid-qYxAWF1ho3 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qYxAWF1ho3 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qYxAWF1ho3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qYxAWF1ho3 .navbar-collapse.collapsing,
  .cid-qYxAWF1ho3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qYxAWF1ho3 .navbar-collapse.collapsing .navbar-nav,
  .cid-qYxAWF1ho3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qYxAWF1ho3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qYxAWF1ho3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qYxAWF1ho3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qYxAWF1ho3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qYxAWF1ho3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qYxAWF1ho3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qYxAWF1ho3 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qYxAWF1ho3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qYxAWF1ho3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qYxAWF1ho3 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-qYxAWF1ho3 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qYxAWF1ho3 .navbar-collapse {
  flex-basis: auto;
}
.cid-qYxAWF1ho3 .nav-link:hover,
.cid-qYxAWF1ho3 .dropdown-item:hover {
  color: #357000 !important;
}
.cid-qYxCe5y19W {
  background-image: url("../../../assets/images/eco-serv-curitiba-1600x1200.webp");
}
.cid-qYxCe5y19W .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-qYxCe5y19W .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-qYxCe5y19W .mbr-figure img {
    width: 100% !important;
  }
}
.cid-qYxCe5y19W H1 {
  color: #000000;
}
.cid-qYxCe5y19W .mbr-text,
.cid-qYxCe5y19W .mbr-section-btn {
  color: #000000;
}
.cid-qYxCe5y19W H3 {
  color: #003910;
}
.cid-u5OK3THUo7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u5OK3THUo7 .container-fluid {
  padding: 0 3rem;
}
.cid-u5OK3THUo7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #003910 50%, #000000 120%);
  display: inline-block;
}
.cid-u5OK3THUo7 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-u5OK3THUo7 .header-text {
  padding: 2rem 1rem !important;
}
.cid-u5OK3THUo7 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-u5OK3THUo7 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-u5OK3THUo7 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-u5OK3THUo7 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-u5OK3THUo7 .card .card-header a.panel-title:hover .sign {
  background-color: #ff0000 !important;
}
.cid-u5OK3THUo7 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #003910;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-u5OK3THUo7 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-u5OK3THUo7 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-u5OK3THUo7 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-u5OK3THUo7 .container-fluid {
    padding: 0 1rem;
  }
  .cid-u5OK3THUo7 .header-text {
    padding: 1rem !important;
  }
  .cid-u5OK3THUo7 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-u5OK3THUo7 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-u5OK3THUo7 .panel-group {
    padding: 0;
  }
}
.cid-u5OK3THUo7 .header-text,
.cid-u5OK3THUo7 .sign {
  color: #232323;
  text-align: center;
}
.cid-ulPvWVTIBG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ulPvWVTIBG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulPvWVTIBG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulPvWVTIBG .mbr-section-title,
.cid-ulPvWVTIBG .mbr-text,
.cid-ulPvWVTIBG .mbr-section-btn {
  text-align: center;
}
.cid-ulPvWVTIBG .video-wrapper {
  margin: auto;
}
.cid-ulPvWVTIBG .video-wrapper iframe {
  width: 100%;
}
.cid-qYxJ9j926g {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-qYxJ9j926g .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-qYxJ9j926g H2 {
  color: #ffffff;
}
.cid-qYyQCevPka {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-qYyQCevPka h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qYyQCevPka p {
  color: #767676;
  text-align: left;
}
.cid-qYyQCevPka .card-box {
  padding-top: 2rem;
}
.cid-qYyQCevPka .card-wrapper {
  height: 100%;
}
.cid-qYyQCevPka .card-title {
  color: #ffffff;
}
.cid-qYxJxCWxYt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qYxJxCWxYt .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qYxJxCWxYt .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qYxJxCWxYt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-qYxKiw0TZ9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qYxKiw0TZ9 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qYxKiw0TZ9 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qYxKiw0TZ9 .mbr-text {
  color: #000000;
}
.cid-qYxKO91LDK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/corte-e-poda-arvores-ctba-16-1280x768.webp");
}
.cid-qYxKO91LDK .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-qYxKO91LDK .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid #ffffff;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-qYxKO91LDK .nav-tabs .nav-link:hover {
  background-color: #003910;
}
.cid-qYxKO91LDK .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #003910;
}
.cid-qYxKO91LDK .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #003910;
}
.cid-qYxKO91LDK .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-qYxKO91LDK .mbr-section-subtitle {
  color: #767676;
}
.cid-qYxKO91LDK p {
  color: #767676;
}
.cid-qYxKO91LDK .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-qYxKO91LDK .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-qYxKO91LDK .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-qYxKO91LDK P {
  color: #ffffff;
}
.cid-qYxKO91LDK H2 {
  color: #ffffff;
}
.cid-tYCteASz4e {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-tYCteASz4e p {
  color: #767676;
}
.cid-tYCteASz4e .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tYCteASz4e .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tYCteASz4e .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYCteASz4e .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYCteASz4e .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-tYCteASz4e .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-qYxPBedKCt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/corte-e-poda-arvores-ctba-8-1280x768.webp");
}
.cid-qYxPBedKCt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qYxPBedKCt .btn {
  margin: 0 0 .5rem 0;
}
.cid-qYxPBedKCt H2 {
  color: #ffffff;
}
.cid-tNCLp6ISR8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 3px solid #003910;
  border-bottom: 3px solid #003910;
  margin-top: -3px;
  background-image: url("../../../assets/images/background2-1.webp");
}
.cid-tNCLp6ISR8 .info {
  width: fit-content;
  border-radius: 20px;
  background-color: #003910;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 65px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-tNCLp6ISR8 .info .display-7 {
    font-size: 23.8px;
  }
}
.cid-tNCLp6ISR8 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tNCLp6ISR8 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tNCLp6ISR8 .card-wrap {
  border-radius: 20px;
  max-width: 380px;
  height: 380px;
}
@media (max-width: 991px) {
  .cid-tNCLp6ISR8 .card-wrap {
    max-width: 230px;
    height: 230px;
  }
}
.cid-tNCLp6ISR8 .card-wrap .image-wrap img {
  border-radius: 20px;
  border: 3px solid #000;
  width: 380px;
  height: 380px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tNCLp6ISR8 .card-wrap .image-wrap img {
    width: 230px;
    height: 230px;
  }
}
.cid-tNCLp6ISR8 .card-wrap .image-wrap img:hover {
  border: 3px solid #fff;
}
.cid-tNCLp6ISR8 .button {
  margin: 100px auto 0;
}
@media (max-width: 767px) {
  .cid-tNCLp6ISR8 .button {
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tNCLp6ISR8 .button {
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  .cid-tNCLp6ISR8 .button {
    justify-content: space-between;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .cid-tNCLp6ISR8 .button {
    max-width: 1000px;
  }
}
@media (min-width: 1400px) {
  .cid-tNCLp6ISR8 .button {
    max-width: 1200px;
  }
}
.cid-tNCLp6ISR8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 991px) {
  .cid-tNCLp6ISR8 .embla__slide {
    min-width: 250px;
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .cid-tNCLp6ISR8 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tNCLp6ISR8 .embla__button--next,
.cid-tNCLp6ISR8 .embla__button--prev {
  display: flex;
}
.cid-tNCLp6ISR8 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tNCLp6ISR8 .embla__button {
    display: none;
  }
}
.cid-tNCLp6ISR8 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tNCLp6ISR8 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tNCLp6ISR8 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNCLp6ISR8 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNCLp6ISR8 .embla__button {
    top: auto;
  }
}
.cid-tNCLp6ISR8 .embla {
  position: relative;
  width: 100%;
}
.cid-tNCLp6ISR8 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tNCLp6ISR8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tNCLp6ISR8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tNCLp6ISR8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tNCLp6ISR8 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-tNCLp6ISR8 .mbr-section-btn {
    margin-left: 0;
    margin-right: .5rem;
  }
}
@media (min-width: 992px) {
  .cid-tNCLp6ISR8 .mbr-section-btn {
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-tNCLp6ISR8 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tNCLp6ISR8 .btn:hover,
.cid-tNCLp6ISR8 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-tNCLp6ISR8 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tNCLp6ISR8 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tNCLp6ISR8 .btn:hover:before,
.cid-tNCLp6ISR8 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-tNCLp6ISR8 .btn-secondary {
  color: #000000 !important;
}
.cid-tNCLp6ISR8 .btn-secondary:hover {
  color: #000000 !important;
}
@media (max-width: 991px) {
  .cid-tNCLp6ISR8 .icon {
    display: none;
  }
}
.cid-tNCLp6ISR8 .mbr-info {
  color: #ffffff;
}
.cid-tNCQHgWSCN {
  background: #003910;
  padding-top: 60px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #003910, #ffffff);
}
.cid-tNCQHgWSCN .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tNCQHgWSCN .video-block {
    width: 100% !important;
  }
}
.cid-sJbF685UKs {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #003910;
}
.cid-sJbF685UKs img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.cid-sJbF685UKs .row {
  justify-content: center;
}
.cid-sJbF685UKs .img-wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-sJbF685UKs .img-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-sJbF685UKs .img-wrap:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: black;
  opacity: 0;
}
.cid-sJbF685UKs .img-wrap:hover:before {
  opacity: 0.2;
}
.cid-sJbF685UKs .img-wrap:hover span {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-sJbF685UKs .col-lg-x {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-sJbF685UKs .item {
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sJbF685UKs .item {
    padding: 0.5rem;
  }
  .cid-sJbF685UKs .row {
    padding: 0 0.5rem;
  }
}
.cid-sJbF685UKs .btn {
  border-radius: 0;
}
.cid-sJbF685UKs .btn .mbr-iconfont {
  font-size: 1rem!important;
  margin: 0 0.5rem;
}
.cid-qYxTnFA8gI {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qYxTnFA8gI .image-block {
  margin: auto;
}
.cid-qYxTnFA8gI figcaption {
  position: relative;
}
.cid-qYxTnFA8gI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-qYxTnFA8gI .image-block {
    width: 100% !important;
  }
}
.cid-qYxQkRm9LX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qYxQkRm9LX .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qYxQkRm9LX .input {
  margin-bottom: 15px;
}
.cid-qYxQkRm9LX .map {
  width: 100%;
  height: 30rem;
}
.cid-qYxQkRm9LX .map iframe {
  width: inherit;
  height: 100%;
}
.cid-qYxQkRm9LX .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-qYxQkRm9LX .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qYxQkRm9LX .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-qYxQkRm9LX .mbr-text {
  color: #767676;
}
.cid-qYxQkRm9LX a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qYxQkRm9LX .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qYxQkRm9LX .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qYxQkRm9LX .google-map {
  height: 25rem;
  position: relative;
}
.cid-qYxQkRm9LX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qYxQkRm9LX .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-qYxQkRm9LX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qYxQkRm9LX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-qYxQkRm9LX h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qYxQkRm9LX .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qYxQkRm9LX .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-ucAmRqLfZn {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #003910;
}
.cid-ucAmRqLfZn .row {
  position: relative;
}
.cid-ucAmRqLfZn .row .blur-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #ffffff 50%, #003910);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-ucAmRqLfZn .row .blur-circle {
    display: none;
  }
}
.cid-ucAmRqLfZn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucAmRqLfZn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucAmRqLfZn .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucAmRqLfZn .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-ucAmRqLfZn .row {
    padding: 0 24px;
  }
}
.cid-ucAmRqLfZn .title-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.cid-ucAmRqLfZn .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucAmRqLfZn .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-ucAmRqLfZn .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #000000;
  z-index: -1;
}
.cid-ucAmRqLfZn .tab-content {
  position: relative;
  z-index: 2;
}
.cid-ucAmRqLfZn .tab-content .card {
  border: none;
  padding: 38px 0 26px;
  border-bottom: 2px solid #111111;
  border-radius: 0;
}
.cid-ucAmRqLfZn .tab-content .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-ucAmRqLfZn .tab-content .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-ucAmRqLfZn .tab-content .card .card-header .panel-title:focus .mbr-iconfont {
  opacity: .7;
}
.cid-ucAmRqLfZn .tab-content .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 10px;
}
.cid-ucAmRqLfZn .tab-content .card .card-header .panel-title .mbr-iconfont {
  transition: all .3s ease;
}
.cid-ucAmRqLfZn .tab-content .card .panel-collapse .panel-body .panel-text {
  margin: 0;
}
.cid-ucAmRqLfZn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucAmRqLfZn .mbr-text {
  color: #111111;
  text-align: right;
}
.cid-ucAmRqLfZn .panel-title-edit,
.cid-ucAmRqLfZn .mbr-iconfont {
  color: #ffffff;
}
.cid-ucAmRqLfZn .panel-text {
  color: #ffffff;
}
.cid-qYxSfzvi69 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-qYyFfOrGHR .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-qYyFfOrGHR .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qYyFfOrGHR a {
  font-style: normal;
}
.cid-qYyFfOrGHR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qYyFfOrGHR .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qYyFfOrGHR .nav-item:focus,
.cid-qYyFfOrGHR .nav-link:focus {
  outline: none;
}
.cid-qYyFfOrGHR .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qYyFfOrGHR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qYyFfOrGHR .menu-logo {
  margin-right: auto;
}
.cid-qYyFfOrGHR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qYyFfOrGHR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qYyFfOrGHR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qYyFfOrGHR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qYyFfOrGHR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qYyFfOrGHR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qYyFfOrGHR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qYyFfOrGHR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qYyFfOrGHR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qYyFfOrGHR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qYyFfOrGHR .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qYyFfOrGHR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qYyFfOrGHR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qYyFfOrGHR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qYyFfOrGHR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qYyFfOrGHR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qYyFfOrGHR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qYyFfOrGHR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qYyFfOrGHR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qYyFfOrGHR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qYyFfOrGHR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qYyFfOrGHR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qYyFfOrGHR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qYyFfOrGHR button.navbar-toggler:focus {
  outline: none;
}
.cid-qYyFfOrGHR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #003910;
}
.cid-qYyFfOrGHR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qYyFfOrGHR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qYyFfOrGHR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qYyFfOrGHR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qYyFfOrGHR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qYyFfOrGHR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qYyFfOrGHR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qYyFfOrGHR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qYyFfOrGHR .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qYyFfOrGHR .collapsed .btn {
  display: flex;
}
.cid-qYyFfOrGHR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qYyFfOrGHR .collapsed .navbar-collapse.collapsing,
.cid-qYyFfOrGHR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qYyFfOrGHR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qYyFfOrGHR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qYyFfOrGHR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qYyFfOrGHR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qYyFfOrGHR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qYyFfOrGHR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qYyFfOrGHR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qYyFfOrGHR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qYyFfOrGHR .collapsed button.navbar-toggler {
  display: block;
}
.cid-qYyFfOrGHR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qYyFfOrGHR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qYyFfOrGHR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qYyFfOrGHR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qYyFfOrGHR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qYyFfOrGHR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qYyFfOrGHR.navbar-expand {
    flex-direction: column;
  }
  .cid-qYyFfOrGHR img {
    height: 3.8rem !important;
  }
  .cid-qYyFfOrGHR .btn {
    display: flex;
  }
  .cid-qYyFfOrGHR button.navbar-toggler {
    display: block;
  }
  .cid-qYyFfOrGHR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qYyFfOrGHR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qYyFfOrGHR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qYyFfOrGHR .navbar-collapse.collapsing,
  .cid-qYyFfOrGHR .navbar-collapse.show {
    display: block !important;
  }
  .cid-qYyFfOrGHR .navbar-collapse.collapsing .navbar-nav,
  .cid-qYyFfOrGHR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qYyFfOrGHR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qYyFfOrGHR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qYyFfOrGHR .navbar-collapse.collapsing .navbar-buttons,
  .cid-qYyFfOrGHR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qYyFfOrGHR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qYyFfOrGHR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qYyFfOrGHR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qYyFfOrGHR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qYyFfOrGHR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qYyFfOrGHR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-qYyFfOrGHR .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qYyFfOrGHR .navbar-collapse {
  flex-basis: auto;
}
.cid-qYyFfOrGHR .nav-link:hover,
.cid-qYyFfOrGHR .dropdown-item:hover {
  color: #357000 !important;
}
.cid-qYyFzufE1L {
  padding-top: 120px;
  padding-bottom: 60px;
  background: #003910;
  background: linear-gradient(0deg, #003910, #ffffff);
}
.cid-qYyFzufE1L .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-qYyFzufE1L .video-block {
    width: 100% !important;
  }
}
.cid-qYyFfR3RTe {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
  position: relative;
}
.cid-qYyFfR3RTe p {
  color: #767676;
}
.cid-qYyFfR3RTe .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-qYyFfR3RTe .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-qYyFfR3RTe .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-qYyFfR3RTe .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qYyFfR3RTe .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-qYyFfR3RTe .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-qYyFfR3RTe .panel-text P {
  text-align: left;
}
.cid-qYyFfRLanH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/corte-e-poda-arvores-ctba-8-1280x768.webp");
}
.cid-qYyFfRLanH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qYyFfRLanH .btn {
  margin: 0 0 .5rem 0;
}
.cid-qYyFfRLanH H2 {
  color: #ffffff;
}
.cid-qYyFfSbNZj {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qYyFfSbNZj .image-block {
  margin: auto;
}
.cid-qYyFfSbNZj figcaption {
  position: relative;
}
.cid-qYyFfSbNZj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-qYyFfSbNZj .image-block {
    width: 100% !important;
  }
}
.cid-qYyFfSKH8H {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qYyFfSKH8H .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qYyFfSKH8H .input {
  margin-bottom: 15px;
}
.cid-qYyFfSKH8H .map {
  width: 100%;
  height: 30rem;
}
.cid-qYyFfSKH8H .map iframe {
  width: inherit;
  height: 100%;
}
.cid-qYyFfSKH8H .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-qYyFfSKH8H .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-qYyFfSKH8H .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-qYyFfSKH8H .mbr-text {
  color: #767676;
}
.cid-qYyFfSKH8H a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qYyFfSKH8H .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qYyFfSKH8H .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qYyFfSKH8H .google-map {
  height: 25rem;
  position: relative;
}
.cid-qYyFfSKH8H .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qYyFfSKH8H .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-qYyFfSKH8H .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qYyFfSKH8H .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-qYyFfSKH8H h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qYyFfSKH8H .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qYyFfSKH8H .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-qYyFfTkKAd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tsEicIjd0n .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-tsEicIjd0n .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tsEicIjd0n a {
  font-style: normal;
}
.cid-tsEicIjd0n .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tsEicIjd0n .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tsEicIjd0n .nav-item:focus,
.cid-tsEicIjd0n .nav-link:focus {
  outline: none;
}
.cid-tsEicIjd0n .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tsEicIjd0n .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tsEicIjd0n .menu-logo {
  margin-right: auto;
}
.cid-tsEicIjd0n .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tsEicIjd0n .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tsEicIjd0n .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tsEicIjd0n .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tsEicIjd0n .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tsEicIjd0n .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tsEicIjd0n .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tsEicIjd0n .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tsEicIjd0n .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsEicIjd0n .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tsEicIjd0n .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tsEicIjd0n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tsEicIjd0n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsEicIjd0n .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tsEicIjd0n .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsEicIjd0n .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tsEicIjd0n .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tsEicIjd0n .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tsEicIjd0n .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tsEicIjd0n .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tsEicIjd0n .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tsEicIjd0n .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tsEicIjd0n button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tsEicIjd0n button.navbar-toggler:focus {
  outline: none;
}
.cid-tsEicIjd0n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #003910;
}
.cid-tsEicIjd0n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsEicIjd0n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsEicIjd0n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsEicIjd0n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsEicIjd0n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsEicIjd0n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsEicIjd0n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsEicIjd0n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsEicIjd0n .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tsEicIjd0n .collapsed .btn {
  display: flex;
}
.cid-tsEicIjd0n .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tsEicIjd0n .collapsed .navbar-collapse.collapsing,
.cid-tsEicIjd0n .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tsEicIjd0n .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tsEicIjd0n .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tsEicIjd0n .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tsEicIjd0n .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tsEicIjd0n .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tsEicIjd0n .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tsEicIjd0n .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tsEicIjd0n .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tsEicIjd0n .collapsed button.navbar-toggler {
  display: block;
}
.cid-tsEicIjd0n .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tsEicIjd0n .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsEicIjd0n .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tsEicIjd0n .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tsEicIjd0n .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tsEicIjd0n .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tsEicIjd0n.navbar-expand {
    flex-direction: column;
  }
  .cid-tsEicIjd0n img {
    height: 3.8rem !important;
  }
  .cid-tsEicIjd0n .btn {
    display: flex;
  }
  .cid-tsEicIjd0n button.navbar-toggler {
    display: block;
  }
  .cid-tsEicIjd0n .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tsEicIjd0n .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsEicIjd0n .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tsEicIjd0n .navbar-collapse.collapsing,
  .cid-tsEicIjd0n .navbar-collapse.show {
    display: block !important;
  }
  .cid-tsEicIjd0n .navbar-collapse.collapsing .navbar-nav,
  .cid-tsEicIjd0n .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tsEicIjd0n .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tsEicIjd0n .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tsEicIjd0n .navbar-collapse.collapsing .navbar-buttons,
  .cid-tsEicIjd0n .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tsEicIjd0n .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tsEicIjd0n .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tsEicIjd0n .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tsEicIjd0n .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tsEicIjd0n .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tsEicIjd0n .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tsEicIjd0n .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tsEicIjd0n .navbar-collapse {
  flex-basis: auto;
}
.cid-tsEicIjd0n .nav-link:hover,
.cid-tsEicIjd0n .dropdown-item:hover {
  color: #357000 !important;
}
.cid-tsEiQVLIv5 {
  padding-top: 105px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f9f295;
}
.cid-tsEiQVLIv5 p {
  color: #767676;
}
.cid-tsEiQVLIv5 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tsEiQVLIv5 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tsEiQVLIv5 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tsEiQVLIv5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tsEiQVLIv5 .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-tsEiQVLIv5 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tsEiQVLIv5 .panel-text {
  color: #000000;
}
.cid-tsEicJqlaC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/corte-e-poda-arvores-ctba-8-1280x768.webp");
}
.cid-tsEicJqlaC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tsEicJqlaC .btn {
  margin: 0 0 .5rem 0;
}
.cid-tsEicJqlaC H2 {
  color: #ffffff;
}
.cid-tsEicJD2Pd {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tsEicJD2Pd .image-block {
  margin: auto;
}
.cid-tsEicJD2Pd figcaption {
  position: relative;
}
.cid-tsEicJD2Pd figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tsEicJD2Pd .image-block {
    width: 100% !important;
  }
}
.cid-tsEicJNgES {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tsEicJNgES .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tsEicJNgES .input {
  margin-bottom: 15px;
}
.cid-tsEicJNgES .map {
  width: 100%;
  height: 30rem;
}
.cid-tsEicJNgES .map iframe {
  width: inherit;
  height: 100%;
}
.cid-tsEicJNgES .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tsEicJNgES .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tsEicJNgES .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-tsEicJNgES .mbr-text {
  color: #767676;
}
.cid-tsEicJNgES a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tsEicJNgES .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tsEicJNgES .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tsEicJNgES .google-map {
  height: 25rem;
  position: relative;
}
.cid-tsEicJNgES .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tsEicJNgES .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-tsEicJNgES .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tsEicJNgES .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tsEicJNgES h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tsEicJNgES .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-tsEicJNgES .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-tsEicKabC1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tsFvh31t2I .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-tsFvh31t2I .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tsFvh31t2I a {
  font-style: normal;
}
.cid-tsFvh31t2I .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tsFvh31t2I .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tsFvh31t2I .nav-item:focus,
.cid-tsFvh31t2I .nav-link:focus {
  outline: none;
}
.cid-tsFvh31t2I .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tsFvh31t2I .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tsFvh31t2I .menu-logo {
  margin-right: auto;
}
.cid-tsFvh31t2I .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tsFvh31t2I .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tsFvh31t2I .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tsFvh31t2I .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tsFvh31t2I .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tsFvh31t2I .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tsFvh31t2I .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tsFvh31t2I .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tsFvh31t2I .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsFvh31t2I .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tsFvh31t2I .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tsFvh31t2I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tsFvh31t2I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsFvh31t2I .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tsFvh31t2I .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsFvh31t2I .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tsFvh31t2I .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tsFvh31t2I .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tsFvh31t2I .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tsFvh31t2I .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tsFvh31t2I .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tsFvh31t2I .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tsFvh31t2I button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tsFvh31t2I button.navbar-toggler:focus {
  outline: none;
}
.cid-tsFvh31t2I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #003910;
}
.cid-tsFvh31t2I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsFvh31t2I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsFvh31t2I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsFvh31t2I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsFvh31t2I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsFvh31t2I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsFvh31t2I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsFvh31t2I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsFvh31t2I .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tsFvh31t2I .collapsed .btn {
  display: flex;
}
.cid-tsFvh31t2I .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tsFvh31t2I .collapsed .navbar-collapse.collapsing,
.cid-tsFvh31t2I .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tsFvh31t2I .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tsFvh31t2I .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tsFvh31t2I .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tsFvh31t2I .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tsFvh31t2I .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tsFvh31t2I .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tsFvh31t2I .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tsFvh31t2I .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tsFvh31t2I .collapsed button.navbar-toggler {
  display: block;
}
.cid-tsFvh31t2I .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tsFvh31t2I .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsFvh31t2I .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tsFvh31t2I .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tsFvh31t2I .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tsFvh31t2I .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tsFvh31t2I.navbar-expand {
    flex-direction: column;
  }
  .cid-tsFvh31t2I img {
    height: 3.8rem !important;
  }
  .cid-tsFvh31t2I .btn {
    display: flex;
  }
  .cid-tsFvh31t2I button.navbar-toggler {
    display: block;
  }
  .cid-tsFvh31t2I .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tsFvh31t2I .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsFvh31t2I .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tsFvh31t2I .navbar-collapse.collapsing,
  .cid-tsFvh31t2I .navbar-collapse.show {
    display: block !important;
  }
  .cid-tsFvh31t2I .navbar-collapse.collapsing .navbar-nav,
  .cid-tsFvh31t2I .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tsFvh31t2I .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tsFvh31t2I .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tsFvh31t2I .navbar-collapse.collapsing .navbar-buttons,
  .cid-tsFvh31t2I .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tsFvh31t2I .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tsFvh31t2I .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tsFvh31t2I .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tsFvh31t2I .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tsFvh31t2I .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tsFvh31t2I .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tsFvh31t2I .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tsFvh31t2I .navbar-collapse {
  flex-basis: auto;
}
.cid-tsFvh31t2I .nav-link:hover,
.cid-tsFvh31t2I .dropdown-item:hover {
  color: #357000 !important;
}
.cid-tYCyAlZME8 {
  padding-top: 135px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f9f295;
}
.cid-tYCyAlZME8 p {
  color: #767676;
}
.cid-tYCyAlZME8 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tYCyAlZME8 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tYCyAlZME8 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tYCyAlZME8 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tYCyAlZME8 .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-tYCyAlZME8 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tYCyAlZME8 .panel-text {
  color: #232323;
}
.cid-tsFvh3TGQv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/corte-e-poda-arvores-ctba-8-1280x768.webp");
}
.cid-tsFvh3TGQv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tsFvh3TGQv .btn {
  margin: 0 0 .5rem 0;
}
.cid-tsFvh3TGQv H2 {
  color: #ffffff;
}
.cid-tsFvh48unl {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tsFvh48unl .image-block {
  margin: auto;
}
.cid-tsFvh48unl figcaption {
  position: relative;
}
.cid-tsFvh48unl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tsFvh48unl .image-block {
    width: 100% !important;
  }
}
.cid-tsFvh4koWY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tsFvh4koWY .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tsFvh4koWY .input {
  margin-bottom: 15px;
}
.cid-tsFvh4koWY .map {
  width: 100%;
  height: 30rem;
}
.cid-tsFvh4koWY .map iframe {
  width: inherit;
  height: 100%;
}
.cid-tsFvh4koWY .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tsFvh4koWY .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tsFvh4koWY .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-tsFvh4koWY .mbr-text {
  color: #767676;
}
.cid-tsFvh4koWY a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tsFvh4koWY .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tsFvh4koWY .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tsFvh4koWY .google-map {
  height: 25rem;
  position: relative;
}
.cid-tsFvh4koWY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tsFvh4koWY .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-tsFvh4koWY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tsFvh4koWY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-tsFvh4koWY h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tsFvh4koWY .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-tsFvh4koWY .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-tsFvh4IU4p {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uwJ2OVL3ZR .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uwJ2OVL3ZR .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uwJ2OVL3ZR a {
  font-style: normal;
}
.cid-uwJ2OVL3ZR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uwJ2OVL3ZR .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uwJ2OVL3ZR .nav-item:focus,
.cid-uwJ2OVL3ZR .nav-link:focus {
  outline: none;
}
.cid-uwJ2OVL3ZR .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uwJ2OVL3ZR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uwJ2OVL3ZR .menu-logo {
  margin-right: auto;
}
.cid-uwJ2OVL3ZR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uwJ2OVL3ZR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uwJ2OVL3ZR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uwJ2OVL3ZR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uwJ2OVL3ZR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uwJ2OVL3ZR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uwJ2OVL3ZR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uwJ2OVL3ZR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uwJ2OVL3ZR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uwJ2OVL3ZR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uwJ2OVL3ZR .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uwJ2OVL3ZR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uwJ2OVL3ZR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwJ2OVL3ZR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uwJ2OVL3ZR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwJ2OVL3ZR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uwJ2OVL3ZR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uwJ2OVL3ZR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uwJ2OVL3ZR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uwJ2OVL3ZR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uwJ2OVL3ZR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uwJ2OVL3ZR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uwJ2OVL3ZR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uwJ2OVL3ZR button.navbar-toggler:focus {
  outline: none;
}
.cid-uwJ2OVL3ZR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #003910;
}
.cid-uwJ2OVL3ZR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uwJ2OVL3ZR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uwJ2OVL3ZR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uwJ2OVL3ZR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uwJ2OVL3ZR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uwJ2OVL3ZR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uwJ2OVL3ZR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uwJ2OVL3ZR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uwJ2OVL3ZR .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uwJ2OVL3ZR .collapsed .btn {
  display: flex;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.collapsing,
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uwJ2OVL3ZR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uwJ2OVL3ZR .collapsed button.navbar-toggler {
  display: block;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uwJ2OVL3ZR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uwJ2OVL3ZR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uwJ2OVL3ZR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uwJ2OVL3ZR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uwJ2OVL3ZR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uwJ2OVL3ZR.navbar-expand {
    flex-direction: column;
  }
  .cid-uwJ2OVL3ZR img {
    height: 3.8rem !important;
  }
  .cid-uwJ2OVL3ZR .btn {
    display: flex;
  }
  .cid-uwJ2OVL3ZR button.navbar-toggler {
    display: block;
  }
  .cid-uwJ2OVL3ZR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uwJ2OVL3ZR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uwJ2OVL3ZR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uwJ2OVL3ZR .navbar-collapse.collapsing,
  .cid-uwJ2OVL3ZR .navbar-collapse.show {
    display: block !important;
  }
  .cid-uwJ2OVL3ZR .navbar-collapse.collapsing .navbar-nav,
  .cid-uwJ2OVL3ZR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uwJ2OVL3ZR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uwJ2OVL3ZR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uwJ2OVL3ZR .navbar-collapse.collapsing .navbar-buttons,
  .cid-uwJ2OVL3ZR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uwJ2OVL3ZR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uwJ2OVL3ZR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uwJ2OVL3ZR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uwJ2OVL3ZR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uwJ2OVL3ZR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uwJ2OVL3ZR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uwJ2OVL3ZR .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uwJ2OVL3ZR .navbar-collapse {
  flex-basis: auto;
}
.cid-uwJ2OVL3ZR .nav-link:hover,
.cid-uwJ2OVL3ZR .dropdown-item:hover {
  color: #357000 !important;
}
.cid-uwJ2OWrax2 {
  padding-top: 120px;
  padding-bottom: 30px;
  background: #003910;
  background: linear-gradient(0deg, #003910, #ffffff);
}
.cid-uwJ2OWrax2 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uwJ2OWrax2 .video-block {
    width: 100% !important;
  }
}
.cid-uwJ6rQigXN {
  padding-top: 15px;
  padding-bottom: 30px;
  position: relative;
  background-color: #003910;
}
.cid-uwJ6rQigXN p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-uwJ6rQigXN .panel-title {
  border-bottom: 2px solid #f7ed4a;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-uwJ6rQigXN .collapsed {
  border: none;
}
.cid-uwJ6rQigXN .collapsed span {
  transform: rotate(0deg);
}
.cid-uwJ6rQigXN span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #000000, #003910);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-uwJ6rQigXN .panel-body {
  padding-top: 0.5rem;
}
.cid-uwJ6rQigXN .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uwJ6rQigXN .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #ffffff;
  padding: 0;
}
.cid-uwJ6rQigXN .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uwJ6rQigXN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uwJ6rQigXN .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-uwJ6rQigXN .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uwJ6rQigXN .panel-text {
  color: #ffffff;
}
.cid-uwJ6rQigXN H4 {
  color: #000000;
}
.cid-uwJ6rQigXN H2 {
  color: #ffffff;
}
.cid-uwJ6rQigXN .mbr-section-text {
  color: #ffffff;
}
.cid-uwJ6rQigXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwJ6rQigXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwJ9lVUyGl {
  padding-top: 15px;
  padding-bottom: 30px;
  position: relative;
  background-color: #003910;
}
.cid-uwJ9lVUyGl p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-uwJ9lVUyGl .panel-title {
  border-bottom: 2px solid #f7ed4a;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
.cid-uwJ9lVUyGl .collapsed {
  border: none;
}
.cid-uwJ9lVUyGl .collapsed span {
  transform: rotate(0deg);
}
.cid-uwJ9lVUyGl span {
  font-size: 1.4rem;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: linear-gradient(to left, #000000, #003910);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.cid-uwJ9lVUyGl .panel-body {
  padding-top: 0.5rem;
}
.cid-uwJ9lVUyGl .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uwJ9lVUyGl .card .card-header {
  border-radius: 0px;
  margin: 0.5rem 0;
  border: 0px;
  background: #ffffff;
  padding: 0;
}
.cid-uwJ9lVUyGl .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  text-decoration: none !important;
  line-height: normal;
}
.cid-uwJ9lVUyGl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uwJ9lVUyGl .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-uwJ9lVUyGl .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uwJ9lVUyGl .panel-text {
  color: #ffffff;
}
.cid-uwJ9lVUyGl H4 {
  color: #000000;
}
.cid-uwJ9lVUyGl H2 {
  color: #ffffff;
}
.cid-uwJ9lVUyGl .mbr-section-text {
  color: #ffffff;
}
.cid-uwJ9lVUyGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwJ9lVUyGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwJ7bznIFe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uwJ7bznIFe .mbr-text {
  color: #000000;
}
.cid-uwJ2OXnOfs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/corte-e-poda-arvores-ctba-8-1280x768.webp");
}
.cid-uwJ2OXnOfs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwJ2OXnOfs .btn {
  margin: 0 0 .5rem 0;
}
.cid-uwJ2OXnOfs H2 {
  color: #ffffff;
}
.cid-uwJ2OXKnc5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uwJ2OXKnc5 .image-block {
  margin: auto;
}
.cid-uwJ2OXKnc5 figcaption {
  position: relative;
}
.cid-uwJ2OXKnc5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uwJ2OXKnc5 .image-block {
    width: 100% !important;
  }
}
.cid-uwJ2OYaohf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uwJ2OYaohf .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-uwJ2OYaohf .input {
  margin-bottom: 15px;
}
.cid-uwJ2OYaohf .map {
  width: 100%;
  height: 30rem;
}
.cid-uwJ2OYaohf .map iframe {
  width: inherit;
  height: 100%;
}
.cid-uwJ2OYaohf .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uwJ2OYaohf .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-uwJ2OYaohf .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-uwJ2OYaohf .mbr-text {
  color: #767676;
}
.cid-uwJ2OYaohf a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uwJ2OYaohf .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uwJ2OYaohf .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uwJ2OYaohf .google-map {
  height: 25rem;
  position: relative;
}
.cid-uwJ2OYaohf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uwJ2OYaohf .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-uwJ2OYaohf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uwJ2OYaohf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-uwJ2OYaohf h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uwJ2OYaohf .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-uwJ2OYaohf .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-uwJ2OYKsaE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
