.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.76rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.54rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #563a25 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #563a25 !important;
  border-color: #563a25 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #19110b !important;
  border-color: #19110b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #19110b !important;
  border-color: #19110b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3a7454 !important;
  border-color: #3a7454 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #1d3a2a !important;
  border-color: #1d3a2a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1d3a2a !important;
  border-color: #1d3a2a !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #563a25;
  color: #563a25;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #19110b !important;
  background-color: transparent!important;
  border-color: #19110b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #563a25 !important;
  border-color: #563a25 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #3a7454;
  color: #3a7454;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1d3a2a !important;
  background-color: transparent!important;
  border-color: #1d3a2a !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3a7454 !important;
  border-color: #3a7454 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #563a25 !important;
}
.text-secondary {
  color: #3a7454 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0f0a06 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #183023 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #563a25;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #563a25;
  border-color: #563a25;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #563a25;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #af764b;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #563a25 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #563a25;
}
/* Forms */
.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);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #563a25;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #563a25;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #563a25;
  border-bottom-color: #563a25;
}
.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: #563a25 !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: #3a7454 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23563a25' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t5lBWoFJpz {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t5lBWoFJpz .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t5lBWoFJpz .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t5lBWoFJpz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t5lBWoFJpz .mbr-section-title {
  color: #563a25;
}
.cid-t5lBWoFJpz .mbr-text,
.cid-t5lBWoFJpz .mbr-section-btn {
  color: #563a25;
  text-align: center;
}
.cid-t5lDD29tIc {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t5lDD29tIc .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5lDD29tIc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5lDD29tIc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t5lDD29tIc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t5lDD29tIc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t5lDD29tIc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t5lDD29tIc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t5lDD29tIc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t5lDD29tIc .carousel-control,
.cid-t5lDD29tIc .close {
  background: #1b1b1b;
}
.cid-t5lDD29tIc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t5lDD29tIc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t5lDD29tIc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t5lDD29tIc .carousel-control-next span {
  margin-left: 5px;
}
.cid-t5lDD29tIc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t5lDD29tIc .close::before {
  content: '\e91a';
}
.cid-t5lDD29tIc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t5lDD29tIc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t5lDD29tIc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5lDD29tIc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t5lDD29tIc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t5lDD29tIc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t5lDD29tIc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t5lDD29tIc .carousel-indicators li.active,
.cid-t5lDD29tIc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t5lDD29tIc .carousel-indicators li::after,
.cid-t5lDD29tIc .carousel-indicators li::before {
  content: none;
}
.cid-t5lDD29tIc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t5lDD29tIc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t5lDD29tIc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t5lDD29tIc .carousel-indicators {
    display: none;
  }
}
.cid-t5lDD29tIc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t5lDD29tIc .carousel-inner > .active {
  display: block;
}
.cid-t5lDD29tIc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5lDD29tIc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5lDD29tIc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t5lDD29tIc .carousel-control,
  .cid-t5lDD29tIc .carousel-indicators,
  .cid-t5lDD29tIc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t5lDD29tIc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t5lDD29tIc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t5lDD29tIc .carousel-indicators .active,
.cid-t5lDD29tIc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t5lDD29tIc .carousel-indicators .active {
  background: #fff;
}
.cid-t5lDD29tIc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t5lDD29tIc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t5lDD29tIc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t5lDD29tIc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t5lDD29tIc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t5lDD29tIc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t5lDD29tIc .carousel {
  width: 100%;
}
.cid-t5lDD29tIc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t5lDD29tIc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t5lDD29tIc .modal.fade .modal-dialog,
.cid-t5lDD29tIc .modal.in .modal-dialog {
  transform: none;
}
.cid-t5lDD29tIc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t5lDD29tIc H6 {
  text-align: center;
}
.cid-t2hvrxw9Iq {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-t2hvrxw9Iq .row {
    flex-direction: column-reverse;
  }
  .cid-t2hvrxw9Iq .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t2hvrxw9Iq .google-map {
  height: 100%;
  position: relative;
}
.cid-t2hvrxw9Iq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t2hvrxw9Iq .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t2hvrxw9Iq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t2hvrxw9Iq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t2hvrxw9Iq .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-t2hvrxw9Iq .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #563a25;
}
.cid-t2hvrxw9Iq .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-t2hvrxw9Iq .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2hvrxw9Iq .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-t2hvrxw9Iq .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #563a25;
}
.cid-t2hvrxw9Iq .card-title {
  color: #ffffff;
}
.cid-t2hvrxw9Iq P {
  color: #ffffff;
}
.cid-t2hvrxw9Iq .mbr-section-title {
  color: #563a25;
}
.cid-t2IHK4uY1y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-s48OLK6784 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #563a25 !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2o5PFTeoq .float {
  width: 77px;
  height: 79px;
  bottom: 122px;
  right: 39px;
  background-color: #563a25;
  color: #ffffff;
  border-radius: 46px;
  font-size: 47px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  position: fixed;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.cid-u2o5PFTeoq .my-float {
  margin-top: 16px;
}
.cid-u2o5PFTeoq P {
  color: #232323;
}
.cid-u2o5PFTeoq DIV {
  color: #ffffff;
}
.cid-u2o5PFTeoq H10 {
  color: #767676;
}
.cid-u2o5PFTeoq .hidden {
  display: none;
}
.cid-t3Lp8T1q9E.popup-builder {
  background-color: #ffffff;
}
.cid-t3Lp8T1q9E.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t3Lp8T1q9E.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t3Lp8T1q9E .modal-content,
.cid-t3Lp8T1q9E .modal-dialog {
  height: auto;
}
.cid-t3Lp8T1q9E .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t3Lp8T1q9E .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t3Lp8T1q9E .form-wrapper .mbr-form .form-group,
  .cid-t3Lp8T1q9E .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t3Lp8T1q9E .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t3Lp8T1q9E .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t3Lp8T1q9E .mbr-text {
  text-align: center;
}
.cid-t3Lp8T1q9E .pt-0 {
  padding-top: 0 !important;
}
.cid-t3Lp8T1q9E .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t3Lp8T1q9E .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t3Lp8T1q9E .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t3Lp8T1q9E .modal-open {
  overflow: hidden;
}
.cid-t3Lp8T1q9E .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t3Lp8T1q9E .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t3Lp8T1q9E .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t3Lp8T1q9E .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t3Lp8T1q9E .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t3Lp8T1q9E .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t3Lp8T1q9E .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t3Lp8T1q9E .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t3Lp8T1q9E .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t3Lp8T1q9E .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t3Lp8T1q9E .modal-backdrop.fade {
  opacity: 0;
}
.cid-t3Lp8T1q9E .modal-backdrop.show {
  opacity: .5;
}
.cid-t3Lp8T1q9E .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t3Lp8T1q9E .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t3Lp8T1q9E .modal-header {
    padding: 1rem;
  }
}
.cid-t3Lp8T1q9E .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t3Lp8T1q9E .modal-header .close svg {
  fill: #3a7454;
}
.cid-t3Lp8T1q9E .modal-header .close:hover {
  opacity: 1;
}
.cid-t3Lp8T1q9E .modal-header .close:focus {
  outline: none;
}
.cid-t3Lp8T1q9E .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t3Lp8T1q9E .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t3Lp8T1q9E .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t3Lp8T1q9E .modal-body {
    padding: 1rem;
  }
}
.cid-t3Lp8T1q9E .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t3Lp8T1q9E .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t3Lp8T1q9E .modal-footer {
    padding: 1rem;
  }
}
.cid-t3Lp8T1q9E .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t3Lp8T1q9E .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t3Lp8T1q9E .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t3Lp8T1q9E .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t3Lp8T1q9E .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t3Lp8T1q9E .modal-lg,
  .cid-t3Lp8T1q9E .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t3Lp8T1q9E .modal-xl {
    max-width: 1140px;
  }
}
.cid-t3Lp8T1q9E .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t3Lp8T1q9E .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t3Lp8T1q9E .form-group {
  margin-bottom: 1rem;
}
.cid-t3Lp8T1q9E .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t3Lp8T1q9E .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t3Lp8T1q9E .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t3Lp8T1q9E .mbr-section-btn {
  margin: 0;
}
.cid-t3Lp8T1q9E .mbr-section-btn .btn {
  margin: 0;
}
.cid-WBRb9ZPwwt .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #563a25;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-WBRb9ZPwwt .my-float {
  margin-top: 16px;
}
.cid-WBRb9ZPwwt P {
  color: #232323;
}
.cid-WBRb9ZPwwt DIV {
  color: #ffffff;
}
.cid-WBRb9ZPwwt H10 {
  color: #767676;
}
.cid-WBRb9ZPwwt .hidden {
  display: none;
}
.cid-t2PcW7SsXT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t2PcW7SsXT nav.navbar {
  position: fixed;
}
.cid-t2PcW7SsXT .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t2PcW7SsXT .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2PcW7SsXT .dropdown-menu {
  padding: 0;
}
.cid-t2PcW7SsXT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2PcW7SsXT .dropdown-item:hover,
.cid-t2PcW7SsXT .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t2PcW7SsXT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t2PcW7SsXT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2PcW7SsXT .nav-link {
  position: relative;
}
.cid-t2PcW7SsXT .container {
  display: flex;
  margin: auto;
}
.cid-t2PcW7SsXT .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t2PcW7SsXT .navbar-caption {
  padding-right: 4rem;
}
.cid-t2PcW7SsXT .dropdown-menu,
.cid-t2PcW7SsXT .navbar.opened {
  background: #563a25 !important;
}
.cid-t2PcW7SsXT .nav-item:focus,
.cid-t2PcW7SsXT .nav-link:focus {
  outline: none;
}
.cid-t2PcW7SsXT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2PcW7SsXT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2PcW7SsXT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t2PcW7SsXT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2PcW7SsXT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2PcW7SsXT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2PcW7SsXT .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t2PcW7SsXT .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2PcW7SsXT .navbar.opened {
  transition: all .3s;
}
.cid-t2PcW7SsXT .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t2PcW7SsXT .navbar .navbar-logo img {
  width: auto;
}
.cid-t2PcW7SsXT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2PcW7SsXT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2PcW7SsXT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2PcW7SsXT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t2PcW7SsXT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2PcW7SsXT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2PcW7SsXT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t2PcW7SsXT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2PcW7SsXT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t2PcW7SsXT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t2PcW7SsXT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2PcW7SsXT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2PcW7SsXT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2PcW7SsXT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2PcW7SsXT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t2PcW7SsXT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t2PcW7SsXT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2PcW7SsXT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2PcW7SsXT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2PcW7SsXT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2PcW7SsXT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t2PcW7SsXT .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2PcW7SsXT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t2PcW7SsXT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t2PcW7SsXT .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t2PcW7SsXT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2PcW7SsXT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2PcW7SsXT .dropdown-item.active,
.cid-t2PcW7SsXT .dropdown-item:active {
  background-color: transparent;
}
.cid-t2PcW7SsXT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2PcW7SsXT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2PcW7SsXT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2PcW7SsXT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t2PcW7SsXT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2PcW7SsXT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2PcW7SsXT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2PcW7SsXT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2PcW7SsXT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t2PcW7SsXT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t2PcW7SsXT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t2PcW7SsXT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t2PcW7SsXT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t2PcW7SsXT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t2PcW7SsXT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2PcW7SsXT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t2PcW7SsXT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t2PcW7SsXT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2PcW7SsXT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t2PcW7SsXT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2PcW7SsXT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2PcW7SsXT .navbar {
    height: 77px;
  }
  .cid-t2PcW7SsXT .navbar.opened {
    height: auto;
  }
  .cid-t2PcW7SsXT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2Pdfc4h0e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f9f9;
}
.cid-t2Pdfc4h0e .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t2Pdfc4h0e form .mbr-section-btn .btn {
  display: inline-flex;
  border-radius: 2rem;
}
.cid-t2Pdfc4h0e input,
.cid-t2Pdfc4h0e textarea {
  border-radius: 0.5rem;
}
.cid-t2Pdfc4h0e img {
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-t2Pdfc4h0e .form-col,
.cid-t2Pdfc4h0e img {
  transition: all 0.3s;
}
.cid-t2Pdfc4h0e .form-col:hover,
.cid-t2Pdfc4h0e img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
}
.cid-t2Pdfc4h0e textarea {
  min-height: 10rem;
}
.cid-t2Pdfc4h0e .form-col {
  background: #eeeeee;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-t2Pdfc4h0e .form-col {
    padding: 2rem 1rem;
  }
}
.cid-t2Pdfc4h0e .form-control:hover,
.cid-t2Pdfc4h0e .form-control:focus {
  border-color: transparent !important;
}
.cid-t2Pdfc4h0e .mbr-section-title {
  color: #3a7454;
}
.cid-t2Pdfc4h0e H3 {
  text-align: center;
  color: #563a25;
}
.cid-t3obVIBlT0 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #563a25;
}
.cid-t3obVIBlT0 .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t3obVIBlT0 .card-box {
  z-index: 2;
  position: relative;
}
.cid-t3obVIBlT0 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #563a25;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t3obVIBlT0 .mbr-iconfont-big {
  font-size: 14rem;
  color: #563a25;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t3obVIBlT0 .card-title,
