body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Viaoda Libre', display;
  font-size: 4.625rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.78125rem;
}
.display-2 {
  font-family: 'Viaoda Libre', display;
  font-size: 3.125rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Viaoda Libre', display;
  font-size: 1.875rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2375rem;
    font-size: calc( 2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26875rem + (4.625 - 2.26875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #069f00 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #5b5b5b !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #069f00 !important;
  border-color: #069f00 !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #8ae90b;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  border-color: #8ae90b !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8ae90b !important;
  border-color: #8ae90b !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #8ae90b !important;
  border-color: #8ae90b !important;
  color: #000000 !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #069f00;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #069f00 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #069f00 !important;
  border-color: #069f00 !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #8ae90b;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #000000 !important;
  border-color: #8ae90b !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #8ae90b !important;
  border-color: #8ae90b !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #069f00;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #069f00 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #069f00 !important;
  border-color: #069f00 !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #069f00;
  color: #069f00;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #8ae90b;
  color: #8ae90b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #5fa008;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #8ae90b !important;
  border-color: #8ae90b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #d9d9d9;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #000000;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #5b5b5b;
  color: #5b5b5b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #353535;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b5b5b !important;
  border-color: #5b5b5b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !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 {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #069f00 !important;
}
.text-secondary {
  color: #8ae90b !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #5b5b5b !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #023900 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #508806 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #282828 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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;
}
.nav-tabs .nav-link.active {
  color: #069f00;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #5b5b5b;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #069f00;
  border-color: #069f00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #069f00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #28ff20;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: #9b9b9b;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #069f00;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #069f00;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #069f00;
}
.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: #069f00;
  border-bottom-color: #069f00;
}
.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: #069f00 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #8ae90b !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='%23069f00' %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-sJWxOYVx7U {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sJWxOYVx7U .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-sJWxOYVx7U nav.navbar {
  position: fixed;
}
.cid-sJWxOYVx7U .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-sJWxOYVx7U .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-sJWxOYVx7U .nav-item {
    height: auto;
  }
}
.cid-sJWxOYVx7U .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sJWxOYVx7U .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-sJWxOYVx7U .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sJWxOYVx7U .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sJWxOYVx7U .dropdown-item:hover,
.cid-sJWxOYVx7U .dropdown-item:focus {
  background: white !important;
}
.cid-sJWxOYVx7U .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sJWxOYVx7U .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sJWxOYVx7U .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-sJWxOYVx7U .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sJWxOYVx7U .nav-link {
  position: relative;
}
.cid-sJWxOYVx7U .container {
  display: flex;
  margin: auto;
}
.cid-sJWxOYVx7U .iconfont-wrapper {
  color: #83342a !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-sJWxOYVx7U .dropdown-menu,
.cid-sJWxOYVx7U .navbar.opened {
  background: #ffffff !important;
}
.cid-sJWxOYVx7U .nav-item:focus,
.cid-sJWxOYVx7U .nav-link:focus {
  outline: none;
}
.cid-sJWxOYVx7U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sJWxOYVx7U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sJWxOYVx7U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-sJWxOYVx7U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sJWxOYVx7U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJWxOYVx7U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJWxOYVx7U .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sJWxOYVx7U .navbar.opened {
  transition: all 0.3s;
}
.cid-sJWxOYVx7U .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sJWxOYVx7U .navbar .navbar-logo img {
  width: auto;
}
.cid-sJWxOYVx7U .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJWxOYVx7U .navbar.collapsed {
  justify-content: center;
}
.cid-sJWxOYVx7U .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJWxOYVx7U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJWxOYVx7U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-sJWxOYVx7U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJWxOYVx7U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sJWxOYVx7U .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sJWxOYVx7U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJWxOYVx7U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sJWxOYVx7U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sJWxOYVx7U .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJWxOYVx7U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJWxOYVx7U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJWxOYVx7U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sJWxOYVx7U .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sJWxOYVx7U .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sJWxOYVx7U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJWxOYVx7U .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sJWxOYVx7U .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sJWxOYVx7U .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sJWxOYVx7U .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sJWxOYVx7U .navbar.navbar-short {
  min-height: 60px;
}
.cid-sJWxOYVx7U .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sJWxOYVx7U .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sJWxOYVx7U .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJWxOYVx7U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJWxOYVx7U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJWxOYVx7U .dropdown-item.active,
.cid-sJWxOYVx7U .dropdown-item:active {
  background-color: transparent;
}
.cid-sJWxOYVx7U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sJWxOYVx7U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJWxOYVx7U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJWxOYVx7U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sJWxOYVx7U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJWxOYVx7U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJWxOYVx7U ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sJWxOYVx7U .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sJWxOYVx7U button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sJWxOYVx7U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282727;
}
.cid-sJWxOYVx7U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sJWxOYVx7U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sJWxOYVx7U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sJWxOYVx7U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sJWxOYVx7U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sJWxOYVx7U nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sJWxOYVx7U nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sJWxOYVx7U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sJWxOYVx7U .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sJWxOYVx7U a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sJWxOYVx7U .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJWxOYVx7U .navbar {
    height: 70px;
  }
  .cid-sJWxOYVx7U .navbar.opened {
    height: auto;
  }
  .cid-sJWxOYVx7U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seeAka30wu {
  background-image: url("../../../assets/images/banner-2-978x373.jpg");
}
.cid-seeAka30wu .animated-element {
  color: #ffffff;
}
.cid-seeAka30wu .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-seeAka30wu .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-seeAka30wu .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-seeAka30wu .mbr-section-text,
.cid-seeAka30wu .mbr-section-btn {
  color: #ffffff;
}
.cid-seeAka30wu .typed-text .typed-text {
  color: #ef8e81;
}
.cid-sKsd7esJrt {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/fundo-madeirao-1920x1143.png");
}
@media (min-width: 1200px) {
  .cid-sKsd7esJrt .content-wrapper {
    padding-right: 60px;
  }
}
.cid-sKsd7esJrt img {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sKsd7esJrt .content-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-sKsd7esJrt H1 {
  color: #8ae90b;
}
.cid-sJWJ6TcLRP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sJWJ6TcLRP .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sJWJ6TcLRP .modal-body .close {
  background: #1b1b1b;
}
.cid-sJWJ6TcLRP .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-sJWJ6TcLRP .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-sJWJ6TcLRP .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-sJWJ6TcLRP .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-sJWJ6TcLRP .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-sJWJ6TcLRP .container {
  max-width: 100%;
  padding: 0;
}
.cid-sJWJ6TcLRP .content-slider-wrap {
  width: 100%;
}
.cid-sJWJ6TcLRP .carousel-inner > .active,
.cid-sJWJ6TcLRP .carousel-inner > .next,
.cid-sJWJ6TcLRP .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-sJWJ6TcLRP .carousel-control .icon-next,
.cid-sJWJ6TcLRP .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sJWJ6TcLRP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sJWJ6TcLRP .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-sJWJ6TcLRP .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sJWJ6TcLRP .boxed-slider > div {
  position: relative;
}
.cid-sJWJ6TcLRP .container img {
  width: 100%;
}
.cid-sJWJ6TcLRP .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sJWJ6TcLRP .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sJWJ6TcLRP .mbr-table-cell {
  padding: 0;
}
.cid-sJWJ6TcLRP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sJWJ6TcLRP .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sJWJ6TcLRP .mbr-overlay {
  z-index: 1;
}
.cid-sJWJ6TcLRP .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sJWJ6TcLRP .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sJWJ6TcLRP .carousel-item.active.right,
.cid-sJWJ6TcLRP .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sJWJ6TcLRP .carousel-item.active.left,
.cid-sJWJ6TcLRP .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sJWJ6TcLRP .carousel-item.active,
.cid-sJWJ6TcLRP .carousel-item.next.left,
.cid-sJWJ6TcLRP .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-sJWJ6TcLRP .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-indicators li.active,
.cid-sJWJ6TcLRP .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-indicators li::after,
.cid-sJWJ6TcLRP .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sJWJ6TcLRP .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sJWJ6TcLRP .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sJWJ6TcLRP .mbr-slider > .container img {
  width: 100%;
}
.cid-sJWJ6TcLRP .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sJWJ6TcLRP .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sJWJ6TcLRP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sJWJ6TcLRP .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sJWJ6TcLRP .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sJWJ6TcLRP .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sJWJ6TcLRP .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sJWJ6TcLRP .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sJWJ6TcLRP .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sJWJ6TcLRP .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sJWJ6TcLRP .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sJWJ6TcLRP .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sJWJ6TcLRP .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sJWJ6TcLRP .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sJWJ6TcLRP .carousel-inner {
  height: 100%;
}
.cid-sJWJ6TcLRP .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sJWJ6TcLRP .image_wrapper {
  height: 530px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sJWJ6TcLRP .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sJWJ6TcLRP .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sJWJ6TcLRP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sJWJ6TcLRP .content-slider-wrap {
    width: 100%!important;
  }
  .cid-sJWJ6TcLRP .image_wrapper {
    height: 318px;
  }
}
.cid-sJWJ6TcLRP H2 {
  color: #ffffff;
}
.cid-sKrP7sNIES {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fundo-madeirao2-1920x1143.png");
}
.cid-sKrP7sNIES .row {
  flex-direction: row-reverse;
}
.cid-sKrP7sNIES .video-wrapper iframe {
  width: 100%;
}
.cid-sKrP7sNIES .mbr-section-title,
.cid-sKrP7sNIES .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sKrP7sNIES .text-wrapper {
    padding: 2rem;
  }
}
.cid-sKrP7sNIES .mbr-section-title {
  color: #8ae90b;
}
.cid-t9iXXJytql {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-t9iXXJytql .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-t9iXXJytql .title-text {
  color: #83342a;
  text-align: center;
}
.cid-t9iXXJytql H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-t9iXXJytql .section-text,
.cid-t9iXXJytql .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sKrQddLtOH {
  padding-top: 615px;
  background-image: url("../../../assets/images/reflorestamento-reflorestar-scaled-2000x1328.jpg");
}
.cid-sKs6KpKzyI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-madeirao1-1920x1143.png");
}
.cid-sKs6KpKzyI .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-sKs6KpKzyI .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: left;
}
.cid-sKs6KpKzyI .title-text {
  color: #8ae90b;
  text-align: left;
}
.cid-sKs6KpKzyI H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sKs6KpKzyI .section-text,
.cid-sKs6KpKzyI .mbr-section-btn {
  text-align: left;
  color: #4c4a4b;
}
.cid-t9jYFrhzbX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #069f00;
}
.cid-t9jYFrhzbX .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-t9jhIlDeDy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9jhIlDeDy .item-wrapper {
  width: 100%;
}
.cid-t9jhIlDeDy .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jhIlDeDy .row {
  align-items: center;
}
.cid-t9jhIlDeDy .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jhIlDeDy .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jhIlDeDy .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jhIlDeDy .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jhIlDeDy .col-auto {
  display: inline-block;
}
.cid-t9jhIlDeDy .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jhIlDeDy .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jhIlDeDy .right-side {
  padding-right: 0px;
}
.cid-t9jhIlDeDy .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jhIlDeDy .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jhIlDeDy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jhIlDeDy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jhIlDeDy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jhIlDeDy svg {
  margin-left: 15px;
}
.cid-t9jhIlDeDy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jhIlDeDy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jhIlDeDy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jhIlDeDy .part {
  align-items: start;
}
.cid-t9jhIlDeDy .link a {
  background-image: none !important;
}
.cid-t9jhIlDeDy .mbr-text,
.cid-t9jhIlDeDy .link {
  color: #000000;
}
.cid-t9jtvqj55g {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9jtvqj55g .row {
    text-align: center!important;
  }
}
.cid-t9jtvqj55g .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9jtvqj55g .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9jtvqj55g .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9jtvqj55g .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9jtvqj55g .user-name-text {
  color: #ffffff;
}
.cid-t9jtvqj55g .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9jtvqj55g .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9jtvqj55g .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9jtvqj55g .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9jt5vgZ5t {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9jt5vgZ5t .item-wrapper {
  width: 100%;
}
.cid-t9jt5vgZ5t .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jt5vgZ5t .row {
  align-items: center;
}
.cid-t9jt5vgZ5t .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jt5vgZ5t .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jt5vgZ5t .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jt5vgZ5t .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jt5vgZ5t .col-auto {
  display: inline-block;
}
.cid-t9jt5vgZ5t .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jt5vgZ5t .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jt5vgZ5t .right-side {
  padding-right: 0px;
}
.cid-t9jt5vgZ5t .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jt5vgZ5t .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jt5vgZ5t a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jt5vgZ5t rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jt5vgZ5t .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jt5vgZ5t svg {
  margin-left: 15px;
}
.cid-t9jt5vgZ5t path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jt5vgZ5t .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jt5vgZ5t .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jt5vgZ5t .part {
  align-items: start;
}
.cid-t9jt5vgZ5t .link a {
  background-image: none !important;
}
.cid-t9jt5vgZ5t .mbr-text,
.cid-t9jt5vgZ5t .link {
  color: #000000;
}
.cid-t9jtwRuQws {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9jtwRuQws .row {
    text-align: center!important;
  }
}
.cid-t9jtwRuQws .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9jtwRuQws .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9jtwRuQws .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9jtwRuQws .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9jtwRuQws .user-name-text {
  color: #ffffff;
}
.cid-t9jtwRuQws .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9jtwRuQws .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9jtwRuQws .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9jtwRuQws .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9jt6qxK9B {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9jt6qxK9B .item-wrapper {
  width: 100%;
}
.cid-t9jt6qxK9B .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jt6qxK9B .row {
  align-items: center;
}
.cid-t9jt6qxK9B .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jt6qxK9B .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jt6qxK9B .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jt6qxK9B .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jt6qxK9B .col-auto {
  display: inline-block;
}
.cid-t9jt6qxK9B .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jt6qxK9B .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jt6qxK9B .right-side {
  padding-right: 0px;
}
.cid-t9jt6qxK9B .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jt6qxK9B .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jt6qxK9B a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jt6qxK9B rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jt6qxK9B .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jt6qxK9B svg {
  margin-left: 15px;
}
.cid-t9jt6qxK9B path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jt6qxK9B .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jt6qxK9B .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jt6qxK9B .part {
  align-items: start;
}
.cid-t9jt6qxK9B .link a {
  background-image: none !important;
}
.cid-t9jt6qxK9B .mbr-text,
.cid-t9jt6qxK9B .link {
  color: #000000;
}
.cid-t9junBz1lp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9junBz1lp .row {
    text-align: center!important;
  }
}
.cid-t9junBz1lp .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9junBz1lp .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9junBz1lp .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9junBz1lp .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9junBz1lp .user-name-text {
  color: #ffffff;
}
.cid-t9junBz1lp .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9junBz1lp .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9junBz1lp .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9junBz1lp .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9jt7lwGdH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9jt7lwGdH .item-wrapper {
  width: 100%;
}
.cid-t9jt7lwGdH .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jt7lwGdH .row {
  align-items: center;
}
.cid-t9jt7lwGdH .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jt7lwGdH .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jt7lwGdH .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jt7lwGdH .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jt7lwGdH .col-auto {
  display: inline-block;
}
.cid-t9jt7lwGdH .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jt7lwGdH .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jt7lwGdH .right-side {
  padding-right: 0px;
}
.cid-t9jt7lwGdH .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jt7lwGdH .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jt7lwGdH a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jt7lwGdH rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jt7lwGdH .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jt7lwGdH svg {
  margin-left: 15px;
}
.cid-t9jt7lwGdH path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jt7lwGdH .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jt7lwGdH .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jt7lwGdH .part {
  align-items: start;
}
.cid-t9jt7lwGdH .link a {
  background-image: none !important;
}
.cid-t9jt7lwGdH .mbr-text,
.cid-t9jt7lwGdH .link {
  color: #000000;
}
.cid-t9julxlxsN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9julxlxsN .row {
    text-align: center!important;
  }
}
.cid-t9julxlxsN .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9julxlxsN .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9julxlxsN .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9julxlxsN .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9julxlxsN .user-name-text {
  color: #ffffff;
}
.cid-t9julxlxsN .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9julxlxsN .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9julxlxsN .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9julxlxsN .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9jt8l8NUR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9jt8l8NUR .item-wrapper {
  width: 100%;
}
.cid-t9jt8l8NUR .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jt8l8NUR .row {
  align-items: center;
}
.cid-t9jt8l8NUR .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jt8l8NUR .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jt8l8NUR .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jt8l8NUR .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jt8l8NUR .col-auto {
  display: inline-block;
}
.cid-t9jt8l8NUR .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jt8l8NUR .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jt8l8NUR .right-side {
  padding-right: 0px;
}
.cid-t9jt8l8NUR .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jt8l8NUR .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jt8l8NUR a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jt8l8NUR rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jt8l8NUR .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jt8l8NUR svg {
  margin-left: 15px;
}
.cid-t9jt8l8NUR path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jt8l8NUR .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jt8l8NUR .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jt8l8NUR .part {
  align-items: start;
}
.cid-t9jt8l8NUR .link a {
  background-image: none !important;
}
.cid-t9jt8l8NUR .mbr-text,
.cid-t9jt8l8NUR .link {
  color: #000000;
}
.cid-t9jujNaZV7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9jujNaZV7 .row {
    text-align: center!important;
  }
}
.cid-t9jujNaZV7 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9jujNaZV7 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9jujNaZV7 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9jujNaZV7 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9jujNaZV7 .user-name-text {
  color: #ffffff;
}
.cid-t9jujNaZV7 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9jujNaZV7 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9jujNaZV7 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9jujNaZV7 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9jt97DAga {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9jt97DAga .item-wrapper {
  width: 100%;
}
.cid-t9jt97DAga .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jt97DAga .row {
  align-items: center;
}
.cid-t9jt97DAga .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jt97DAga .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jt97DAga .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jt97DAga .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jt97DAga .col-auto {
  display: inline-block;
}
.cid-t9jt97DAga .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jt97DAga .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jt97DAga .right-side {
  padding-right: 0px;
}
.cid-t9jt97DAga .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jt97DAga .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jt97DAga a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jt97DAga rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jt97DAga .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jt97DAga svg {
  margin-left: 15px;
}
.cid-t9jt97DAga path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jt97DAga .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jt97DAga .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jt97DAga .part {
  align-items: start;
}
.cid-t9jt97DAga .link a {
  background-image: none !important;
}
.cid-t9jt97DAga .mbr-text,
.cid-t9jt97DAga .link {
  color: #000000;
}
.cid-t9juiciLs4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9juiciLs4 .row {
    text-align: center!important;
  }
}
.cid-t9juiciLs4 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9juiciLs4 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9juiciLs4 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9juiciLs4 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9juiciLs4 .user-name-text {
  color: #ffffff;
}
.cid-t9juiciLs4 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9juiciLs4 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9juiciLs4 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9juiciLs4 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9jtaHgBqO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9jtaHgBqO .item-wrapper {
  width: 100%;
}
.cid-t9jtaHgBqO .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jtaHgBqO .row {
  align-items: center;
}
.cid-t9jtaHgBqO .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jtaHgBqO .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jtaHgBqO .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jtaHgBqO .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jtaHgBqO .col-auto {
  display: inline-block;
}
.cid-t9jtaHgBqO .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jtaHgBqO .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jtaHgBqO .right-side {
  padding-right: 0px;
}
.cid-t9jtaHgBqO .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jtaHgBqO .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jtaHgBqO a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jtaHgBqO rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jtaHgBqO .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jtaHgBqO svg {
  margin-left: 15px;
}
.cid-t9jtaHgBqO path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jtaHgBqO .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jtaHgBqO .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jtaHgBqO .part {
  align-items: start;
}
.cid-t9jtaHgBqO .link a {
  background-image: none !important;
}
.cid-t9jtaHgBqO .mbr-text,
.cid-t9jtaHgBqO .link {
  color: #000000;
}
.cid-t9jufaVtcT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9jufaVtcT .row {
    text-align: center!important;
  }
}
.cid-t9jufaVtcT .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9jufaVtcT .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9jufaVtcT .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9jufaVtcT .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9jufaVtcT .user-name-text {
  color: #ffffff;
}
.cid-t9jufaVtcT .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9jufaVtcT .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9jufaVtcT .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9jufaVtcT .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9ju8AZIcg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9ju8AZIcg .item-wrapper {
  width: 100%;
}
.cid-t9ju8AZIcg .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9ju8AZIcg .row {
  align-items: center;
}
.cid-t9ju8AZIcg .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9ju8AZIcg .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9ju8AZIcg .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9ju8AZIcg .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9ju8AZIcg .col-auto {
  display: inline-block;
}
.cid-t9ju8AZIcg .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9ju8AZIcg .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9ju8AZIcg .right-side {
  padding-right: 0px;
}
.cid-t9ju8AZIcg .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9ju8AZIcg .left-side {
    padding: 25px 0px;
  }
}
.cid-t9ju8AZIcg a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9ju8AZIcg rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9ju8AZIcg .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9ju8AZIcg svg {
  margin-left: 15px;
}
.cid-t9ju8AZIcg path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9ju8AZIcg .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9ju8AZIcg .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9ju8AZIcg .part {
  align-items: start;
}
.cid-t9ju8AZIcg .link a {
  background-image: none !important;
}
.cid-t9ju8AZIcg .mbr-text,
.cid-t9ju8AZIcg .link {
  color: #000000;
}
.cid-t9judAdx08 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9judAdx08 .row {
    text-align: center!important;
  }
}
.cid-t9judAdx08 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9judAdx08 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9judAdx08 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9judAdx08 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9judAdx08 .user-name-text {
  color: #ffffff;
}
.cid-t9judAdx08 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9judAdx08 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9judAdx08 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9judAdx08 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9jVQ9DIpY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9jVQ9DIpY .item-wrapper {
  width: 100%;
}
.cid-t9jVQ9DIpY .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9jVQ9DIpY .row {
  align-items: center;
}
.cid-t9jVQ9DIpY .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9jVQ9DIpY .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9jVQ9DIpY .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9jVQ9DIpY .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9jVQ9DIpY .col-auto {
  display: inline-block;
}
.cid-t9jVQ9DIpY .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9jVQ9DIpY .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9jVQ9DIpY .right-side {
  padding-right: 0px;
}
.cid-t9jVQ9DIpY .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9jVQ9DIpY .left-side {
    padding: 25px 0px;
  }
}
.cid-t9jVQ9DIpY a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9jVQ9DIpY rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9jVQ9DIpY .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9jVQ9DIpY svg {
  margin-left: 15px;
}
.cid-t9jVQ9DIpY path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9jVQ9DIpY .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9jVQ9DIpY .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9jVQ9DIpY .part {
  align-items: start;
}
.cid-t9jVQ9DIpY .link a {
  background-image: none !important;
}
.cid-t9jVQ9DIpY .mbr-text,
.cid-t9jVQ9DIpY .link {
  color: #000000;
}
.cid-t9jVRszug4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9jVRszug4 .row {
    text-align: center!important;
  }
}
.cid-t9jVRszug4 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9jVRszug4 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9jVRszug4 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9jVRszug4 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9jVRszug4 .user-name-text {
  color: #ffffff;
}
.cid-t9jVRszug4 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9jVRszug4 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9jVRszug4 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9jVRszug4 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sMRHGpM9zu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sMRHGpM9zu .nav-tabs .nav-item.open .nav-link:focus,
.cid-sMRHGpM9zu .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sMRHGpM9zu .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-sMRHGpM9zu .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-sMRHGpM9zu .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-sMRHGpM9zu .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #069f00;
}
.cid-sMRHGpM9zu .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sMRHGpM9zu .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-sMRHGpM9zu .nav-tabs .nav-item {
  width: 100%;
}
.cid-sMRHGpM9zu .nav-link,
.cid-sMRHGpM9zu .nav-link.active {
  padding: 1rem auto;
  background: #b6dd83;
}
.cid-sMRHGpM9zu .nav-tabs .nav-link.active {
  color: #069f00;
}
.cid-sMRHGpM9zu .tab-content {
  background: #b6dd83;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-sMRHGpM9zu .tab-content {
    border-radius: 30px !important;
  }
}
.cid-sMRHGpM9zu .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-sMRHGpM9zu .logo-container {
    border-right: 1px solid #069f00;
  }
}
.cid-sMRHGpM9zu H4 {
  text-align: center;
}
.cid-sMRHGpM9zu H3 {
  text-align: center;
  color: #8ae90b;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-sMRHGpM9zu .nav-link {
    font-size: 1.2rem;
  }
}
.cid-sMRIS6eitc {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sMRIS6eitc .nav-tabs .nav-item.open .nav-link:focus,
.cid-sMRIS6eitc .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sMRIS6eitc .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-sMRIS6eitc .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-sMRIS6eitc .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-sMRIS6eitc .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #069f00;
}
.cid-sMRIS6eitc .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sMRIS6eitc .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-sMRIS6eitc .nav-tabs .nav-item {
  width: 100%;
}
.cid-sMRIS6eitc .nav-link,
.cid-sMRIS6eitc .nav-link.active {
  padding: 1rem auto;
  background: #b6dd83;
}
.cid-sMRIS6eitc .nav-tabs .nav-link.active {
  color: #069f00;
}
.cid-sMRIS6eitc .tab-content {
  background: #b6dd83;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-sMRIS6eitc .tab-content {
    border-radius: 30px !important;
  }
}
.cid-sMRIS6eitc .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-sMRIS6eitc .logo-container {
    border-right: 1px solid #069f00;
  }
}
.cid-sMRIS6eitc H4 {
  text-align: center;
}
.cid-sMRIS6eitc H3 {
  text-align: center;
  color: #8ae90b;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-sMRIS6eitc .nav-link {
    font-size: 1.2rem;
  }
}
.cid-sKskVDMDiI {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/whatsapp-image-2020-06-24-at-17.59.00-1000x500.jpg");
}
.cid-sKskVDMDiI H1 {
  color: #8ae90b;
  text-align: left;
}
.cid-sKskVDMDiI .mbr-text,
.cid-sKskVDMDiI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sKYiZMCZqE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKYiZMCZqE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sKYiZMCZqE .img-item,
.cid-sKYiZMCZqE img {
  height: 100%;
  object-fit: cover;
}
.cid-sKYiZMCZqE .img-col {
  padding: 0;
}
.cid-sKYiZMCZqE .col-auto {
  width: 100%;
}
.cid-sKYiZMCZqE .wrapper {
  background: #ffffff;
  padding: 6rem 4rem;
  border-radius: 10px;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .cid-sKYiZMCZqE .wrapper {
    padding: 3rem 0rem;
    margin: 0 1rem;
  }
}
.cid-sKYiZMCZqE textarea {
  min-height: 200px;
}
.cid-sKYiZMCZqE .btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
}
.cid-sKYiZMCZqE .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-sKYiZMCZqE H4 {
  color: #777777;
}
.cid-sKYiZMCZqE H3 {
  color: #069f00;
}
.cid-sMShHVhJIp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1277.jpg");
}
.cid-sMShHVhJIp .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-sMShHVhJIp .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sMShHVhJIp .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sMShHVhJIp .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-sMShHVhJIp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sMShHVhJIp .mbr-text,
.cid-sMShHVhJIp .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sMShHVhJIp .mbr-section-subtitle {
  text-align: center;
  color: #069f00;
}
.cid-sKu6J0AIfM .google-map {
  height: 25rem;
  position: relative;
}
.cid-sKu6J0AIfM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sKu6J0AIfM .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sKu6J0AIfM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sKu6J0AIfM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sKsrszFPjT {
  background-image: url("../../../assets/images/pexels-pille-kirsi-1093184-2000x1247.jpg");
}
.cid-sKsrszFPjT H1 {
  color: #8ae90b;
  text-align: left;
}
.cid-sKsrszFPjT .mbr-text,
.cid-sKsrszFPjT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sJWFRlbwOD {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sJWFRlbwOD .content {
    text-align: center;
  }
  .cid-sJWFRlbwOD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sJWFRlbwOD .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-sJWFRlbwOD textarea.form-control {
  resize: none;
}
.cid-sJWFRlbwOD .input-group-btn {
  display: inline-block;
}
.cid-sJWFRlbwOD .input-group-btn .btn {
  margin: 0 !important;
  padding: 0.75rem 1.5625rem !important;
  text-transform: none;
}
.cid-sJWFRlbwOD .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJWFRlbwOD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJWFRlbwOD .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sJWFRlbwOD .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sJWFRlbwOD .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sJWFRlbwOD .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sJWFRlbwOD .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-sJWFRlbwOD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sJWFRlbwOD .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sJWFRlbwOD .form-control,
.cid-sJWFRlbwOD .input-group-btn .btn {
  border-radius: 3px;
}
.cid-sJWFRlbwOD P {
  color: #069f00;
  text-align: left;
}
.cid-sJWFRlbwOD .foot-title,
.cid-sJWFRlbwOD .img-logo {
  color: #069f00;
}
.cid-sJWFRlbwOD .copyright > p {
  color: #000000;
}
.cid-t9ugg9uh4r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t9ugg9uh4r .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-t9ugg9uh4r nav.navbar {
  position: fixed;
}
.cid-t9ugg9uh4r .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-t9ugg9uh4r .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-t9ugg9uh4r .nav-item {
    height: auto;
  }
}
.cid-t9ugg9uh4r .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t9ugg9uh4r .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-t9ugg9uh4r .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9ugg9uh4r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t9ugg9uh4r .dropdown-item:hover,
.cid-t9ugg9uh4r .dropdown-item:focus {
  background: white !important;
}
.cid-t9ugg9uh4r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t9ugg9uh4r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t9ugg9uh4r .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-t9ugg9uh4r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t9ugg9uh4r .nav-link {
  position: relative;
}
.cid-t9ugg9uh4r .container {
  display: flex;
  margin: auto;
}
.cid-t9ugg9uh4r .iconfont-wrapper {
  color: #83342a !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-t9ugg9uh4r .dropdown-menu,
.cid-t9ugg9uh4r .navbar.opened {
  background: #ffffff !important;
}
.cid-t9ugg9uh4r .nav-item:focus,
.cid-t9ugg9uh4r .nav-link:focus {
  outline: none;
}
.cid-t9ugg9uh4r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t9ugg9uh4r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9ugg9uh4r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-t9ugg9uh4r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9ugg9uh4r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t9ugg9uh4r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t9ugg9uh4r .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t9ugg9uh4r .navbar.opened {
  transition: all 0.3s;
}
.cid-t9ugg9uh4r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t9ugg9uh4r .navbar .navbar-logo img {
  width: auto;
}
.cid-t9ugg9uh4r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t9ugg9uh4r .navbar.collapsed {
  justify-content: center;
}
.cid-t9ugg9uh4r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t9ugg9uh4r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t9ugg9uh4r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-t9ugg9uh4r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t9ugg9uh4r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t9ugg9uh4r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t9ugg9uh4r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t9ugg9uh4r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t9ugg9uh4r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t9ugg9uh4r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t9ugg9uh4r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t9ugg9uh4r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t9ugg9uh4r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t9ugg9uh4r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t9ugg9uh4r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t9ugg9uh4r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t9ugg9uh4r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t9ugg9uh4r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t9ugg9uh4r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t9ugg9uh4r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t9ugg9uh4r .navbar.navbar-short {
  min-height: 60px;
}
.cid-t9ugg9uh4r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t9ugg9uh4r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t9ugg9uh4r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t9ugg9uh4r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t9ugg9uh4r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t9ugg9uh4r .dropdown-item.active,
.cid-t9ugg9uh4r .dropdown-item:active {
  background-color: transparent;
}
.cid-t9ugg9uh4r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t9ugg9uh4r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t9ugg9uh4r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t9ugg9uh4r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t9ugg9uh4r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9ugg9uh4r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9ugg9uh4r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t9ugg9uh4r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t9ugg9uh4r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t9ugg9uh4r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282727;
}
.cid-t9ugg9uh4r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t9ugg9uh4r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9ugg9uh4r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9ugg9uh4r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t9ugg9uh4r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9ugg9uh4r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t9ugg9uh4r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t9ugg9uh4r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9ugg9uh4r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t9ugg9uh4r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t9ugg9uh4r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t9ugg9uh4r .navbar {
    height: 70px;
  }
  .cid-t9ugg9uh4r .navbar.opened {
    height: auto;
  }
  .cid-t9ugg9uh4r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9uggb9h8f {
  background-image: url("../../../assets/images/banner-2-978x373.jpg");
}
.cid-t9uggb9h8f .animated-element {
  color: #ffffff;
}
.cid-t9uggb9h8f .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-t9uggb9h8f .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-t9uggb9h8f .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-t9uggb9h8f .mbr-section-text,
.cid-t9uggb9h8f .mbr-section-btn {
  color: #ffffff;
}
.cid-t9uggb9h8f .typed-text .typed-text {
  color: #ef8e81;
}
.cid-t9uggce5Mj {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/fundo-madeirao-1920x1143.png");
}
@media (min-width: 1200px) {
  .cid-t9uggce5Mj .content-wrapper {
    padding-right: 60px;
  }
}
.cid-t9uggce5Mj img {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t9uggce5Mj .content-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-t9uggce5Mj H1 {
  color: #8ae90b;
}
.cid-t9uggcL9Ri {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t9uggcL9Ri .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-t9uggcL9Ri .modal-body .close {
  background: #1b1b1b;
}
.cid-t9uggcL9Ri .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-t9uggcL9Ri .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-t9uggcL9Ri .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-t9uggcL9Ri .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-t9uggcL9Ri .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-t9uggcL9Ri .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-t9uggcL9Ri .container {
  max-width: 100%;
  padding: 0;
}
.cid-t9uggcL9Ri .content-slider-wrap {
  width: 100%;
}
.cid-t9uggcL9Ri .carousel-inner > .active,
.cid-t9uggcL9Ri .carousel-inner > .next,
.cid-t9uggcL9Ri .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-t9uggcL9Ri .carousel-control .icon-next,
.cid-t9uggcL9Ri .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t9uggcL9Ri .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t9uggcL9Ri .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-t9uggcL9Ri .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t9uggcL9Ri .boxed-slider > div {
  position: relative;
}
.cid-t9uggcL9Ri .container img {
  width: 100%;
}
.cid-t9uggcL9Ri .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t9uggcL9Ri .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t9uggcL9Ri .mbr-table-cell {
  padding: 0;
}
.cid-t9uggcL9Ri .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t9uggcL9Ri .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t9uggcL9Ri .mbr-overlay {
  z-index: 1;
}
.cid-t9uggcL9Ri .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t9uggcL9Ri .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t9uggcL9Ri .carousel-item.active.right,
.cid-t9uggcL9Ri .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t9uggcL9Ri .carousel-item.active.left,
.cid-t9uggcL9Ri .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t9uggcL9Ri .carousel-item.active,
.cid-t9uggcL9Ri .carousel-item.next.left,
.cid-t9uggcL9Ri .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-t9uggcL9Ri .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-t9uggcL9Ri .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-indicators li.active,
.cid-t9uggcL9Ri .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-indicators li::after,
.cid-t9uggcL9Ri .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t9uggcL9Ri .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t9uggcL9Ri .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t9uggcL9Ri .mbr-slider > .container img {
  width: 100%;
}
.cid-t9uggcL9Ri .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t9uggcL9Ri .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t9uggcL9Ri .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t9uggcL9Ri .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t9uggcL9Ri .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t9uggcL9Ri .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t9uggcL9Ri .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t9uggcL9Ri .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t9uggcL9Ri .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t9uggcL9Ri .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t9uggcL9Ri .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t9uggcL9Ri .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t9uggcL9Ri .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t9uggcL9Ri .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-t9uggcL9Ri .carousel-inner {
  height: 100%;
}
.cid-t9uggcL9Ri .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-t9uggcL9Ri .image_wrapper {
  height: 530px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-t9uggcL9Ri .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t9uggcL9Ri .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-t9uggcL9Ri .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t9uggcL9Ri .content-slider-wrap {
    width: 100%!important;
  }
  .cid-t9uggcL9Ri .image_wrapper {
    height: 318px;
  }
}
.cid-t9uggcL9Ri H2 {
  color: #ffffff;
}
.cid-t9uggdOfP2 {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fundo-madeirao2-1920x1143.png");
}
.cid-t9uggdOfP2 .row {
  flex-direction: row-reverse;
}
.cid-t9uggdOfP2 .video-wrapper iframe {
  width: 100%;
}
.cid-t9uggdOfP2 .mbr-section-title,
.cid-t9uggdOfP2 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9uggdOfP2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9uggdOfP2 .mbr-section-title {
  color: #8ae90b;
}
.cid-t9uggesVGw {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-t9uggesVGw .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-t9uggesVGw .title-text {
  color: #83342a;
  text-align: center;
}
.cid-t9uggesVGw H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-t9uggesVGw .section-text,
.cid-t9uggesVGw .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-t9uggf38zF {
  padding-top: 615px;
  background-image: url("../../../assets/images/reflorestamento-reflorestar-scaled-2000x1328.jpg");
}
.cid-t9uggfqGUQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-madeirao1-1920x1143.png");
}
.cid-t9uggfqGUQ .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-t9uggfqGUQ .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: left;
}
.cid-t9uggfqGUQ .title-text {
  color: #8ae90b;
  text-align: left;
}
.cid-t9uggfqGUQ H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-t9uggfqGUQ .section-text,
.cid-t9uggfqGUQ .mbr-section-btn {
  text-align: left;
  color: #4c4a4b;
}
.cid-t9uggg5YdX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #069f00;
}
.cid-t9uggg5YdX .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-t9ugggDbbP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9ugggDbbP .item-wrapper {
  width: 100%;
}
.cid-t9ugggDbbP .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9ugggDbbP .row {
  align-items: center;
}
.cid-t9ugggDbbP .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9ugggDbbP .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9ugggDbbP .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9ugggDbbP .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9ugggDbbP .col-auto {
  display: inline-block;
}
.cid-t9ugggDbbP .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9ugggDbbP .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9ugggDbbP .right-side {
  padding-right: 0px;
}
.cid-t9ugggDbbP .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9ugggDbbP .left-side {
    padding: 25px 0px;
  }
}
.cid-t9ugggDbbP a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9ugggDbbP rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9ugggDbbP .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9ugggDbbP svg {
  margin-left: 15px;
}
.cid-t9ugggDbbP path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9ugggDbbP .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9ugggDbbP .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9ugggDbbP .part {
  align-items: start;
}
.cid-t9ugggDbbP .link a {
  background-image: none !important;
}
.cid-t9ugggDbbP .mbr-text,
.cid-t9ugggDbbP .link {
  color: #000000;
}
.cid-t9ugghdN7q {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9ugghdN7q .row {
    text-align: center!important;
  }
}
.cid-t9ugghdN7q .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9ugghdN7q .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9ugghdN7q .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9ugghdN7q .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9ugghdN7q .user-name-text {
  color: #ffffff;
}
.cid-t9ugghdN7q .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9ugghdN7q .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9ugghdN7q .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9ugghdN7q .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9ugghPgJu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9ugghPgJu .item-wrapper {
  width: 100%;
}
.cid-t9ugghPgJu .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9ugghPgJu .row {
  align-items: center;
}
.cid-t9ugghPgJu .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9ugghPgJu .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9ugghPgJu .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9ugghPgJu .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9ugghPgJu .col-auto {
  display: inline-block;
}
.cid-t9ugghPgJu .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9ugghPgJu .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9ugghPgJu .right-side {
  padding-right: 0px;
}
.cid-t9ugghPgJu .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9ugghPgJu .left-side {
    padding: 25px 0px;
  }
}
.cid-t9ugghPgJu a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9ugghPgJu rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9ugghPgJu .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9ugghPgJu svg {
  margin-left: 15px;
}
.cid-t9ugghPgJu path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9ugghPgJu .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9ugghPgJu .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9ugghPgJu .part {
  align-items: start;
}
.cid-t9ugghPgJu .link a {
  background-image: none !important;
}
.cid-t9ugghPgJu .mbr-text,
.cid-t9ugghPgJu .link {
  color: #000000;
}
.cid-t9uggisi9T {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uggisi9T .row {
    text-align: center!important;
  }
}
.cid-t9uggisi9T .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggisi9T .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggisi9T .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggisi9T .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggisi9T .user-name-text {
  color: #ffffff;
}
.cid-t9uggisi9T .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggisi9T .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggisi9T .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggisi9T .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggj0bBT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uggj0bBT .item-wrapper {
  width: 100%;
}
.cid-t9uggj0bBT .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uggj0bBT .row {
  align-items: center;
}
.cid-t9uggj0bBT .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uggj0bBT .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uggj0bBT .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uggj0bBT .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uggj0bBT .col-auto {
  display: inline-block;
}
.cid-t9uggj0bBT .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uggj0bBT .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uggj0bBT .right-side {
  padding-right: 0px;
}
.cid-t9uggj0bBT .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uggj0bBT .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uggj0bBT a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uggj0bBT rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uggj0bBT .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uggj0bBT svg {
  margin-left: 15px;
}
.cid-t9uggj0bBT path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uggj0bBT .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uggj0bBT .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uggj0bBT .part {
  align-items: start;
}
.cid-t9uggj0bBT .link a {
  background-image: none !important;
}
.cid-t9uggj0bBT .mbr-text,
.cid-t9uggj0bBT .link {
  color: #000000;
}
.cid-t9uggjFzok {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uggjFzok .row {
    text-align: center!important;
  }
}
.cid-t9uggjFzok .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggjFzok .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggjFzok .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggjFzok .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggjFzok .user-name-text {
  color: #ffffff;
}
.cid-t9uggjFzok .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggjFzok .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggjFzok .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggjFzok .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggkbUfi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9uggkbUfi .item-wrapper {
  width: 100%;
}
.cid-t9uggkbUfi .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uggkbUfi .row {
  align-items: center;
}
.cid-t9uggkbUfi .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uggkbUfi .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uggkbUfi .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uggkbUfi .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uggkbUfi .col-auto {
  display: inline-block;
}
.cid-t9uggkbUfi .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uggkbUfi .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uggkbUfi .right-side {
  padding-right: 0px;
}
.cid-t9uggkbUfi .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uggkbUfi .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uggkbUfi a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uggkbUfi rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uggkbUfi .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uggkbUfi svg {
  margin-left: 15px;
}
.cid-t9uggkbUfi path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uggkbUfi .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uggkbUfi .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uggkbUfi .part {
  align-items: start;
}
.cid-t9uggkbUfi .link a {
  background-image: none !important;
}
.cid-t9uggkbUfi .mbr-text,
.cid-t9uggkbUfi .link {
  color: #000000;
}
.cid-t9uggkLmBE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uggkLmBE .row {
    text-align: center!important;
  }
}
.cid-t9uggkLmBE .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggkLmBE .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggkLmBE .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggkLmBE .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggkLmBE .user-name-text {
  color: #ffffff;
}
.cid-t9uggkLmBE .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggkLmBE .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggkLmBE .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggkLmBE .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggln0h5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uggln0h5 .item-wrapper {
  width: 100%;
}
.cid-t9uggln0h5 .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uggln0h5 .row {
  align-items: center;
}
.cid-t9uggln0h5 .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uggln0h5 .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uggln0h5 .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uggln0h5 .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uggln0h5 .col-auto {
  display: inline-block;
}
.cid-t9uggln0h5 .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uggln0h5 .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uggln0h5 .right-side {
  padding-right: 0px;
}
.cid-t9uggln0h5 .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uggln0h5 .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uggln0h5 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uggln0h5 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uggln0h5 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uggln0h5 svg {
  margin-left: 15px;
}
.cid-t9uggln0h5 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uggln0h5 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uggln0h5 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uggln0h5 .part {
  align-items: start;
}
.cid-t9uggln0h5 .link a {
  background-image: none !important;
}
.cid-t9uggln0h5 .mbr-text,
.cid-t9uggln0h5 .link {
  color: #000000;
}
.cid-t9uggm0fT1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uggm0fT1 .row {
    text-align: center!important;
  }
}
.cid-t9uggm0fT1 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggm0fT1 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggm0fT1 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggm0fT1 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggm0fT1 .user-name-text {
  color: #ffffff;
}
.cid-t9uggm0fT1 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggm0fT1 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggm0fT1 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggm0fT1 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggmBJbv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9uggmBJbv .item-wrapper {
  width: 100%;
}
.cid-t9uggmBJbv .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uggmBJbv .row {
  align-items: center;
}
.cid-t9uggmBJbv .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uggmBJbv .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uggmBJbv .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uggmBJbv .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uggmBJbv .col-auto {
  display: inline-block;
}
.cid-t9uggmBJbv .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uggmBJbv .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uggmBJbv .right-side {
  padding-right: 0px;
}
.cid-t9uggmBJbv .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uggmBJbv .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uggmBJbv a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uggmBJbv rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uggmBJbv .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uggmBJbv svg {
  margin-left: 15px;
}
.cid-t9uggmBJbv path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uggmBJbv .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uggmBJbv .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uggmBJbv .part {
  align-items: start;
}
.cid-t9uggmBJbv .link a {
  background-image: none !important;
}
.cid-t9uggmBJbv .mbr-text,
.cid-t9uggmBJbv .link {
  color: #000000;
}
.cid-t9uggndcnj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uggndcnj .row {
    text-align: center!important;
  }
}
.cid-t9uggndcnj .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggndcnj .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggndcnj .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggndcnj .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggndcnj .user-name-text {
  color: #ffffff;
}
.cid-t9uggndcnj .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggndcnj .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggndcnj .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggndcnj .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggnNBA1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uggnNBA1 .item-wrapper {
  width: 100%;
}
.cid-t9uggnNBA1 .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uggnNBA1 .row {
  align-items: center;
}
.cid-t9uggnNBA1 .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uggnNBA1 .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uggnNBA1 .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uggnNBA1 .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uggnNBA1 .col-auto {
  display: inline-block;
}
.cid-t9uggnNBA1 .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uggnNBA1 .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uggnNBA1 .right-side {
  padding-right: 0px;
}
.cid-t9uggnNBA1 .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uggnNBA1 .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uggnNBA1 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uggnNBA1 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uggnNBA1 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uggnNBA1 svg {
  margin-left: 15px;
}
.cid-t9uggnNBA1 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uggnNBA1 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uggnNBA1 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uggnNBA1 .part {
  align-items: start;
}
.cid-t9uggnNBA1 .link a {
  background-image: none !important;
}
.cid-t9uggnNBA1 .mbr-text,
.cid-t9uggnNBA1 .link {
  color: #000000;
}
.cid-t9uggorc4I {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uggorc4I .row {
    text-align: center!important;
  }
}
.cid-t9uggorc4I .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggorc4I .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggorc4I .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggorc4I .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggorc4I .user-name-text {
  color: #ffffff;
}
.cid-t9uggorc4I .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggorc4I .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggorc4I .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggorc4I .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggp2n6N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9uggp2n6N .item-wrapper {
  width: 100%;
}
.cid-t9uggp2n6N .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uggp2n6N .row {
  align-items: center;
}
.cid-t9uggp2n6N .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uggp2n6N .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uggp2n6N .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uggp2n6N .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uggp2n6N .col-auto {
  display: inline-block;
}
.cid-t9uggp2n6N .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uggp2n6N .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uggp2n6N .right-side {
  padding-right: 0px;
}
.cid-t9uggp2n6N .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uggp2n6N .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uggp2n6N a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uggp2n6N rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uggp2n6N .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uggp2n6N svg {
  margin-left: 15px;
}
.cid-t9uggp2n6N path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uggp2n6N .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uggp2n6N .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uggp2n6N .part {
  align-items: start;
}
.cid-t9uggp2n6N .link a {
  background-image: none !important;
}
.cid-t9uggp2n6N .mbr-text,
.cid-t9uggp2n6N .link {
  color: #000000;
}
.cid-t9uggpEJh1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uggpEJh1 .row {
    text-align: center!important;
  }
}
.cid-t9uggpEJh1 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggpEJh1 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggpEJh1 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggpEJh1 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggpEJh1 .user-name-text {
  color: #ffffff;
}
.cid-t9uggpEJh1 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggpEJh1 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggpEJh1 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggpEJh1 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggqfJ0Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uggqfJ0Z .item-wrapper {
  width: 100%;
}
.cid-t9uggqfJ0Z .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uggqfJ0Z .row {
  align-items: center;
}
.cid-t9uggqfJ0Z .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uggqfJ0Z .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uggqfJ0Z .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uggqfJ0Z .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uggqfJ0Z .col-auto {
  display: inline-block;
}
.cid-t9uggqfJ0Z .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uggqfJ0Z .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uggqfJ0Z .right-side {
  padding-right: 0px;
}
.cid-t9uggqfJ0Z .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uggqfJ0Z .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uggqfJ0Z a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uggqfJ0Z rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uggqfJ0Z .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uggqfJ0Z svg {
  margin-left: 15px;
}
.cid-t9uggqfJ0Z path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uggqfJ0Z .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uggqfJ0Z .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uggqfJ0Z .part {
  align-items: start;
}
.cid-t9uggqfJ0Z .link a {
  background-image: none !important;
}
.cid-t9uggqfJ0Z .mbr-text,
.cid-t9uggqfJ0Z .link {
  color: #000000;
}
.cid-t9uggqRix6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uggqRix6 .row {
    text-align: center!important;
  }
}
.cid-t9uggqRix6 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uggqRix6 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uggqRix6 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uggqRix6 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uggqRix6 .user-name-text {
  color: #ffffff;
}
.cid-t9uggqRix6 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uggqRix6 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uggqRix6 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uggqRix6 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uggrucGb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t9uggrucGb .nav-tabs .nav-item.open .nav-link:focus,
.cid-t9uggrucGb .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t9uggrucGb .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-t9uggrucGb .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t9uggrucGb .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-t9uggrucGb .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #069f00;
}
.cid-t9uggrucGb .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9uggrucGb .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-t9uggrucGb .nav-tabs .nav-item {
  width: 100%;
}
.cid-t9uggrucGb .nav-link,
.cid-t9uggrucGb .nav-link.active {
  padding: 1rem auto;
  background: #b6dd83;
}
.cid-t9uggrucGb .nav-tabs .nav-link.active {
  color: #069f00;
}
.cid-t9uggrucGb .tab-content {
  background: #b6dd83;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-t9uggrucGb .tab-content {
    border-radius: 30px !important;
  }
}
.cid-t9uggrucGb .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-t9uggrucGb .logo-container {
    border-right: 1px solid #069f00;
  }
}
.cid-t9uggrucGb H4 {
  text-align: center;
}
.cid-t9uggrucGb H3 {
  text-align: center;
  color: #8ae90b;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-t9uggrucGb .nav-link {
    font-size: 1.2rem;
  }
}
.cid-t9uggsvQp5 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t9uggsvQp5 .nav-tabs .nav-item.open .nav-link:focus,
.cid-t9uggsvQp5 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t9uggsvQp5 .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-t9uggsvQp5 .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t9uggsvQp5 .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-t9uggsvQp5 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #069f00;
}
.cid-t9uggsvQp5 .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9uggsvQp5 .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-t9uggsvQp5 .nav-tabs .nav-item {
  width: 100%;
}
.cid-t9uggsvQp5 .nav-link,
.cid-t9uggsvQp5 .nav-link.active {
  padding: 1rem auto;
  background: #b6dd83;
}
.cid-t9uggsvQp5 .nav-tabs .nav-link.active {
  color: #069f00;
}
.cid-t9uggsvQp5 .tab-content {
  background: #b6dd83;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-t9uggsvQp5 .tab-content {
    border-radius: 30px !important;
  }
}
.cid-t9uggsvQp5 .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-t9uggsvQp5 .logo-container {
    border-right: 1px solid #069f00;
  }
}
.cid-t9uggsvQp5 H4 {
  text-align: center;
}
.cid-t9uggsvQp5 H3 {
  text-align: center;
  color: #8ae90b;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-t9uggsvQp5 .nav-link {
    font-size: 1.2rem;
  }
}
.cid-t9uggtxHyo {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/whatsapp-image-2020-06-24-at-17.59.00-1000x500.jpg");
}
.cid-t9uggtxHyo H1 {
  color: #8ae90b;
  text-align: left;
}
.cid-t9uggtxHyo .mbr-text,
.cid-t9uggtxHyo .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-t9ugN6SqvT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t9ugN6SqvT .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t9ugN6SqvT .img-item,
.cid-t9ugN6SqvT img {
  height: 100%;
  object-fit: cover;
}
.cid-t9ugN6SqvT .img-col {
  padding: 0;
}
.cid-t9ugN6SqvT .col-auto {
  width: 100%;
}
.cid-t9ugN6SqvT .wrapper {
  background: #ffffff;
  padding: 6rem 4rem;
  border-radius: 10px;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .cid-t9ugN6SqvT .wrapper {
    padding: 3rem 0rem;
    margin: 0 1rem;
  }
}
.cid-t9ugN6SqvT textarea {
  min-height: 200px;
}
.cid-t9ugN6SqvT .btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
}
.cid-t9ugN6SqvT .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-t9ugN6SqvT H4 {
  color: #777777;
}
.cid-t9ugN6SqvT H3 {
  color: #069f00;
}
.cid-t9uggv4xwY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1277.jpg");
}
.cid-t9uggv4xwY .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-t9uggv4xwY .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-t9uggv4xwY .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t9uggv4xwY .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-t9uggv4xwY .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-t9uggv4xwY .mbr-text,
.cid-t9uggv4xwY .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t9uggv4xwY .mbr-section-subtitle {
  text-align: center;
  color: #069f00;
}
.cid-t9uggvM0Tp .google-map {
  height: 25rem;
  position: relative;
}
.cid-t9uggvM0Tp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t9uggvM0Tp .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t9uggvM0Tp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t9uggvM0Tp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t9uggwqxek {
  background-image: url("../../../assets/images/pexels-pille-kirsi-1093184-2000x1247.jpg");
}
.cid-t9uggwqxek H1 {
  color: #8ae90b;
  text-align: left;
}
.cid-t9uggwqxek .mbr-text,
.cid-t9uggwqxek .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-t9uggx2knX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9uggx2knX .content {
    text-align: center;
  }
  .cid-t9uggx2knX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t9uggx2knX .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-t9uggx2knX textarea.form-control {
  resize: none;
}
.cid-t9uggx2knX .input-group-btn {
  display: inline-block;
}
.cid-t9uggx2knX .input-group-btn .btn {
  margin: 0 !important;
  padding: 0.75rem 1.5625rem !important;
  text-transform: none;
}
.cid-t9uggx2knX .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t9uggx2knX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t9uggx2knX .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t9uggx2knX .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-t9uggx2knX .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t9uggx2knX .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t9uggx2knX .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-t9uggx2knX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t9uggx2knX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-t9uggx2knX .form-control,
.cid-t9uggx2knX .input-group-btn .btn {
  border-radius: 3px;
}
.cid-t9uggx2knX P {
  color: #069f00;
  text-align: left;
}
.cid-t9uggx2knX .foot-title,
.cid-t9uggx2knX .img-logo {
  color: #069f00;
}
.cid-t9uggx2knX .copyright > p {
  color: #000000;
}
.cid-t9uh4wJJaa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t9uh4wJJaa .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-t9uh4wJJaa nav.navbar {
  position: fixed;
}
.cid-t9uh4wJJaa .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-t9uh4wJJaa .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-t9uh4wJJaa .nav-item {
    height: auto;
  }
}
.cid-t9uh4wJJaa .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t9uh4wJJaa .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-t9uh4wJJaa .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9uh4wJJaa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t9uh4wJJaa .dropdown-item:hover,
.cid-t9uh4wJJaa .dropdown-item:focus {
  background: white !important;
}
.cid-t9uh4wJJaa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t9uh4wJJaa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t9uh4wJJaa .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-t9uh4wJJaa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t9uh4wJJaa .nav-link {
  position: relative;
}
.cid-t9uh4wJJaa .container {
  display: flex;
  margin: auto;
}
.cid-t9uh4wJJaa .iconfont-wrapper {
  color: #83342a !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-t9uh4wJJaa .dropdown-menu,
.cid-t9uh4wJJaa .navbar.opened {
  background: #ffffff !important;
}
.cid-t9uh4wJJaa .nav-item:focus,
.cid-t9uh4wJJaa .nav-link:focus {
  outline: none;
}
.cid-t9uh4wJJaa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t9uh4wJJaa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9uh4wJJaa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-t9uh4wJJaa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9uh4wJJaa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t9uh4wJJaa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t9uh4wJJaa .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t9uh4wJJaa .navbar.opened {
  transition: all 0.3s;
}
.cid-t9uh4wJJaa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t9uh4wJJaa .navbar .navbar-logo img {
  width: auto;
}
.cid-t9uh4wJJaa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t9uh4wJJaa .navbar.collapsed {
  justify-content: center;
}
.cid-t9uh4wJJaa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t9uh4wJJaa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t9uh4wJJaa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-t9uh4wJJaa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t9uh4wJJaa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t9uh4wJJaa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t9uh4wJJaa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t9uh4wJJaa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t9uh4wJJaa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t9uh4wJJaa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t9uh4wJJaa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t9uh4wJJaa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t9uh4wJJaa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t9uh4wJJaa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t9uh4wJJaa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t9uh4wJJaa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t9uh4wJJaa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t9uh4wJJaa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t9uh4wJJaa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t9uh4wJJaa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t9uh4wJJaa .navbar.navbar-short {
  min-height: 60px;
}
.cid-t9uh4wJJaa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t9uh4wJJaa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t9uh4wJJaa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t9uh4wJJaa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t9uh4wJJaa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t9uh4wJJaa .dropdown-item.active,
.cid-t9uh4wJJaa .dropdown-item:active {
  background-color: transparent;
}
.cid-t9uh4wJJaa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t9uh4wJJaa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t9uh4wJJaa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t9uh4wJJaa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t9uh4wJJaa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9uh4wJJaa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9uh4wJJaa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t9uh4wJJaa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t9uh4wJJaa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t9uh4wJJaa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282727;
}
.cid-t9uh4wJJaa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t9uh4wJJaa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9uh4wJJaa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9uh4wJJaa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t9uh4wJJaa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9uh4wJJaa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t9uh4wJJaa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t9uh4wJJaa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9uh4wJJaa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t9uh4wJJaa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t9uh4wJJaa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t9uh4wJJaa .navbar {
    height: 70px;
  }
  .cid-t9uh4wJJaa .navbar.opened {
    height: auto;
  }
  .cid-t9uh4wJJaa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9uh4y7OLJ {
  background-image: url("../../../assets/images/banner-2-978x373.jpg");
}
.cid-t9uh4y7OLJ .animated-element {
  color: #ffffff;
}
.cid-t9uh4y7OLJ .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-t9uh4y7OLJ .typed-text {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-t9uh4y7OLJ .mbr-section-text {
  margin-bottom: 1.125rem;
}
.cid-t9uh4y7OLJ .mbr-section-text,
.cid-t9uh4y7OLJ .mbr-section-btn {
  color: #ffffff;
}
.cid-t9uh4y7OLJ .typed-text .typed-text {
  color: #ef8e81;
}
.cid-t9uh4z42yQ {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/fundo-madeirao-1920x1143.png");
}
@media (min-width: 1200px) {
  .cid-t9uh4z42yQ .content-wrapper {
    padding-right: 60px;
  }
}
.cid-t9uh4z42yQ img {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t9uh4z42yQ .content-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-t9uh4z42yQ H1 {
  color: #8ae90b;
}
.cid-t9uh4zwBTi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t9uh4zwBTi .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-t9uh4zwBTi .modal-body .close {
  background: #1b1b1b;
}
.cid-t9uh4zwBTi .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-t9uh4zwBTi .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-t9uh4zwBTi .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-t9uh4zwBTi .mbr-slider .carousel-control {
  background: black!important;
  border-radius: 6px;
  height: 100px;
  width: 50px;
}
.cid-t9uh4zwBTi .mbri-right:before {
  content: "\e909";
  color: white;
}
.cid-t9uh4zwBTi .mbri-left:before {
  content: "\e90a";
  color: white;
}
.cid-t9uh4zwBTi .container {
  max-width: 100%;
  padding: 0;
}
.cid-t9uh4zwBTi .content-slider-wrap {
  width: 100%;
}
.cid-t9uh4zwBTi .carousel-inner > .active,
.cid-t9uh4zwBTi .carousel-inner > .next,
.cid-t9uh4zwBTi .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-t9uh4zwBTi .carousel-control .icon-next,
.cid-t9uh4zwBTi .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t9uh4zwBTi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-t9uh4zwBTi .mbr-iconfont {
  color: black;
  font-size: 2rem!important;
  font-family: 'Moririse2' !important;
  font-weight: 600;
}
.cid-t9uh4zwBTi .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t9uh4zwBTi .boxed-slider > div {
  position: relative;
}
.cid-t9uh4zwBTi .container img {
  width: 100%;
}
.cid-t9uh4zwBTi .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t9uh4zwBTi .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t9uh4zwBTi .mbr-table-cell {
  padding: 0;
}
.cid-t9uh4zwBTi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t9uh4zwBTi .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t9uh4zwBTi .mbr-overlay {
  z-index: 1;
}
.cid-t9uh4zwBTi .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t9uh4zwBTi .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t9uh4zwBTi .carousel-item.active.right,
.cid-t9uh4zwBTi .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t9uh4zwBTi .carousel-item.active.left,
.cid-t9uh4zwBTi .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t9uh4zwBTi .carousel-item.active,
.cid-t9uh4zwBTi .carousel-item.next.left,
.cid-t9uh4zwBTi .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-t9uh4zwBTi .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-t9uh4zwBTi .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-indicators li.active,
.cid-t9uh4zwBTi .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-indicators li::after,
.cid-t9uh4zwBTi .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t9uh4zwBTi .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t9uh4zwBTi .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t9uh4zwBTi .mbr-slider > .container img {
  width: 100%;
}
.cid-t9uh4zwBTi .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t9uh4zwBTi .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t9uh4zwBTi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t9uh4zwBTi .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t9uh4zwBTi .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t9uh4zwBTi .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t9uh4zwBTi .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t9uh4zwBTi .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t9uh4zwBTi .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t9uh4zwBTi .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t9uh4zwBTi .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t9uh4zwBTi .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t9uh4zwBTi .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t9uh4zwBTi .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-t9uh4zwBTi .carousel-inner {
  height: 100%;
}
.cid-t9uh4zwBTi .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-t9uh4zwBTi .image_wrapper {
  height: 530px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-t9uh4zwBTi .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t9uh4zwBTi .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-t9uh4zwBTi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t9uh4zwBTi .content-slider-wrap {
    width: 100%!important;
  }
  .cid-t9uh4zwBTi .image_wrapper {
    height: 318px;
  }
}
.cid-t9uh4zwBTi H2 {
  color: #ffffff;
}
.cid-t9uh4ApRqg {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fundo-madeirao2-1920x1143.png");
}
.cid-t9uh4ApRqg .row {
  flex-direction: row-reverse;
}
.cid-t9uh4ApRqg .video-wrapper iframe {
  width: 100%;
}
.cid-t9uh4ApRqg .mbr-section-title,
.cid-t9uh4ApRqg .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t9uh4ApRqg .text-wrapper {
    padding: 2rem;
  }
}
.cid-t9uh4ApRqg .mbr-section-title {
  color: #8ae90b;
}
.cid-t9uh4AZV19 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f1eb;
}
.cid-t9uh4AZV19 .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: center;
}
.cid-t9uh4AZV19 .title-text {
  color: #83342a;
  text-align: center;
}
.cid-t9uh4AZV19 H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-t9uh4AZV19 .section-text,
.cid-t9uh4AZV19 .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-t9uh4BuOqi {
  padding-top: 615px;
  background-image: url("../../../assets/images/reflorestamento-reflorestar-scaled-2000x1328.jpg");
}
.cid-t9uh4BQl3G {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-madeirao1-1920x1143.png");
}
.cid-t9uh4BQl3G .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
.cid-t9uh4BQl3G .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #6a3649;
  text-align: left;
}
.cid-t9uh4BQl3G .title-text {
  color: #8ae90b;
  text-align: left;
}
.cid-t9uh4BQl3G H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-t9uh4BQl3G .section-text,
.cid-t9uh4BQl3G .mbr-section-btn {
  text-align: left;
  color: #4c4a4b;
}
.cid-t9uh4Cpivv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #069f00;
}
.cid-t9uh4Cpivv .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-t9uh4CXLid {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uh4CXLid .item-wrapper {
  width: 100%;
}
.cid-t9uh4CXLid .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4CXLid .row {
  align-items: center;
}
.cid-t9uh4CXLid .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4CXLid .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4CXLid .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4CXLid .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4CXLid .col-auto {
  display: inline-block;
}
.cid-t9uh4CXLid .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4CXLid .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4CXLid .right-side {
  padding-right: 0px;
}
.cid-t9uh4CXLid .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4CXLid .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4CXLid a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4CXLid rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4CXLid .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4CXLid svg {
  margin-left: 15px;
}
.cid-t9uh4CXLid path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4CXLid .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4CXLid .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4CXLid .part {
  align-items: start;
}
.cid-t9uh4CXLid .link a {
  background-image: none !important;
}
.cid-t9uh4CXLid .mbr-text,
.cid-t9uh4CXLid .link {
  color: #000000;
}
.cid-t9uh4DtQSs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uh4DtQSs .row {
    text-align: center!important;
  }
}
.cid-t9uh4DtQSs .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4DtQSs .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4DtQSs .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4DtQSs .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4DtQSs .user-name-text {
  color: #ffffff;
}
.cid-t9uh4DtQSs .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4DtQSs .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4DtQSs .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4DtQSs .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4DZlBW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9uh4DZlBW .item-wrapper {
  width: 100%;
}
.cid-t9uh4DZlBW .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4DZlBW .row {
  align-items: center;
}
.cid-t9uh4DZlBW .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4DZlBW .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4DZlBW .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4DZlBW .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4DZlBW .col-auto {
  display: inline-block;
}
.cid-t9uh4DZlBW .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4DZlBW .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4DZlBW .right-side {
  padding-right: 0px;
}
.cid-t9uh4DZlBW .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4DZlBW .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4DZlBW a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4DZlBW rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4DZlBW .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4DZlBW svg {
  margin-left: 15px;
}
.cid-t9uh4DZlBW path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4DZlBW .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4DZlBW .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4DZlBW .part {
  align-items: start;
}
.cid-t9uh4DZlBW .link a {
  background-image: none !important;
}
.cid-t9uh4DZlBW .mbr-text,
.cid-t9uh4DZlBW .link {
  color: #000000;
}
.cid-t9uh4EygNn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uh4EygNn .row {
    text-align: center!important;
  }
}
.cid-t9uh4EygNn .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4EygNn .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4EygNn .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4EygNn .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4EygNn .user-name-text {
  color: #ffffff;
}
.cid-t9uh4EygNn .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4EygNn .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4EygNn .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4EygNn .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4F4g7V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uh4F4g7V .item-wrapper {
  width: 100%;
}
.cid-t9uh4F4g7V .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4F4g7V .row {
  align-items: center;
}
.cid-t9uh4F4g7V .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4F4g7V .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4F4g7V .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4F4g7V .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4F4g7V .col-auto {
  display: inline-block;
}
.cid-t9uh4F4g7V .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4F4g7V .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4F4g7V .right-side {
  padding-right: 0px;
}
.cid-t9uh4F4g7V .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4F4g7V .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4F4g7V a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4F4g7V rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4F4g7V .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4F4g7V svg {
  margin-left: 15px;
}
.cid-t9uh4F4g7V path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4F4g7V .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4F4g7V .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4F4g7V .part {
  align-items: start;
}
.cid-t9uh4F4g7V .link a {
  background-image: none !important;
}
.cid-t9uh4F4g7V .mbr-text,
.cid-t9uh4F4g7V .link {
  color: #000000;
}
.cid-t9uh4FA4vg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uh4FA4vg .row {
    text-align: center!important;
  }
}
.cid-t9uh4FA4vg .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4FA4vg .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4FA4vg .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4FA4vg .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4FA4vg .user-name-text {
  color: #ffffff;
}
.cid-t9uh4FA4vg .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4FA4vg .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4FA4vg .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4FA4vg .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4GaLaU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9uh4GaLaU .item-wrapper {
  width: 100%;
}
.cid-t9uh4GaLaU .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4GaLaU .row {
  align-items: center;
}
.cid-t9uh4GaLaU .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4GaLaU .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4GaLaU .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4GaLaU .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4GaLaU .col-auto {
  display: inline-block;
}
.cid-t9uh4GaLaU .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4GaLaU .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4GaLaU .right-side {
  padding-right: 0px;
}
.cid-t9uh4GaLaU .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4GaLaU .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4GaLaU a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4GaLaU rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4GaLaU .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4GaLaU svg {
  margin-left: 15px;
}
.cid-t9uh4GaLaU path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4GaLaU .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4GaLaU .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4GaLaU .part {
  align-items: start;
}
.cid-t9uh4GaLaU .link a {
  background-image: none !important;
}
.cid-t9uh4GaLaU .mbr-text,
.cid-t9uh4GaLaU .link {
  color: #000000;
}
.cid-t9uh4GH6Di {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uh4GH6Di .row {
    text-align: center!important;
  }
}
.cid-t9uh4GH6Di .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4GH6Di .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4GH6Di .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4GH6Di .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4GH6Di .user-name-text {
  color: #ffffff;
}
.cid-t9uh4GH6Di .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4GH6Di .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4GH6Di .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4GH6Di .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4HfjYh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uh4HfjYh .item-wrapper {
  width: 100%;
}
.cid-t9uh4HfjYh .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4HfjYh .row {
  align-items: center;
}
.cid-t9uh4HfjYh .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4HfjYh .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4HfjYh .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4HfjYh .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4HfjYh .col-auto {
  display: inline-block;
}
.cid-t9uh4HfjYh .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4HfjYh .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4HfjYh .right-side {
  padding-right: 0px;
}
.cid-t9uh4HfjYh .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4HfjYh .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4HfjYh a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4HfjYh rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4HfjYh .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4HfjYh svg {
  margin-left: 15px;
}
.cid-t9uh4HfjYh path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4HfjYh .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4HfjYh .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4HfjYh .part {
  align-items: start;
}
.cid-t9uh4HfjYh .link a {
  background-image: none !important;
}
.cid-t9uh4HfjYh .mbr-text,
.cid-t9uh4HfjYh .link {
  color: #000000;
}
.cid-t9uh4HOtDM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uh4HOtDM .row {
    text-align: center!important;
  }
}
.cid-t9uh4HOtDM .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4HOtDM .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4HOtDM .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4HOtDM .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4HOtDM .user-name-text {
  color: #ffffff;
}
.cid-t9uh4HOtDM .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4HOtDM .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4HOtDM .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4HOtDM .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4Imt6H {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9uh4Imt6H .item-wrapper {
  width: 100%;
}
.cid-t9uh4Imt6H .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4Imt6H .row {
  align-items: center;
}
.cid-t9uh4Imt6H .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4Imt6H .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4Imt6H .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4Imt6H .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4Imt6H .col-auto {
  display: inline-block;
}
.cid-t9uh4Imt6H .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4Imt6H .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4Imt6H .right-side {
  padding-right: 0px;
}
.cid-t9uh4Imt6H .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4Imt6H .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4Imt6H a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4Imt6H rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4Imt6H .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4Imt6H svg {
  margin-left: 15px;
}
.cid-t9uh4Imt6H path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4Imt6H .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4Imt6H .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4Imt6H .part {
  align-items: start;
}
.cid-t9uh4Imt6H .link a {
  background-image: none !important;
}
.cid-t9uh4Imt6H .mbr-text,
.cid-t9uh4Imt6H .link {
  color: #000000;
}
.cid-t9uh4J4HY6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uh4J4HY6 .row {
    text-align: center!important;
  }
}
.cid-t9uh4J4HY6 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4J4HY6 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4J4HY6 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4J4HY6 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4J4HY6 .user-name-text {
  color: #ffffff;
}
.cid-t9uh4J4HY6 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4J4HY6 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4J4HY6 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4J4HY6 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4JEtxU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uh4JEtxU .item-wrapper {
  width: 100%;
}
.cid-t9uh4JEtxU .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4JEtxU .row {
  align-items: center;
}
.cid-t9uh4JEtxU .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4JEtxU .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4JEtxU .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4JEtxU .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4JEtxU .col-auto {
  display: inline-block;
}
.cid-t9uh4JEtxU .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4JEtxU .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4JEtxU .right-side {
  padding-right: 0px;
}
.cid-t9uh4JEtxU .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4JEtxU .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4JEtxU a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4JEtxU rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4JEtxU .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4JEtxU svg {
  margin-left: 15px;
}
.cid-t9uh4JEtxU path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4JEtxU .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4JEtxU .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4JEtxU .part {
  align-items: start;
}
.cid-t9uh4JEtxU .link a {
  background-image: none !important;
}
.cid-t9uh4JEtxU .mbr-text,
.cid-t9uh4JEtxU .link {
  color: #000000;
}
.cid-t9uh4KeBE8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uh4KeBE8 .row {
    text-align: center!important;
  }
}
.cid-t9uh4KeBE8 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4KeBE8 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4KeBE8 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4KeBE8 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4KeBE8 .user-name-text {
  color: #ffffff;
}
.cid-t9uh4KeBE8 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4KeBE8 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4KeBE8 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4KeBE8 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4KOI8L {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t9uh4KOI8L .item-wrapper {
  width: 100%;
}
.cid-t9uh4KOI8L .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4KOI8L .row {
  align-items: center;
}
.cid-t9uh4KOI8L .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4KOI8L .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4KOI8L .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4KOI8L .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4KOI8L .col-auto {
  display: inline-block;
}
.cid-t9uh4KOI8L .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4KOI8L .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4KOI8L .right-side {
  padding-right: 0px;
}
.cid-t9uh4KOI8L .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4KOI8L .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4KOI8L a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4KOI8L rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4KOI8L .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4KOI8L svg {
  margin-left: 15px;
}
.cid-t9uh4KOI8L path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4KOI8L .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4KOI8L .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4KOI8L .part {
  align-items: start;
}
.cid-t9uh4KOI8L .link a {
  background-image: none !important;
}
.cid-t9uh4KOI8L .mbr-text,
.cid-t9uh4KOI8L .link {
  color: #000000;
}
.cid-t9uh4LoMN4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .cid-t9uh4LoMN4 .row {
    text-align: center!important;
  }
}
.cid-t9uh4LoMN4 .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4LoMN4 .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4LoMN4 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4LoMN4 .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4LoMN4 .user-name-text {
  color: #ffffff;
}
.cid-t9uh4LoMN4 .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4LoMN4 .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4LoMN4 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4LoMN4 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4M4yVv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c0f4bd;
}
.cid-t9uh4M4yVv .item-wrapper {
  width: 100%;
}
.cid-t9uh4M4yVv .left-side {
  text-align: left;
  padding-left: 10%;
  margin: auto;
}
.cid-t9uh4M4yVv .row {
  align-items: center;
}
.cid-t9uh4M4yVv .mbr-section-title {
  margin: 0 0 26px;
  color: #069f00;
  font-weight: 700;
}
.cid-t9uh4M4yVv .mbr-text {
  padding: 0;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-t9uh4M4yVv .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t9uh4M4yVv .link {
  margin-top: 29px;
  width: 100%;
}
.cid-t9uh4M4yVv .col-auto {
  display: inline-block;
}
.cid-t9uh4M4yVv .mbr-section-subtitle {
  color: #000000;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t9uh4M4yVv .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t9uh4M4yVv .right-side {
  padding-right: 0px;
}
.cid-t9uh4M4yVv .left-side {
  padding-left: 0;
  padding-right: 10%;
}
@media (max-width: 990px) {
  .cid-t9uh4M4yVv .left-side {
    padding: 25px 0px;
  }
}
.cid-t9uh4M4yVv a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t9uh4M4yVv rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t9uh4M4yVv .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t9uh4M4yVv svg {
  margin-left: 15px;
}
.cid-t9uh4M4yVv path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t9uh4M4yVv .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t9uh4M4yVv .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t9uh4M4yVv .part {
  align-items: start;
}
.cid-t9uh4M4yVv .link a {
  background-image: none !important;
}
.cid-t9uh4M4yVv .mbr-text,
.cid-t9uh4M4yVv .link {
  color: #000000;
}
.cid-t9uh4MFsTQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #c0f4bd;
}
@media (max-width: 575px) {
  .cid-t9uh4MFsTQ .row {
    text-align: center!important;
  }
}
.cid-t9uh4MFsTQ .user-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-t9uh4MFsTQ .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-t9uh4MFsTQ .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-t9uh4MFsTQ .user-prof-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t9uh4MFsTQ .user-name-text {
  color: #ffffff;
}
.cid-t9uh4MFsTQ .user-prof-text {
  color: #ffffff;
  opacity: 0.5;
}
.cid-t9uh4MFsTQ .mbr-text {
  color: #000000;
  text-align: left;
}
@media (max-width: 575px) {
  .cid-t9uh4MFsTQ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t9uh4MFsTQ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t9uh4Nhsbv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t9uh4Nhsbv .nav-tabs .nav-item.open .nav-link:focus,
.cid-t9uh4Nhsbv .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t9uh4Nhsbv .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-t9uh4Nhsbv .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t9uh4Nhsbv .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-t9uh4Nhsbv .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #069f00;
}
.cid-t9uh4Nhsbv .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9uh4Nhsbv .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-t9uh4Nhsbv .nav-tabs .nav-item {
  width: 100%;
}
.cid-t9uh4Nhsbv .nav-link,
.cid-t9uh4Nhsbv .nav-link.active {
  padding: 1rem auto;
  background: #b6dd83;
}
.cid-t9uh4Nhsbv .nav-tabs .nav-link.active {
  color: #069f00;
}
.cid-t9uh4Nhsbv .tab-content {
  background: #b6dd83;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-t9uh4Nhsbv .tab-content {
    border-radius: 30px !important;
  }
}
.cid-t9uh4Nhsbv .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-t9uh4Nhsbv .logo-container {
    border-right: 1px solid #069f00;
  }
}
.cid-t9uh4Nhsbv H4 {
  text-align: center;
}
.cid-t9uh4Nhsbv H3 {
  text-align: center;
  color: #8ae90b;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-t9uh4Nhsbv .nav-link {
    font-size: 1.2rem;
  }
}
.cid-t9uh4Oak60 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t9uh4Oak60 .nav-tabs .nav-item.open .nav-link:focus,
.cid-t9uh4Oak60 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t9uh4Oak60 .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-t9uh4Oak60 .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t9uh4Oak60 .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-t9uh4Oak60 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #069f00;
}
.cid-t9uh4Oak60 .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9uh4Oak60 .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-t9uh4Oak60 .nav-tabs .nav-item {
  width: 100%;
}
.cid-t9uh4Oak60 .nav-link,
.cid-t9uh4Oak60 .nav-link.active {
  padding: 1rem auto;
  background: #b6dd83;
}
.cid-t9uh4Oak60 .nav-tabs .nav-link.active {
  color: #069f00;
}
.cid-t9uh4Oak60 .tab-content {
  background: #b6dd83;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-t9uh4Oak60 .tab-content {
    border-radius: 30px !important;
  }
}
.cid-t9uh4Oak60 .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-t9uh4Oak60 .logo-container {
    border-right: 1px solid #069f00;
  }
}
.cid-t9uh4Oak60 H4 {
  text-align: center;
}
.cid-t9uh4Oak60 H3 {
  text-align: center;
  color: #8ae90b;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-t9uh4Oak60 .nav-link {
    font-size: 1.2rem;
  }
}
.cid-t9uh4P8DzQ {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/whatsapp-image-2020-06-24-at-17.59.00-1000x500.jpg");
}
.cid-t9uh4P8DzQ H1 {
  color: #8ae90b;
  text-align: left;
}
.cid-t9uh4P8DzQ .mbr-text,
.cid-t9uh4P8DzQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-t9uhgsyTL9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t9uhgsyTL9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t9uhgsyTL9 .img-item,
.cid-t9uhgsyTL9 img {
  height: 100%;
  object-fit: cover;
}
.cid-t9uhgsyTL9 .img-col {
  padding: 0;
}
.cid-t9uhgsyTL9 .col-auto {
  width: 100%;
}
.cid-t9uhgsyTL9 .wrapper {
  background: #ffffff;
  padding: 6rem 4rem;
  border-radius: 10px;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .cid-t9uhgsyTL9 .wrapper {
    padding: 3rem 0rem;
    margin: 0 1rem;
  }
}
.cid-t9uhgsyTL9 textarea {
  min-height: 200px;
}
.cid-t9uhgsyTL9 .btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
}
.cid-t9uhgsyTL9 .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-t9uhgsyTL9 H4 {
  color: #777777;
}
.cid-t9uhgsyTL9 H3 {
  color: #069f00;
}
.cid-t9uh4QuP8j {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1277.jpg");
}
.cid-t9uh4QuP8j .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-t9uh4QuP8j .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-t9uh4QuP8j .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t9uh4QuP8j .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-t9uh4QuP8j .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-t9uh4QuP8j .mbr-text,
.cid-t9uh4QuP8j .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-t9uh4QuP8j .mbr-section-subtitle {
  text-align: center;
  color: #069f00;
}
.cid-t9uh4R72WF .google-map {
  height: 25rem;
  position: relative;
}
.cid-t9uh4R72WF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t9uh4R72WF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t9uh4R72WF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t9uh4R72WF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t9uh4RF1RW {
  background-image: url("../../../assets/images/pexels-pille-kirsi-1093184-2000x1247.jpg");
}
.cid-t9uh4RF1RW H1 {
  color: #8ae90b;
  text-align: left;
}
.cid-t9uh4RF1RW .mbr-text,
.cid-t9uh4RF1RW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-t9uh4Smtvq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t9uh4Smtvq .content {
    text-align: center;
  }
  .cid-t9uh4Smtvq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t9uh4Smtvq .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-t9uh4Smtvq textarea.form-control {
  resize: none;
}
.cid-t9uh4Smtvq .input-group-btn {
  display: inline-block;
}
.cid-t9uh4Smtvq .input-group-btn .btn {
  margin: 0 !important;
  padding: 0.75rem 1.5625rem !important;
  text-transform: none;
}
.cid-t9uh4Smtvq .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t9uh4Smtvq .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t9uh4Smtvq .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t9uh4Smtvq .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-t9uh4Smtvq .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t9uh4Smtvq .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t9uh4Smtvq .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-t9uh4Smtvq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t9uh4Smtvq .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-t9uh4Smtvq .form-control,
.cid-t9uh4Smtvq .input-group-btn .btn {
  border-radius: 3px;
}
.cid-t9uh4Smtvq P {
  color: #069f00;
  text-align: left;
}
.cid-t9uh4Smtvq .foot-title,
.cid-t9uh4Smtvq .img-logo {
  color: #069f00;
}
.cid-t9uh4Smtvq .copyright > p {
  color: #000000;
}