.cid-t3obVIBlT0 .card-text {
  transition: all 0.3s;
}
.cid-t3obVIBlT0 .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #563a25;
  transition: all 0.3s;
}
.cid-t3obVIBlT0 .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t3obVIBlT0 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t3obVIBlT0 .card-title,
.cid-t3obVIBlT0 .iconfont-wrapper {
  color: #ffffff;
}
.cid-t3obVIBlT0 .card-text {
  color: #bbbbbb;
}
.cid-t3obVIBlT0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t3obVIBlT0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t2PcWq7IuA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54MczyaqN .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #563a25;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54MczyaqN .my-float {
  margin-top: 16px;
}
.cid-t54MczyaqN P {
  color: #232323;
}
.cid-t54MczyaqN DIV {
  color: #ffffff;
}
.cid-t54MczyaqN H10 {
  color: #767676;
}
.cid-t54MczyaqN .hidden {
  display: none;
}
.cid-u2opGidaid .float {
  width: 77px;
  height: 79px;
  bottom: 122px;
  right: 39px;
  background-color: #563a25;
  color: #ffffff;
  border-radius: 46px;
  font-size: 47px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  position: fixed;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.cid-u2opGidaid .my-float {
  margin-top: 16px;
}
.cid-u2opGidaid P {
  color: #232323;
}
.cid-u2opGidaid DIV {
  color: #ffffff;
}
.cid-u2opGidaid H10 {
  color: #767676;
}
.cid-u2opGidaid .hidden {
  display: none;
}
.cid-t2Ivfmk0yE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t2Ivfmk0yE .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t2Ivfmk0yE .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t2Ivfmk0yE .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t2Ivfmk0yE .bg-instagram:hover {
  background: #bd005c;
}
.cid-t2Ivfmk0yE .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t2Ivfmk0yE .bg-youtube:hover {
  background: #cc0000;
}
.cid-t2Ivfmk0yE .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t2Ivfmk0yE [class^="socicon-"]:before,
.cid-t2Ivfmk0yE [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t2IvfsUixM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t2IvfsUixM nav.navbar {
  position: fixed;
}
.cid-t2IvfsUixM .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t2IvfsUixM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2IvfsUixM .dropdown-menu {
  padding: 0;
}
.cid-t2IvfsUixM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2IvfsUixM .dropdown-item:hover,
.cid-t2IvfsUixM .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t2IvfsUixM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t2IvfsUixM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2IvfsUixM .nav-link {
  position: relative;
}
.cid-t2IvfsUixM .container {
  display: flex;
  margin: auto;
}
.cid-t2IvfsUixM .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t2IvfsUixM .navbar-caption {
  padding-right: 4rem;
}
.cid-t2IvfsUixM .dropdown-menu,
.cid-t2IvfsUixM .navbar.opened {
  background: #563a25 !important;
}
.cid-t2IvfsUixM .nav-item:focus,
.cid-t2IvfsUixM .nav-link:focus {
  outline: none;
}
.cid-t2IvfsUixM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2IvfsUixM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2IvfsUixM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t2IvfsUixM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2IvfsUixM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2IvfsUixM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2IvfsUixM .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t2IvfsUixM .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2IvfsUixM .navbar.opened {
  transition: all .3s;
}
.cid-t2IvfsUixM .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t2IvfsUixM .navbar .navbar-logo img {
  width: auto;
}
.cid-t2IvfsUixM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2IvfsUixM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2IvfsUixM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2IvfsUixM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t2IvfsUixM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2IvfsUixM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2IvfsUixM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t2IvfsUixM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2IvfsUixM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t2IvfsUixM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t2IvfsUixM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2IvfsUixM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2IvfsUixM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2IvfsUixM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2IvfsUixM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t2IvfsUixM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t2IvfsUixM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2IvfsUixM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2IvfsUixM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2IvfsUixM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2IvfsUixM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t2IvfsUixM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2IvfsUixM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t2IvfsUixM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t2IvfsUixM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t2IvfsUixM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2IvfsUixM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2IvfsUixM .dropdown-item.active,
.cid-t2IvfsUixM .dropdown-item:active {
  background-color: transparent;
}
.cid-t2IvfsUixM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2IvfsUixM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2IvfsUixM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2IvfsUixM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t2IvfsUixM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2IvfsUixM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2IvfsUixM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2IvfsUixM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2IvfsUixM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t2IvfsUixM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t2IvfsUixM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t2IvfsUixM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t2IvfsUixM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t2IvfsUixM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t2IvfsUixM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2IvfsUixM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t2IvfsUixM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t2IvfsUixM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2IvfsUixM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t2IvfsUixM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2IvfsUixM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2IvfsUixM .navbar {
    height: 77px;
  }
  .cid-t2IvfsUixM .navbar.opened {
    height: auto;
  }
  .cid-t2IvfsUixM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2IvH25mWd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t2IvH25mWd .mbr-section-subtitle {
  color: #3a7454;
  text-align: left;
}
.cid-t2IHK4uY1y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54Oz5pllM .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54Oz5pllM .my-float {
  margin-top: 16px;
}
.cid-t54Oz5pllM P {
  color: #232323;
}
.cid-t54Oz5pllM DIV {
  color: #ffffff;
}
.cid-t54Oz5pllM H10 {
  color: #767676;
}
.cid-t54Oz5pllM .hidden {
  display: none;
}
.cid-t3KaEHrhmB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t3KaEHrhmB nav.navbar {
  position: fixed;
}
.cid-t3KaEHrhmB .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t3KaEHrhmB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3KaEHrhmB .dropdown-menu {
  padding: 0;
}
.cid-t3KaEHrhmB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3KaEHrhmB .dropdown-item:hover,
.cid-t3KaEHrhmB .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t3KaEHrhmB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3KaEHrhmB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3KaEHrhmB .nav-link {
  position: relative;
}
.cid-t3KaEHrhmB .container {
  display: flex;
  margin: auto;
}
.cid-t3KaEHrhmB .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3KaEHrhmB .navbar-caption {
  padding-right: 4rem;
}
.cid-t3KaEHrhmB .dropdown-menu,
.cid-t3KaEHrhmB .navbar.opened {
  background: #563a25 !important;
}
.cid-t3KaEHrhmB .nav-item:focus,
.cid-t3KaEHrhmB .nav-link:focus {
  outline: none;
}
.cid-t3KaEHrhmB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3KaEHrhmB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3KaEHrhmB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t3KaEHrhmB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3KaEHrhmB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3KaEHrhmB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3KaEHrhmB .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t3KaEHrhmB .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3KaEHrhmB .navbar.opened {
  transition: all .3s;
}
.cid-t3KaEHrhmB .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3KaEHrhmB .navbar .navbar-logo img {
  width: auto;
}
.cid-t3KaEHrhmB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3KaEHrhmB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3KaEHrhmB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3KaEHrhmB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t3KaEHrhmB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3KaEHrhmB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3KaEHrhmB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t3KaEHrhmB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3KaEHrhmB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3KaEHrhmB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3KaEHrhmB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3KaEHrhmB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3KaEHrhmB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3KaEHrhmB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3KaEHrhmB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t3KaEHrhmB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t3KaEHrhmB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3KaEHrhmB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3KaEHrhmB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3KaEHrhmB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3KaEHrhmB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3KaEHrhmB .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3KaEHrhmB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t3KaEHrhmB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t3KaEHrhmB .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3KaEHrhmB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3KaEHrhmB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3KaEHrhmB .dropdown-item.active,
.cid-t3KaEHrhmB .dropdown-item:active {
  background-color: transparent;
}
.cid-t3KaEHrhmB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3KaEHrhmB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3KaEHrhmB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3KaEHrhmB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t3KaEHrhmB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3KaEHrhmB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3KaEHrhmB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3KaEHrhmB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3KaEHrhmB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3KaEHrhmB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t3KaEHrhmB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3KaEHrhmB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3KaEHrhmB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3KaEHrhmB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3KaEHrhmB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3KaEHrhmB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3KaEHrhmB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3KaEHrhmB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3KaEHrhmB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t3KaEHrhmB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3KaEHrhmB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3KaEHrhmB .navbar {
    height: 77px;
  }
  .cid-t3KaEHrhmB .navbar.opened {
    height: auto;
  }
  .cid-t3KaEHrhmB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3KbZ7MdzL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3KbZ7MdzL .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t3KbZ7MdzL .card-box {
  z-index: 2;
  position: relative;
}
.cid-t3KbZ7MdzL .card-title,
.cid-t3KbZ7MdzL .card-text {
  transition: all 0.3s;
}
.cid-t3KbZ7MdzL .card-wrapper {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 6px;
  background: #f2effc;
  transition: all 0.3s;
}
.cid-t3KbZ7MdzL .card-wrapper:hover {
  background: #ffb18a;
}
.cid-t3KbZ7MdzL .card-wrapper:hover .card-title,
.cid-t3KbZ7MdzL .card-wrapper:hover .card-text {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-t3KbZ7MdzL .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t3KbZ7MdzL .card-title,
.cid-t3KbZ7MdzL .iconfont-wrapper {
  color: #160830;
  text-align: center;
}
.cid-t3KbZ7MdzL .card-text {
  color: #353535;
}
.cid-t3KbZ7MdzL .card-text,
.cid-t3KbZ7MdzL .mbr-section-btn {
  text-align: center;
}
.cid-t3KbZ7MdzL .mbr-iconfont {
  order: initial;
  cursor: pointer;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  vertical-align: sub;
}
.cid-t3KaEITeg2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t3KaEITeg2 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t3KaEITeg2 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t3KaEITeg2 .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t3KaEITeg2 .bg-instagram:hover {
  background: #bd005c;
}
.cid-t3KaEITeg2 .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t3KaEITeg2 .bg-youtube:hover {
  background: #cc0000;
}
.cid-t3KaEITeg2 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t3KaEITeg2 [class^="socicon-"]:before,
.cid-t3KaEITeg2 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t3KaEITeg2 .mbr-section-title,
.cid-t3KaEITeg2 .social-list {
  color: #3a7454;
}
.cid-t3KaEJLi7H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a7454;
}
.cid-t3KaEJLi7H .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t3KaEJLi7H .card-box {
  z-index: 2;
  position: relative;
}
.cid-t3KaEJLi7H .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #3a7454;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t3KaEJLi7H .mbr-iconfont-big {
  font-size: 14rem;
  color: #3a7454;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t3KaEJLi7H .card-title,
.cid-t3KaEJLi7H .card-text {
  transition: all 0.3s;
}
.cid-t3KaEJLi7H .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #3a7454;
  transition: all 0.3s;
}
.cid-t3KaEJLi7H .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t3KaEJLi7H .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t3KaEJLi7H .card-title,
.cid-t3KaEJLi7H .iconfont-wrapper {
  color: #ffffff;
}
.cid-t3KaEJLi7H .card-text {
  color: #bbbbbb;
}
.cid-t3KaEJLi7H .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t3KaEJLi7H .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t3KaEKq1ZM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54MZC4xHF .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54MZC4xHF .my-float {
  margin-top: 16px;
}
.cid-t54MZC4xHF P {
  color: #232323;
}
.cid-t54MZC4xHF DIV {
  color: #ffffff;
}
.cid-t54MZC4xHF H10 {
  color: #767676;
}
.cid-t54MZC4xHF .hidden {
  display: none;
}
.cid-t47lcCfnd7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t47lcCfnd7 nav.navbar {
  position: fixed;
}
.cid-t47lcCfnd7 .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t47lcCfnd7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47lcCfnd7 .dropdown-menu {
  padding: 0;
}
.cid-t47lcCfnd7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47lcCfnd7 .dropdown-item:hover,
.cid-t47lcCfnd7 .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t47lcCfnd7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t47lcCfnd7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t47lcCfnd7 .nav-link {
  position: relative;
}
.cid-t47lcCfnd7 .container {
  display: flex;
  margin: auto;
}
.cid-t47lcCfnd7 .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t47lcCfnd7 .navbar-caption {
  padding-right: 4rem;
}
.cid-t47lcCfnd7 .dropdown-menu,
.cid-t47lcCfnd7 .navbar.opened {
  background: #563a25 !important;
}
.cid-t47lcCfnd7 .nav-item:focus,
.cid-t47lcCfnd7 .nav-link:focus {
  outline: none;
}
.cid-t47lcCfnd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t47lcCfnd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t47lcCfnd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t47lcCfnd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47lcCfnd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t47lcCfnd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t47lcCfnd7 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t47lcCfnd7 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47lcCfnd7 .navbar.opened {
  transition: all .3s;
}
.cid-t47lcCfnd7 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t47lcCfnd7 .navbar .navbar-logo img {
  width: auto;
}
.cid-t47lcCfnd7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t47lcCfnd7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t47lcCfnd7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t47lcCfnd7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t47lcCfnd7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t47lcCfnd7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t47lcCfnd7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t47lcCfnd7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t47lcCfnd7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t47lcCfnd7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t47lcCfnd7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t47lcCfnd7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t47lcCfnd7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t47lcCfnd7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t47lcCfnd7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t47lcCfnd7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t47lcCfnd7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t47lcCfnd7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t47lcCfnd7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t47lcCfnd7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t47lcCfnd7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t47lcCfnd7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t47lcCfnd7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t47lcCfnd7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t47lcCfnd7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t47lcCfnd7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t47lcCfnd7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t47lcCfnd7 .dropdown-item.active,
.cid-t47lcCfnd7 .dropdown-item:active {
  background-color: transparent;
}
.cid-t47lcCfnd7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t47lcCfnd7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t47lcCfnd7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t47lcCfnd7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t47lcCfnd7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t47lcCfnd7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t47lcCfnd7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t47lcCfnd7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t47lcCfnd7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t47lcCfnd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t47lcCfnd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t47lcCfnd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t47lcCfnd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t47lcCfnd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t47lcCfnd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t47lcCfnd7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t47lcCfnd7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t47lcCfnd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t47lcCfnd7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t47lcCfnd7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t47lcCfnd7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t47lcCfnd7 .navbar {
    height: 77px;
  }
  .cid-t47lcCfnd7 .navbar.opened {
    height: auto;
  }
  .cid-t47lcCfnd7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t47mgHp2xq {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t47mgHp2xq .mbr-section-subtitle {
  color: #3a7454;
}
.cid-t47mfnSKbw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t47mfnSKbw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t47mfnSKbw .row {
  flex-direction: row-reverse;
}
.cid-t47mfnSKbw img {
  width: 100%;
}
.cid-t47mB2wDmK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t47mB2wDmK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t47mB2wDmK .row {
  flex-direction: row-reverse;
}
.cid-t47mB2wDmK img {
  width: 100%;
}
.cid-t47mJknhXc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-t47mJknhXc .container {
    max-width: 1400px;
  }
}
.cid-t47mJknhXc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-t47mJknhXc .card-wrapper {
  margin-top: 3rem;
}
.cid-t47mJknhXc .row {
  justify-content: center;
}
.cid-t47mJknhXc .card-title,
.cid-t47mJknhXc .iconfont-wrapper {
  color: #3a7454;
}
.cid-t47mJknhXc .card-text {
  text-align: center;
}
.cid-t47lcDWGRJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t47lcDWGRJ .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t47lcDWGRJ .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t47lcDWGRJ .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t47lcDWGRJ .bg-instagram:hover {
  background: #bd005c;
}
.cid-t47lcDWGRJ .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t47lcDWGRJ .bg-youtube:hover {
  background: #cc0000;
}
.cid-t47lcDWGRJ .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t47lcDWGRJ [class^="socicon-"]:before,
.cid-t47lcDWGRJ [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t47lcDWGRJ .mbr-section-title,
.cid-t47lcDWGRJ .social-list {
  color: #3a7454;
}
.cid-t47lcEH5MC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a7454;
}
.cid-t47lcEH5MC .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t47lcEH5MC .card-box {
  z-index: 2;
  position: relative;
}
.cid-t47lcEH5MC .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #3a7454;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t47lcEH5MC .mbr-iconfont-big {
  font-size: 14rem;
  color: #3a7454;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t47lcEH5MC .card-title,
.cid-t47lcEH5MC .card-text {
  transition: all 0.3s;
}
.cid-t47lcEH5MC .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #3a7454;
  transition: all 0.3s;
}
.cid-t47lcEH5MC .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t47lcEH5MC .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t47lcEH5MC .card-title,
.cid-t47lcEH5MC .iconfont-wrapper {
  color: #ffffff;
}
.cid-t47lcEH5MC .card-text {
  color: #bbbbbb;
}
.cid-t47lcEH5MC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t47lcEH5MC .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t47lcFtrV1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54Ooz7o9e .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54Ooz7o9e .my-float {
  margin-top: 16px;
}
.cid-t54Ooz7o9e P {
  color: #232323;
}
.cid-t54Ooz7o9e DIV {
  color: #ffffff;
}
.cid-t54Ooz7o9e H10 {
  color: #767676;
}
.cid-t54Ooz7o9e .hidden {
  display: none;
}
.cid-t47bNvwvAf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t47bNvwvAf nav.navbar {
  position: fixed;
}
.cid-t47bNvwvAf .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t47bNvwvAf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47bNvwvAf .dropdown-menu {
  padding: 0;
}
.cid-t47bNvwvAf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47bNvwvAf .dropdown-item:hover,
.cid-t47bNvwvAf .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t47bNvwvAf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t47bNvwvAf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t47bNvwvAf .nav-link {
  position: relative;
}
.cid-t47bNvwvAf .container {
  display: flex;
  margin: auto;
}
.cid-t47bNvwvAf .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t47bNvwvAf .navbar-caption {
  padding-right: 4rem;
}
.cid-t47bNvwvAf .dropdown-menu,
.cid-t47bNvwvAf .navbar.opened {
  background: #563a25 !important;
}
.cid-t47bNvwvAf .nav-item:focus,
.cid-t47bNvwvAf .nav-link:focus {
  outline: none;
}
.cid-t47bNvwvAf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t47bNvwvAf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t47bNvwvAf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t47bNvwvAf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47bNvwvAf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t47bNvwvAf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t47bNvwvAf .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t47bNvwvAf .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47bNvwvAf .navbar.opened {
  transition: all .3s;
}
.cid-t47bNvwvAf .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t47bNvwvAf .navbar .navbar-logo img {
  width: auto;
}
.cid-t47bNvwvAf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t47bNvwvAf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t47bNvwvAf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t47bNvwvAf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t47bNvwvAf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t47bNvwvAf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t47bNvwvAf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t47bNvwvAf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t47bNvwvAf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t47bNvwvAf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t47bNvwvAf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t47bNvwvAf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t47bNvwvAf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t47bNvwvAf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t47bNvwvAf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t47bNvwvAf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t47bNvwvAf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t47bNvwvAf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t47bNvwvAf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t47bNvwvAf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t47bNvwvAf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t47bNvwvAf .navbar.navbar-short {
  min-height: 60px;
}
.cid-t47bNvwvAf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t47bNvwvAf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t47bNvwvAf .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t47bNvwvAf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t47bNvwvAf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t47bNvwvAf .dropdown-item.active,
.cid-t47bNvwvAf .dropdown-item:active {
  background-color: transparent;
}
.cid-t47bNvwvAf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t47bNvwvAf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t47bNvwvAf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t47bNvwvAf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t47bNvwvAf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t47bNvwvAf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t47bNvwvAf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t47bNvwvAf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t47bNvwvAf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t47bNvwvAf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t47bNvwvAf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t47bNvwvAf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t47bNvwvAf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t47bNvwvAf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t47bNvwvAf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t47bNvwvAf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t47bNvwvAf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t47bNvwvAf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t47bNvwvAf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t47bNvwvAf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t47bNvwvAf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t47bNvwvAf .navbar {
    height: 77px;
  }
  .cid-t47bNvwvAf .navbar.opened {
    height: auto;
  }
  .cid-t47bNvwvAf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t47c0P6i6K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t47c0P6i6K .mbr-section-title {
  color: #3a7454;
}
.cid-t47c4NnukW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t47dXHuAID {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t47dXHuAID .item {
  padding-bottom: 2rem;
}
.cid-t47dXHuAID .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t47dXHuAID .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t47dXHuAID .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t47dXHuAID .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t47dXHuAID .carousel-control,
.cid-t47dXHuAID .close {
  background: #1b1b1b;
}
.cid-t47dXHuAID .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t47dXHuAID .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t47dXHuAID .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t47dXHuAID .carousel-control-next span {
  margin-left: 5px;
}
.cid-t47dXHuAID .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t47dXHuAID .close::before {
  content: '\e91a';
}
.cid-t47dXHuAID .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t47dXHuAID .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t47dXHuAID .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t47dXHuAID .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t47dXHuAID .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t47dXHuAID .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t47dXHuAID .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t47dXHuAID .carousel-indicators li.active,
.cid-t47dXHuAID .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t47dXHuAID .carousel-indicators li::after,
.cid-t47dXHuAID .carousel-indicators li::before {
  content: none;
}
.cid-t47dXHuAID .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t47dXHuAID .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t47dXHuAID .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t47dXHuAID .carousel-indicators {
    display: none;
  }
}
.cid-t47dXHuAID .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t47dXHuAID .carousel-inner > .active {
  display: block;
}
.cid-t47dXHuAID .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t47dXHuAID .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t47dXHuAID .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t47dXHuAID .carousel-control,
  .cid-t47dXHuAID .carousel-indicators,
  .cid-t47dXHuAID .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t47dXHuAID .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t47dXHuAID .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t47dXHuAID .carousel-indicators .active,
.cid-t47dXHuAID .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t47dXHuAID .carousel-indicators .active {
  background: #fff;
}
.cid-t47dXHuAID .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t47dXHuAID .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t47dXHuAID .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t47dXHuAID .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t47dXHuAID .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t47dXHuAID .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t47dXHuAID .carousel {
  width: 100%;
}
.cid-t47dXHuAID .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t47dXHuAID .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t47dXHuAID .modal.fade .modal-dialog,
.cid-t47dXHuAID .modal.in .modal-dialog {
  transform: none;
}
.cid-t47dXHuAID .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t47dXHuAID H6 {
  text-align: center;
}
.cid-t47h0TD51v {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-t47h0TD51v .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t47h0TD51v H4 {
  color: #3a7454;
  text-align: center;
}
.cid-t47bNxLPJe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t47bNxLPJe .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t47bNxLPJe .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t47bNxLPJe .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t47bNxLPJe .bg-instagram:hover {
  background: #bd005c;
}
.cid-t47bNxLPJe .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t47bNxLPJe .bg-youtube:hover {
  background: #cc0000;
}
.cid-t47bNxLPJe .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t47bNxLPJe [class^="socicon-"]:before,
.cid-t47bNxLPJe [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t47bNxLPJe .mbr-section-title,
.cid-t47bNxLPJe .social-list {
  color: #3a7454;
}
.cid-t54NaCAenj .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54NaCAenj .my-float {
  margin-top: 16px;
}
.cid-t54NaCAenj P {
  color: #232323;
}
.cid-t54NaCAenj DIV {
  color: #ffffff;
}
.cid-t54NaCAenj H10 {
  color: #767676;
}
.cid-t54NaCAenj .hidden {
  display: none;
}
.cid-t47bNzgMNw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a7454;
}
.cid-t47bNzgMNw .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t47bNzgMNw .card-box {
  z-index: 2;
  position: relative;
}
.cid-t47bNzgMNw .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #3a7454;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t47bNzgMNw .mbr-iconfont-big {
  font-size: 14rem;
  color: #3a7454;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t47bNzgMNw .card-title,
.cid-t47bNzgMNw .card-text {
  transition: all 0.3s;
}
.cid-t47bNzgMNw .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #3a7454;
  transition: all 0.3s;
}
.cid-t47bNzgMNw .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t47bNzgMNw .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t47bNzgMNw .card-title,
.cid-t47bNzgMNw .iconfont-wrapper {
  color: #ffffff;
}
.cid-t47bNzgMNw .card-text {
  color: #bbbbbb;
}
.cid-t47bNzgMNw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t47bNzgMNw .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t47bNB32U3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t47yhZvNky {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t47yhZvNky nav.navbar {
  position: fixed;
}
.cid-t47yhZvNky .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t47yhZvNky .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47yhZvNky .dropdown-menu {
  padding: 0;
}
.cid-t47yhZvNky .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47yhZvNky .dropdown-item:hover,
.cid-t47yhZvNky .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t47yhZvNky .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t47yhZvNky .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t47yhZvNky .nav-link {
  position: relative;
}
.cid-t47yhZvNky .container {
  display: flex;
  margin: auto;
}
.cid-t47yhZvNky .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t47yhZvNky .navbar-caption {
  padding-right: 4rem;
}
.cid-t47yhZvNky .dropdown-menu,
.cid-t47yhZvNky .navbar.opened {
  background: #563a25 !important;
}
.cid-t47yhZvNky .nav-item:focus,
.cid-t47yhZvNky .nav-link:focus {
  outline: none;
}
.cid-t47yhZvNky .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t47yhZvNky .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t47yhZvNky .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t47yhZvNky .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t47yhZvNky .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t47yhZvNky .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t47yhZvNky .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t47yhZvNky .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t47yhZvNky .navbar.opened {
  transition: all .3s;
}
.cid-t47yhZvNky .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t47yhZvNky .navbar .navbar-logo img {
  width: auto;
}
.cid-t47yhZvNky .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t47yhZvNky .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t47yhZvNky .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t47yhZvNky .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t47yhZvNky .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t47yhZvNky .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t47yhZvNky .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t47yhZvNky .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t47yhZvNky .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t47yhZvNky .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t47yhZvNky .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t47yhZvNky .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t47yhZvNky .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t47yhZvNky .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t47yhZvNky .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t47yhZvNky .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t47yhZvNky .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t47yhZvNky .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t47yhZvNky .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t47yhZvNky .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t47yhZvNky .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t47yhZvNky .navbar.navbar-short {
  min-height: 60px;
}
.cid-t47yhZvNky .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t47yhZvNky .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t47yhZvNky .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t47yhZvNky .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t47yhZvNky .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t47yhZvNky .dropdown-item.active,
.cid-t47yhZvNky .dropdown-item:active {
  background-color: transparent;
}
.cid-t47yhZvNky .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t47yhZvNky .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t47yhZvNky .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t47yhZvNky .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t47yhZvNky .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t47yhZvNky .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t47yhZvNky ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t47yhZvNky .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t47yhZvNky button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t47yhZvNky button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t47yhZvNky button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t47yhZvNky button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t47yhZvNky button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t47yhZvNky button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t47yhZvNky nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t47yhZvNky nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t47yhZvNky nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t47yhZvNky nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t47yhZvNky .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t47yhZvNky a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t47yhZvNky .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t47yhZvNky .navbar {
    height: 77px;
  }
  .cid-t47yhZvNky .navbar.opened {
    height: auto;
  }
  .cid-t47yhZvNky .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t47yi0pvVf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t47yi0pvVf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t47yi0pvVf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t47yi0pvVf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t47yi0pvVf .mbr-section-title {
  color: #3a7454;
}
.cid-t47yi0pvVf .mbr-text,
.cid-t47yi0pvVf .mbr-section-btn {
  color: #3a7454;
  text-align: center;
}
.cid-t47yi1frDO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t47yi1frDO .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t47yi1frDO .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t47yi1frDO .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t47yi1frDO .bg-instagram:hover {
  background: #bd005c;
}
.cid-t47yi1frDO .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t47yi1frDO .bg-youtube:hover {
  background: #cc0000;
}
.cid-t47yi1frDO .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t47yi1frDO [class^="socicon-"]:before,
.cid-t47yi1frDO [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t47yi1frDO .mbr-section-title,
.cid-t47yi1frDO .social-list {
  color: #3a7454;
}
.cid-t47yi2a706 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a7454;
}
.cid-t47yi2a706 .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t47yi2a706 .card-box {
  z-index: 2;
  position: relative;
}
.cid-t47yi2a706 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #3a7454;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t47yi2a706 .mbr-iconfont-big {
  font-size: 14rem;
  color: #3a7454;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t47yi2a706 .card-title,
.cid-t47yi2a706 .card-text {
  transition: all 0.3s;
}
.cid-t47yi2a706 .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #3a7454;
  transition: all 0.3s;
}
.cid-t47yi2a706 .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t47yi2a706 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t47yi2a706 .card-title,
.cid-t47yi2a706 .iconfont-wrapper {
  color: #ffffff;
}
.cid-t47yi2a706 .card-text {
  color: #bbbbbb;
}
.cid-t47yi2a706 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t47yi2a706 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t47yi2ViBz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54OacxOHi .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54OacxOHi .my-float {
  margin-top: 16px;
}
.cid-t54OacxOHi P {
  color: #232323;
}
.cid-t54OacxOHi DIV {
  color: #ffffff;
}
.cid-t54OacxOHi H10 {
  color: #767676;
}
.cid-t54OacxOHi .hidden {
  display: none;
}
.cid-t3zHANiYYu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t3zHANiYYu nav.navbar {
  position: fixed;
}
.cid-t3zHANiYYu .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t3zHANiYYu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3zHANiYYu .dropdown-menu {
  padding: 0;
}
.cid-t3zHANiYYu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3zHANiYYu .dropdown-item:hover,
.cid-t3zHANiYYu .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t3zHANiYYu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3zHANiYYu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3zHANiYYu .nav-link {
  position: relative;
}
.cid-t3zHANiYYu .container {
  display: flex;
  margin: auto;
}
.cid-t3zHANiYYu .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3zHANiYYu .navbar-caption {
  padding-right: 4rem;
}
.cid-t3zHANiYYu .dropdown-menu,
.cid-t3zHANiYYu .navbar.opened {
  background: #563a25 !important;
}
.cid-t3zHANiYYu .nav-item:focus,
.cid-t3zHANiYYu .nav-link:focus {
  outline: none;
}
.cid-t3zHANiYYu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3zHANiYYu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3zHANiYYu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t3zHANiYYu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3zHANiYYu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3zHANiYYu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3zHANiYYu .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t3zHANiYYu .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3zHANiYYu .navbar.opened {
  transition: all .3s;
}
.cid-t3zHANiYYu .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3zHANiYYu .navbar .navbar-logo img {
  width: auto;
}
.cid-t3zHANiYYu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3zHANiYYu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3zHANiYYu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3zHANiYYu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t3zHANiYYu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3zHANiYYu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3zHANiYYu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t3zHANiYYu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3zHANiYYu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3zHANiYYu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3zHANiYYu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3zHANiYYu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3zHANiYYu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3zHANiYYu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3zHANiYYu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t3zHANiYYu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t3zHANiYYu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3zHANiYYu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3zHANiYYu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3zHANiYYu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3zHANiYYu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3zHANiYYu .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3zHANiYYu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t3zHANiYYu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t3zHANiYYu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3zHANiYYu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3zHANiYYu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3zHANiYYu .dropdown-item.active,
.cid-t3zHANiYYu .dropdown-item:active {
  background-color: transparent;
}
.cid-t3zHANiYYu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3zHANiYYu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3zHANiYYu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3zHANiYYu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t3zHANiYYu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3zHANiYYu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3zHANiYYu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3zHANiYYu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3zHANiYYu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3zHANiYYu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t3zHANiYYu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3zHANiYYu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3zHANiYYu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3zHANiYYu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3zHANiYYu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3zHANiYYu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3zHANiYYu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3zHANiYYu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3zHANiYYu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t3zHANiYYu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3zHANiYYu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3zHANiYYu .navbar {
    height: 77px;
  }
  .cid-t3zHANiYYu .navbar.opened {
    height: auto;
  }
  .cid-t3zHANiYYu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3zHAOH4KA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t3zHAOH4KA .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3zHAOH4KA .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3zHAOH4KA .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3zHAOH4KA .mbr-section-title {
  color: #db7720;
}
.cid-t3zHAOH4KA .mbr-text,
.cid-t3zHAOH4KA .mbr-section-btn {
  color: #db7720;
  text-align: center;
}
.cid-t3zHASbpXP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #db7720;
}
.cid-t3zHASbpXP .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t3zHASbpXP .card-box {
  z-index: 2;
  position: relative;
}
.cid-t3zHASbpXP .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #db7720;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t3zHASbpXP .mbr-iconfont-big {
  font-size: 14rem;
  color: #db7720;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t3zHASbpXP .card-title,
.cid-t3zHASbpXP .card-text {
  transition: all 0.3s;
}
.cid-t3zHASbpXP .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #db7720;
  transition: all 0.3s;
}
.cid-t3zHASbpXP .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t3zHASbpXP .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t3zHASbpXP .card-title,
.cid-t3zHASbpXP .iconfont-wrapper {
  color: #ffffff;
}
.cid-t3zHASbpXP .card-text {
  color: #fafafa;
}
.cid-t3zHASbpXP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t3zHASbpXP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t3zHATiRgb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54Nh9e54N .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #db7720;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54Nh9e54N .my-float {
  margin-top: 16px;
}
.cid-t54Nh9e54N P {
  color: #232323;
}
.cid-t54Nh9e54N DIV {
  color: #ffffff;
}
.cid-t54Nh9e54N H10 {
  color: #767676;
}
.cid-t54Nh9e54N .hidden {
  display: none;
}
.cid-t3LuyIHFWW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t3LuyIHFWW .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t3LuyIHFWW .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t3LuyIHFWW .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t3LuyIHFWW .bg-instagram:hover {
  background: #bd005c;
}
.cid-t3LuyIHFWW .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t3LuyIHFWW .bg-youtube:hover {
  background: #cc0000;
}
.cid-t3LuyIHFWW .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t3LuyIHFWW [class^="socicon-"]:before,
.cid-t3LuyIHFWW [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t3LuyIHFWW .mbr-section-title,
.cid-t3LuyIHFWW .social-list {
  color: #3a7454;
}
.cid-t2l1kf6N4C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t2l1kf6N4C nav.navbar {
  position: fixed;
}
.cid-t2l1kf6N4C .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t2l1kf6N4C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2l1kf6N4C .dropdown-menu {
  padding: 0;
}
.cid-t2l1kf6N4C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2l1kf6N4C .dropdown-item:hover,
.cid-t2l1kf6N4C .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t2l1kf6N4C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t2l1kf6N4C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t2l1kf6N4C .nav-link {
  position: relative;
}
.cid-t2l1kf6N4C .container {
  display: flex;
  margin: auto;
}
.cid-t2l1kf6N4C .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t2l1kf6N4C .navbar-caption {
  padding-right: 4rem;
}
.cid-t2l1kf6N4C .dropdown-menu,
.cid-t2l1kf6N4C .navbar.opened {
  background: #563a25 !important;
}
.cid-t2l1kf6N4C .nav-item:focus,
.cid-t2l1kf6N4C .nav-link:focus {
  outline: none;
}
.cid-t2l1kf6N4C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2l1kf6N4C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2l1kf6N4C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t2l1kf6N4C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2l1kf6N4C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2l1kf6N4C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2l1kf6N4C .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t2l1kf6N4C .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t2l1kf6N4C .navbar.opened {
  transition: all .3s;
}
.cid-t2l1kf6N4C .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t2l1kf6N4C .navbar .navbar-logo img {
  width: auto;
}
.cid-t2l1kf6N4C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t2l1kf6N4C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2l1kf6N4C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2l1kf6N4C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t2l1kf6N4C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2l1kf6N4C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2l1kf6N4C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t2l1kf6N4C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2l1kf6N4C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t2l1kf6N4C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t2l1kf6N4C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2l1kf6N4C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2l1kf6N4C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2l1kf6N4C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2l1kf6N4C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t2l1kf6N4C .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t2l1kf6N4C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2l1kf6N4C .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2l1kf6N4C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2l1kf6N4C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2l1kf6N4C .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t2l1kf6N4C .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2l1kf6N4C .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t2l1kf6N4C .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t2l1kf6N4C .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t2l1kf6N4C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2l1kf6N4C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2l1kf6N4C .dropdown-item.active,
.cid-t2l1kf6N4C .dropdown-item:active {
  background-color: transparent;
}
.cid-t2l1kf6N4C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2l1kf6N4C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2l1kf6N4C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2l1kf6N4C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t2l1kf6N4C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2l1kf6N4C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2l1kf6N4C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2l1kf6N4C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t2l1kf6N4C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t2l1kf6N4C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t2l1kf6N4C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t2l1kf6N4C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t2l1kf6N4C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t2l1kf6N4C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t2l1kf6N4C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2l1kf6N4C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t2l1kf6N4C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t2l1kf6N4C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2l1kf6N4C .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t2l1kf6N4C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2l1kf6N4C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2l1kf6N4C .navbar {
    height: 77px;
  }
  .cid-t2l1kf6N4C .navbar.opened {
    height: auto;
  }
  .cid-t2l1kf6N4C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2Ig7wgCs6 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #3a7454;
}
.cid-t2Ig7wgCs6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t2Ig7wgCs6 .googleCalendar {
  position: relative;
  height: 0;
  width: 50%;
  padding-bottom: 50%;
}
.cid-t2Ig7wgCs6 .googleCalendar iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.cid-t2IHK4uY1y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t4O0QhCumt .float {
  position: fixed;
  width: 60px;
  height: 64px;
  bottom: 34px;
  right: 35px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 58px;
  text-align: center;
  font-size: 38px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t4O0QhCumt .my-float {
  margin-top: 16px;
}
.cid-t4O0QhCumt P {
  color: #232323;
}
.cid-t4O0QhCumt DIV {
  color: #ffffff;
}
.cid-t4O0QhCumt H10 {
  color: #767676;
}
.cid-t4O0QhCumt .hidden {
  display: none;
}
.cid-t3z6docbKO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t3z6docbKO nav.navbar {
  position: fixed;
}
.cid-t3z6docbKO .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t3z6docbKO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3z6docbKO .dropdown-menu {
  padding: 0;
}
.cid-t3z6docbKO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3z6docbKO .dropdown-item:hover,
.cid-t3z6docbKO .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t3z6docbKO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3z6docbKO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3z6docbKO .nav-link {
  position: relative;
}
.cid-t3z6docbKO .container {
  display: flex;
  margin: auto;
}
.cid-t3z6docbKO .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3z6docbKO .navbar-caption {
  padding-right: 4rem;
}
.cid-t3z6docbKO .dropdown-menu,
.cid-t3z6docbKO .navbar.opened {
  background: #563a25 !important;
}
.cid-t3z6docbKO .nav-item:focus,
.cid-t3z6docbKO .nav-link:focus {
  outline: none;
}
.cid-t3z6docbKO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3z6docbKO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3z6docbKO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t3z6docbKO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3z6docbKO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3z6docbKO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3z6docbKO .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t3z6docbKO .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3z6docbKO .navbar.opened {
  transition: all .3s;
}
.cid-t3z6docbKO .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3z6docbKO .navbar .navbar-logo img {
  width: auto;
}
.cid-t3z6docbKO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3z6docbKO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3z6docbKO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3z6docbKO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t3z6docbKO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3z6docbKO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3z6docbKO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t3z6docbKO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3z6docbKO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3z6docbKO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3z6docbKO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3z6docbKO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3z6docbKO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3z6docbKO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3z6docbKO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t3z6docbKO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t3z6docbKO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3z6docbKO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3z6docbKO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3z6docbKO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3z6docbKO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3z6docbKO .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3z6docbKO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t3z6docbKO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t3z6docbKO .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3z6docbKO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3z6docbKO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3z6docbKO .dropdown-item.active,
.cid-t3z6docbKO .dropdown-item:active {
  background-color: transparent;
}
.cid-t3z6docbKO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3z6docbKO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3z6docbKO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3z6docbKO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t3z6docbKO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3z6docbKO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3z6docbKO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3z6docbKO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3z6docbKO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3z6docbKO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t3z6docbKO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3z6docbKO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3z6docbKO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3z6docbKO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3z6docbKO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3z6docbKO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3z6docbKO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3z6docbKO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3z6docbKO .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t3z6docbKO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3z6docbKO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3z6docbKO .navbar {
    height: 77px;
  }
  .cid-t3z6docbKO .navbar.opened {
    height: auto;
  }
  .cid-t3z6docbKO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3z6r0dDmB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t3z6r0dDmB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3z6r0dDmB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3z6r0dDmB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3z6r0dDmB .mbr-section-title {
  color: #563a25;
}
.cid-t3z6r0dDmB .mbr-text,
.cid-t3z6r0dDmB .mbr-section-btn {
  color: #563a25;
  text-align: center;
}
.cid-t3z6dqp6Rz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #563a25;
}
.cid-t3z6dqp6Rz .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t3z6dqp6Rz .card-box {
  z-index: 2;
  position: relative;
}
.cid-t3z6dqp6Rz .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #563a25;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t3z6dqp6Rz .mbr-iconfont-big {
  font-size: 14rem;
  color: #563a25;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t3z6dqp6Rz .card-title,
.cid-t3z6dqp6Rz .card-text {
  transition: all 0.3s;
}
.cid-t3z6dqp6Rz .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #563a25;
  transition: all 0.3s;
}
.cid-t3z6dqp6Rz .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t3z6dqp6Rz .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t3z6dqp6Rz .card-title,
.cid-t3z6dqp6Rz .iconfont-wrapper {
  color: #ffffff;
}
.cid-t3z6dqp6Rz .card-text {
  color: #fafafa;
}
.cid-t3z6dqp6Rz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t3z6dqp6Rz .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t3z6dr7I8E {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54MUq4UTO .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #563a25;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54MUq4UTO .my-float {
  margin-top: 16px;
}
.cid-t54MUq4UTO P {
  color: #232323;
}
.cid-t54MUq4UTO DIV {
  color: #ffffff;
}
.cid-t54MUq4UTO H10 {
  color: #767676;
}
.cid-t54MUq4UTO .hidden {
  display: none;
}
.cid-u2otbbISAy .float {
  width: 77px;
  height: 79px;
  bottom: 122px;
  right: 39px;
  background-color: #563a25;
  color: #ffffff;
  border-radius: 46px;
  font-size: 47px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  position: fixed;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.cid-u2otbbISAy .my-float {
  margin-top: 16px;
}
.cid-u2otbbISAy P {
  color: #232323;
}
.cid-u2otbbISAy DIV {
  color: #ffffff;
}
.cid-u2otbbISAy H10 {
  color: #767676;
}
.cid-u2otbbISAy .hidden {
  display: none;
}
.cid-t55nMBjKyC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t55nMBjKyC nav.navbar {
  position: fixed;
}
.cid-t55nMBjKyC .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t55nMBjKyC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t55nMBjKyC .dropdown-menu {
  padding: 0;
}
.cid-t55nMBjKyC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t55nMBjKyC .dropdown-item:hover,
.cid-t55nMBjKyC .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t55nMBjKyC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t55nMBjKyC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t55nMBjKyC .nav-link {
  position: relative;
}
.cid-t55nMBjKyC .container {
  display: flex;
  margin: auto;
}
.cid-t55nMBjKyC .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t55nMBjKyC .navbar-caption {
  padding-right: 4rem;
}
.cid-t55nMBjKyC .dropdown-menu,
.cid-t55nMBjKyC .navbar.opened {
  background: #563a25 !important;
}
.cid-t55nMBjKyC .nav-item:focus,
.cid-t55nMBjKyC .nav-link:focus {
  outline: none;
}
.cid-t55nMBjKyC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t55nMBjKyC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t55nMBjKyC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t55nMBjKyC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t55nMBjKyC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t55nMBjKyC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t55nMBjKyC .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t55nMBjKyC .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t55nMBjKyC .navbar.opened {
  transition: all .3s;
}
.cid-t55nMBjKyC .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t55nMBjKyC .navbar .navbar-logo img {
  width: auto;
}
.cid-t55nMBjKyC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t55nMBjKyC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t55nMBjKyC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t55nMBjKyC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t55nMBjKyC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t55nMBjKyC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t55nMBjKyC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t55nMBjKyC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t55nMBjKyC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t55nMBjKyC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t55nMBjKyC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t55nMBjKyC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t55nMBjKyC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t55nMBjKyC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t55nMBjKyC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t55nMBjKyC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t55nMBjKyC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t55nMBjKyC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t55nMBjKyC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t55nMBjKyC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t55nMBjKyC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t55nMBjKyC .navbar.navbar-short {
  min-height: 60px;
}
.cid-t55nMBjKyC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t55nMBjKyC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t55nMBjKyC .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t55nMBjKyC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t55nMBjKyC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t55nMBjKyC .dropdown-item.active,
.cid-t55nMBjKyC .dropdown-item:active {
  background-color: transparent;
}
.cid-t55nMBjKyC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t55nMBjKyC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t55nMBjKyC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t55nMBjKyC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t55nMBjKyC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t55nMBjKyC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t55nMBjKyC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t55nMBjKyC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t55nMBjKyC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t55nMBjKyC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t55nMBjKyC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t55nMBjKyC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t55nMBjKyC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t55nMBjKyC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t55nMBjKyC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t55nMBjKyC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t55nMBjKyC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t55nMBjKyC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t55nMBjKyC .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t55nMBjKyC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t55nMBjKyC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t55nMBjKyC .navbar {
    height: 77px;
  }
  .cid-t55nMBjKyC .navbar.opened {
    height: auto;
  }
  .cid-t55nMBjKyC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t55nNhNUFT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t55nNhNUFT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t55nNhNUFT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t55nNhNUFT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t55nNhNUFT .mbr-section-title {
  color: #3a7454;
  text-align: center;
}
.cid-t55nNhNUFT .mbr-text,
.cid-t55nNhNUFT .mbr-section-btn {
  color: #3a7454;
  text-align: center;
}
.cid-t55nNyDIbz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t55nNyDIbz .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t55nNyDIbz .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t55nNyDIbz .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t55nNyDIbz .bg-instagram:hover {
  background: #bd005c;
}
.cid-t55nNyDIbz .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t55nNyDIbz .bg-youtube:hover {
  background: #cc0000;
}
.cid-t55nNyDIbz .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t55nNyDIbz [class^="socicon-"]:before,
.cid-t55nNyDIbz [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t55nNyDIbz .mbr-section-title,
.cid-t55nNyDIbz .social-list {
  color: #3a7454;
}
.cid-t55nNDlrwQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a7454;
}
.cid-t55nNDlrwQ .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t55nNDlrwQ .card-box {
  z-index: 2;
  position: relative;
}
.cid-t55nNDlrwQ .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #3a7454;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t55nNDlrwQ .mbr-iconfont-big {
  font-size: 14rem;
  color: #3a7454;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t55nNDlrwQ .card-title,
.cid-t55nNDlrwQ .card-text {
  transition: all 0.3s;
}
.cid-t55nNDlrwQ .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #3a7454;
  transition: all 0.3s;
}
.cid-t55nNDlrwQ .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t55nNDlrwQ .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t55nNDlrwQ .card-title,
.cid-t55nNDlrwQ .iconfont-wrapper {
  color: #ffffff;
}
.cid-t55nNDlrwQ .card-text {
  color: #bbbbbb;
}
.cid-t55nNDlrwQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t55nNDlrwQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t55nNFkTAe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t55nNG4PIU .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t55nNG4PIU .my-float {
  margin-top: 16px;
}
.cid-t55nNG4PIU P {
  color: #232323;
}
.cid-t55nNG4PIU DIV {
  color: #ffffff;
}
.cid-t55nNG4PIU H10 {
  color: #767676;
}
.cid-t55nNG4PIU .hidden {
  display: none;
}
.cid-t3zFzheiyz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-t3zFzheiyz nav.navbar {
  position: fixed;
}
.cid-t3zFzheiyz .corpo {
  width: 200px;
  min-height: 50px;
  background-color: green;
}
.cid-t3zFzheiyz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3zFzheiyz .dropdown-menu {
  padding: 0;
}
.cid-t3zFzheiyz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3zFzheiyz .dropdown-item:hover,
.cid-t3zFzheiyz .dropdown-item:focus {
  background: #563a25 !important;
  color: white !important;
}
.cid-t3zFzheiyz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t3zFzheiyz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3zFzheiyz .nav-link {
  position: relative;
}
.cid-t3zFzheiyz .container {
  display: flex;
  margin: auto;
}
.cid-t3zFzheiyz .iconfont-wrapper {
  color: #fafafa !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3zFzheiyz .navbar-caption {
  padding-right: 4rem;
}
.cid-t3zFzheiyz .dropdown-menu,
.cid-t3zFzheiyz .navbar.opened {
  background: #563a25 !important;
}
.cid-t3zFzheiyz .nav-item:focus,
.cid-t3zFzheiyz .nav-link:focus {
  outline: none;
}
.cid-t3zFzheiyz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3zFzheiyz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3zFzheiyz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t3zFzheiyz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3zFzheiyz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3zFzheiyz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3zFzheiyz .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #563a25;
}
.cid-t3zFzheiyz .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3zFzheiyz .navbar.opened {
  transition: all .3s;
}
.cid-t3zFzheiyz .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t3zFzheiyz .navbar .navbar-logo img {
  width: auto;
}
.cid-t3zFzheiyz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3zFzheiyz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3zFzheiyz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3zFzheiyz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-t3zFzheiyz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3zFzheiyz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3zFzheiyz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t3zFzheiyz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3zFzheiyz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t3zFzheiyz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t3zFzheiyz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3zFzheiyz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3zFzheiyz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3zFzheiyz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3zFzheiyz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t3zFzheiyz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t3zFzheiyz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3zFzheiyz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3zFzheiyz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3zFzheiyz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3zFzheiyz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t3zFzheiyz .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3zFzheiyz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t3zFzheiyz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t3zFzheiyz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3zFzheiyz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3zFzheiyz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3zFzheiyz .dropdown-item.active,
.cid-t3zFzheiyz .dropdown-item:active {
  background-color: transparent;
}
.cid-t3zFzheiyz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3zFzheiyz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3zFzheiyz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3zFzheiyz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #563a25;
}
.cid-t3zFzheiyz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3zFzheiyz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3zFzheiyz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3zFzheiyz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3zFzheiyz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t3zFzheiyz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t3zFzheiyz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3zFzheiyz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3zFzheiyz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3zFzheiyz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3zFzheiyz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3zFzheiyz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3zFzheiyz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3zFzheiyz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3zFzheiyz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t3zFzheiyz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3zFzheiyz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3zFzheiyz .navbar {
    height: 77px;
  }
  .cid-t3zFzheiyz .navbar.opened {
    height: auto;
  }
  .cid-t3zFzheiyz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3zFziOuwP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t3zFziOuwP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3zFziOuwP .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3zFziOuwP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3zFziOuwP .mbr-section-title {
  color: #3a7454;
}
.cid-t3zFziOuwP .mbr-text,
.cid-t3zFziOuwP .mbr-section-btn {
  color: #3a7454;
  text-align: center;
}
.cid-t3zFzk3xxB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t3zFzk3xxB .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t3zFzk3xxB .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t3zFzk3xxB .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t3zFzk3xxB .bg-instagram:hover {
  background: #bd005c;
}
.cid-t3zFzk3xxB .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t3zFzk3xxB .bg-youtube:hover {
  background: #cc0000;
}
.cid-t3zFzk3xxB .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t3zFzk3xxB [class^="socicon-"]:before,
.cid-t3zFzk3xxB [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t3zFzk3xxB .mbr-section-title,
.cid-t3zFzk3xxB .social-list {
  color: #3a7454;
}
.cid-t3zFzlpRlO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3a7454;
}
.cid-t3zFzlpRlO .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-t3zFzlpRlO .card-box {
  z-index: 2;
  position: relative;
}
.cid-t3zFzlpRlO .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #3a7454;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-t3zFzlpRlO .mbr-iconfont-big {
  font-size: 14rem;
  color: #3a7454;
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-t3zFzlpRlO .card-title,
.cid-t3zFzlpRlO .card-text {
  transition: all 0.3s;
}
.cid-t3zFzlpRlO .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #3a7454;
  transition: all 0.3s;
}
.cid-t3zFzlpRlO .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-t3zFzlpRlO .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t3zFzlpRlO .card-title,
.cid-t3zFzlpRlO .iconfont-wrapper {
  color: #ffffff;
}
.cid-t3zFzlpRlO .card-text {
  color: #bbbbbb;
}
.cid-t3zFzlpRlO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t3zFzlpRlO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t3zFzmAIsQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #563a25;
  overflow: hidden;
}
.cid-t54N5nMfl2 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 41px;
  background-color: #3a7454;
  color: #ffffff;
  border-radius: 60px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-t54N5nMfl2 .my-float {
  margin-top: 16px;
}
.cid-t54N5nMfl2 P {
  color: #232323;
}
.cid-t54N5nMfl2 DIV {
  color: #ffffff;
}
.cid-t54N5nMfl2 H10 {
  color: #767676;
}
.cid-t54N5nMfl2 .hidden {
  display: none;
}
