.btn {
  border-width: 2px;
}
body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'design.graffiti.comicsansms';
  font-size: 3.2rem;
  line-height: 120%;
  letter-spacing: 0.004rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'COMIC';
  font-size: 2.37rem;
  line-height: 120%;
}
.display-2 > .mbr-iconfont {
  font-size: 2.9625rem;
}
.display-4 {
  font-family: 'ComicSansMS3';
  font-size: 1rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'ComicSansMS3';
  font-size: 1.6rem;
  line-height: 1.77em;
  letter-spacing: 0.016rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.2rem;
  line-height: 140%;
  letter-spacing: 0.001rem;
}
.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: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.896rem;
    font-size: calc( 1.4795rem + (2.37 - 1.4795) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.4795rem + (2.37 - 1.4795) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 3.125rem;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 3.125rem;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #e7d900 !important;
}
.bg-info {
  background-color: #ff0000 !important;
}
.bg-warning {
  background-color: #24d22e !important;
}
.bg-danger {
  background-color: #018508 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fcfbf5 !important;
  border-color: #fcfbf5 !important;
  color: #baa838 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #776c24 !important;
  background-color: #e8e0b2 !important;
  border-color: #e8e0b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #baa838 !important;
  background-color: #e8e0b2 !important;
  border-color: #e8e0b2 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a80000 !important;
  border-color: #a80000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e7d900 !important;
  border-color: #e7d900 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #908800 !important;
  border-color: #908800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #908800 !important;
  border-color: #908800 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #24d22e !important;
  border-color: #24d22e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #17881e !important;
  border-color: #17881e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #17881e !important;
  border-color: #17881e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #018508 !important;
  border-color: #018508 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #002f03 !important;
  border-color: #002f03 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #002f03 !important;
  border-color: #002f03 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #fcfbf5;
  color: #fcfbf5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e8e0b2 !important;
  background-color: transparent!important;
  border-color: #e8e0b2 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #baa838 !important;
  background-color: #fcfbf5 !important;
  border-color: #fcfbf5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ff0000;
  color: #ff0000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a80000 !important;
  background-color: transparent!important;
  border-color: #a80000 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #e7d900;
  color: #e7d900;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #908800 !important;
  background-color: transparent!important;
  border-color: #908800 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #e7d900 !important;
  border-color: #e7d900 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #24d22e;
  color: #24d22e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #17881e !important;
  background-color: transparent!important;
  border-color: #17881e !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #24d22e !important;
  border-color: #24d22e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #018508;
  color: #018508;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #002f03 !important;
  background-color: transparent!important;
  border-color: #002f03 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #018508 !important;
  border-color: #018508 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #fcfbf5 !important;
}
.text-success {
  color: #e7d900 !important;
}
.text-info {
  color: #ff0000 !important;
}
.text-warning {
  color: #24d22e !important;
}
.text-danger {
  color: #018508 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #e4dca7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #817900 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #990000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #157b1b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #002002 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff0000;
}
.alert-warning {
  background-color: #24d22e;
}
.alert-danger {
  background-color: #018508;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffab4;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffcccc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ccf6ce;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #08fd15;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'ComicSansMS3';
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'ComicSansMS3';
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !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: #fcfbf5 !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='%23ffffff' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  border: none;
  box-shadow: none;
  padding: 16px 40px;
  font-weight: 400;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont,
.mbr-section-btn .btn:focus .mbr-iconfont,
.mbr-section-btn-main .btn:focus .mbr-iconfont {
  transform: translate(0.5rem, 0);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 8px;
  font-size: 16px;
  transition: all .3s ease;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover {
  border: none;
  box-shadow: none;
}
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  color: #ffffff !important;
}
.cid-u5LlwI6bRw {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/immagine-1-1280x853.webp");
}
.cid-u5LlwI6bRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5LlwI6bRw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5LlwI6bRw img {
  border-radius: 3rem;
}
.cid-u5LlwI6bRw .row {
  align-items: center;
}
.cid-u5LlwI6bRw .mbr-section-title {
  color: #000000;
}
.cid-u5LlwI6bRw .mbr-text,
.cid-u5LlwI6bRw .mbr-section-btn {
  color: #000000;
}
.cid-u5snVilSfm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u5snVilSfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5snVilSfm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5snVilSfm .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u5snVilSfm .container-fluid {
    padding: 0 12px;
  }
}
.cid-u5snVilSfm .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u5snVilSfm .container {
    padding: 0 20px;
  }
}
.cid-u5snVilSfm .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u5snVilSfm .card {
  padding: 0;
  border-radius: 0;
}
.cid-u5snVilSfm .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u5snVilSfm .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u5snVilSfm .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u5snVilSfm .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u5snVilSfm .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u5snVilSfm .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u5snVilSfm .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u5snVilSfm .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u5snVilSfm .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u5snVilSfm .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u5snVilSfm .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u5snVilSfm .mbr-text {
  color: #000000;
}
.cid-u5snVilSfm .mbr-section-title,
.cid-u5snVilSfm .mbr-section-btn {
  color: #018508;
}
.cid-u9nHvC8hIb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #018508;
}
.cid-u9nHvC8hIb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u9nHvC8hIb .card-title {
  margin-bottom: 26px;
  color: #fcfbf5;
}
.cid-u9nHvC8hIb .mbr-text {
  margin-bottom: 30px;
}
.cid-u9nHvC8hIb .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-u9nHvC8hIb .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-u9nHvC8hIb .iconfont-wrapper svg #grad_1 {
  stop-color: #0033ce;
}
.cid-u9nHvC8hIb .iconfont-wrapper svg #grad_2 {
  stop-color: #3567ff;
}
.cid-u9nHvC8hIb .iconfont-wrapper svg #blur_svg {
  flood-color: #0033ce;
}
.cid-u9nHvC8hIb .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-u9nHvC8hIb .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u9nHvC8hIb .text-wrapper {
    text-align: center;
  }
  .cid-u9nHvC8hIb .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-u9nHvC8hIb .mbr-text {
    margin-bottom: 20px;
  }
  .cid-u9nHvC8hIb .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u9nHvC8hIb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9nHvC8hIb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9nHvC8hIb .card-title,
.cid-u9nHvC8hIb .icon_block {
  color: #ffffff;
  text-align: right;
}
.cid-u9nHvC8hIb .mbr-text,
.cid-u9nHvC8hIb .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u9nHvC8hIb .card-title,
.cid-u9nHvC8hIb .icon_block DIV {
  text-align: center;
}
.cid-u7aZfCLVW1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #018508;
}
.cid-u7aZfCLVW1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aZfCLVW1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aZfCLVW1 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u7aZfCLVW1 .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7aZfCLVW1 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7aZfCLVW1 .container {
    padding: 0 20px;
  }
}
.cid-u7aZfCLVW1 .row {
  justify-content: center;
}
.cid-u7aZfCLVW1 .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7aZfCLVW1 .item {
    margin-bottom: 50px;
  }
}
.cid-u7aZfCLVW1 .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u7aZfCLVW1 .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #e7d900;
}
.cid-u7aZfCLVW1 .mbr-card-title {
  color: #1d1d1d;
}
.cid-u7aZfCLVW1 .mbr-card-title,
.cid-u7aZfCLVW1 .item-img {
  text-align: center;
  color: #ffffff;
}
.cid-u7aZfCLVW1 .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-twFGUyQ3LA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-twFGUyQ3LA .mbr-fallback-image.disabled {
  display: none;
}
.cid-twFGUyQ3LA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twFGUyQ3LA .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-twFGUyQ3LA .container-fluid {
    padding: 0 12px;
  }
}
.cid-twFGUyQ3LA .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-twFGUyQ3LA .container {
    padding: 0 20px;
  }
}
.cid-twFGUyQ3LA .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-twFGUyQ3LA .card {
  padding: 0;
}
.cid-twFGUyQ3LA .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-twFGUyQ3LA .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-twFGUyQ3LA .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-twFGUyQ3LA .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-twFGUyQ3LA .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-twFGUyQ3LA .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-twFGUyQ3LA .card:last-child {
    padding: 50px 20px;
  }
}
.cid-twFGUyQ3LA .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-twFGUyQ3LA .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-twFGUyQ3LA .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-twFGUyQ3LA .mbr-section-title {
  color: #1d1d1d;
}
.cid-twFGUyQ3LA .mbr-text {
  color: #000000;
}
.cid-twFGUyQ3LA .mbr-section-title,
.cid-twFGUyQ3LA .mbr-section-btn {
  color: #018508;
}
.cid-u7aZ83IdoJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7aZ83IdoJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aZ83IdoJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aZ83IdoJ .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7aZ83IdoJ .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7aZ83IdoJ .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7aZ83IdoJ .container {
    padding: 0 20px;
  }
}
.cid-u7aZ83IdoJ .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7aZ83IdoJ .card {
  padding: 0;
}
.cid-u7aZ83IdoJ .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7aZ83IdoJ .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u7aZ83IdoJ .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u7aZ83IdoJ .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7aZ83IdoJ .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7aZ83IdoJ .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7aZ83IdoJ .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7aZ83IdoJ .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7aZ83IdoJ .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7aZ83IdoJ .mbr-text {
  color: #1d1d1d;
}
.cid-u7aZ83IdoJ .mbr-section-title,
.cid-u7aZ83IdoJ .mbr-section-btn {
  color: #018508;
}
.cid-u7JQuyqfCF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u7JQuyqfCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7JQuyqfCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7JQuyqfCF .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u7JQuyqfCF .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7JQuyqfCF .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7JQuyqfCF .container {
    padding: 0 20px;
  }
}
.cid-u7JQuyqfCF .row {
  justify-content: center;
}
.cid-u7JQuyqfCF .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7JQuyqfCF .item {
    margin-bottom: 50px;
  }
}
.cid-u7JQuyqfCF .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u7JQuyqfCF .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #018508;
}
.cid-u7JQuyqfCF .item .item-wrapper .item-img img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  object-fit: cover;
  display: inline-flex;
  border: 2px solid #018508;
}
.cid-u7JQuyqfCF .item .item-wrapper .item-content .title-wrapper {
  height: 100%;
}
.cid-u7JQuyqfCF .item .item-wrapper .item-content .title-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-u7JQuyqfCF .item .item-wrapper .item-content .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7JQuyqfCF .mbr-card-title {
  color: #1d1d1d;
}
.cid-u7JQuyqfCF .mbr-card-title,
.cid-u7JQuyqfCF .item-img {
  text-align: center;
  color: #000000;
}
.cid-u7JQuyqfCF .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-u5LtVJKZWP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fcfbf5;
}
.cid-u5LtVJKZWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5LtVJKZWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5LtVJKZWP .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u5LtVJKZWP .container-fluid {
    padding: 0 20px;
  }
}
.cid-u5LtVJKZWP .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u5LtVJKZWP .container {
    padding: 0 20px;
  }
}
.cid-u5LtVJKZWP .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u5LtVJKZWP .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u5LtVJKZWP .mbr-section-title {
  color: #1d1d1d;
}
.cid-u5LtVJKZWP .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u5LtVJKZWP .mbr-section-title,
.cid-u5LtVJKZWP .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u7aWiIsDH9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u7aWiIsDH9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aWiIsDH9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aWiIsDH9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u7aWiIsDH9 .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7aWiIsDH9 .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u7aWiIsDH9 .container {
    padding: 0 20px;
  }
}
.cid-u7aWiIsDH9 .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u7aWiIsDH9 .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u7aWiIsDH9 .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7aWiIsDH9 .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u7aWiIsDH9 .mbr-section-title,
.cid-u7aWiIsDH9 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u5TKOyCEHW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u5TKOyCEHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5TKOyCEHW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5TKOyCEHW .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u5TKOyCEHW .container-fluid {
    padding: 0 12px;
  }
}
.cid-u5TKOyCEHW .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u5TKOyCEHW .container {
    padding: 0 20px;
  }
}
.cid-u5TKOyCEHW .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u5TKOyCEHW .card {
  padding: 0;
  border-radius: 0;
}
.cid-u5TKOyCEHW .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u5TKOyCEHW .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u5TKOyCEHW .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u5TKOyCEHW .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u5TKOyCEHW .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u5TKOyCEHW .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u5TKOyCEHW .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u5TKOyCEHW .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u5TKOyCEHW .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u5TKOyCEHW .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u5TKOyCEHW .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u5TKOyCEHW .mbr-text {
  color: #000000;
}
.cid-u5TKOyCEHW .mbr-section-title,
.cid-u5TKOyCEHW .mbr-section-btn {
  color: #018508;
}
.cid-u5TKougUbX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fcfbf5;
}
.cid-u5TKougUbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5TKougUbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5TKougUbX .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u5TKougUbX .container-fluid {
    padding: 0 20px;
  }
}
.cid-u5TKougUbX .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u5TKougUbX .container {
    padding: 0 20px;
  }
}
.cid-u5TKougUbX .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u5TKougUbX .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u5TKougUbX .mbr-section-title {
  color: #1d1d1d;
}
.cid-u5TKougUbX .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u5TKougUbX .mbr-section-title,
.cid-u5TKougUbX .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u64wKVUCfm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fcfbf5;
}
.cid-u64wKVUCfm .mbr-section-title {
  text-align: left;
}
.cid-u64wKVUCfm .mbr-text,
.cid-u64wKVUCfm .mbr-section-btn {
  text-align: center;
}
.cid-u64wKVUCfm .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u5swF0cKD4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u5swF0cKD4 .mbr-section-title {
  text-align: left;
}
.cid-u5swF0cKD4 .mbr-text,
.cid-u5swF0cKD4 .mbr-section-btn {
  text-align: center;
}
.cid-u5swF0cKD4 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u5svFrApQv {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u5svFrApQv .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u5svFrApQv .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u5svFrApQv .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u5svFrApQv .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u5svFrApQv .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u5svFrApQv .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u5svFrApQv .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u5svFrApQv .input-group-btn {
  padding-left: 0;
}
.cid-u5svFrApQv .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u5svFrApQv .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u5svFrApQv .mbr-text {
  color: #444;
}
.cid-u5svFrApQv h5 {
  margin-bottom: 0;
}
.cid-u5svFrApQv .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u5svFrApQv .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u5svFrApQv .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u5svFrApQv .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u5svFrApQv .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u5svFrApQv .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u5svFrApQv .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u5svFrApQv .social-list a:hover {
  opacity: 0.4;
}
.cid-u5svFrApQv .media-container-row > div {
  padding: 0px;
}
.cid-u5svFrApQv .text2 {
  color: #000000;
  text-align: left;
}
.cid-u5svFrApQv .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u5svFrApQv .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u5svFrApQv .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u5svFrApQv .social-list,
  .cid-u5svFrApQv .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u5svFrApQv h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u5svFrApQv .form-group {
    max-width: 180px;
  }
}
.cid-u5svFrApQv .links span {
  color: #9e9e9e;
}
.cid-u5svFrApQv .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u5svFrApQv .logo-title {
  text-align: center;
}
.cid-u5svFrApQv .logo-title,
.cid-u5svFrApQv .logo {
  color: #000000;
}
.cid-u5svFrApQv .group-title DIV {
  text-align: center;
}
.cid-u5svFOzlsU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u5svFOzlsU .mbr-section-title {
  text-align: left;
}
.cid-u5svFOzlsU .mbr-text,
.cid-u5svFOzlsU .mbr-section-btn {
  text-align: center;
}
.cid-u5svFOzlsU .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u5sILL334d .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u5sILL334d .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u5sILL334d .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u5sILL334d .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5sILL334d .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u5sILL334d .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u5sILL334d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5sILL334d .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u5sILL334d .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u5sILL334d .navbar.collapsed.opened .navbar-collapse.show,
.cid-u5sILL334d .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u5sILL334d .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u5sILL334d .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u5sILL334d .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u5sILL334d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5sILL334d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5sILL334d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u5sILL334d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5sILL334d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u5sILL334d .navbar {
    flex-wrap: nowrap;
  }
  .cid-u5sILL334d .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u5sILL334d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5sILL334d .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u5sILL334d .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u5sILL334d .navbar.opened .navbar-collapse.show,
  .cid-u5sILL334d .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u5sILL334d .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u5sILL334d .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u5sILL334d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5sILL334d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5sILL334d .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u5sILL334d .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u5sILL334d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5sILL334d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u5sILL334d .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u5sILL334d .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u5sILL334d .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u5sILL334d .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u5sILL334d .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5sILL334d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5sILL334d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5sILL334d .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u5sILL334d .dropdown-item.active,
.cid-u5sILL334d .dropdown-item:active {
  background-color: transparent;
}
.cid-u5sILL334d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5sILL334d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5sILL334d .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5sILL334d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u5sILL334d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5sILL334d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5sILL334d ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u5sILL334d .navbar-buttons {
  text-align: center;
}
.cid-u5sILL334d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u5sILL334d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u5sILL334d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5sILL334d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5sILL334d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5sILL334d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5sILL334d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5sILL334d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5sILL334d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5sILL334d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5sILL334d .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u5sILL334d a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u5sILL334d a.nav-link:focus {
  outline: none;
}
.cid-u5sILL334d .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5sILL334d .nav-link:hover,
.cid-u5sILL334d .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5sILL334d .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u5sILL334d .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u74QRDqY3B {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-u74QRDqY3B .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74QRDqY3B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74QRDqY3B img {
  border-radius: 3rem;
}
.cid-u74QRDqY3B .row {
  align-items: center;
}
.cid-u74QRDqY3B .mbr-section-title {
  color: #e7d900;
}
.cid-u74QRDqY3B .mbr-text,
.cid-u74QRDqY3B .mbr-section-btn {
  color: #ffffff;
}
.cid-u74QRF3aZE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u74QRF3aZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74QRF3aZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74QRF3aZE .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u74QRF3aZE .container-fluid {
    padding: 0 20px;
  }
}
.cid-u74QRF3aZE .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u74QRF3aZE .container {
    padding: 0 20px;
  }
}
.cid-u74QRF3aZE .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u74QRF3aZE .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u74QRF3aZE .mbr-section-title {
  color: #1d1d1d;
}
.cid-u74QRF3aZE .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u74QRF3aZE .mbr-section-title,
.cid-u74QRF3aZE .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u74QREbRKV {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u74QREbRKV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74QREbRKV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74QREbRKV .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u74QREbRKV .container-fluid {
    padding: 0 12px;
  }
}
.cid-u74QREbRKV .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u74QREbRKV .container {
    padding: 0 20px;
  }
}
.cid-u74QREbRKV .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u74QREbRKV .card {
  padding: 0;
  border-radius: 0;
}
.cid-u74QREbRKV .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u74QREbRKV .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u74QREbRKV .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u74QREbRKV .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u74QREbRKV .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u74QREbRKV .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u74QREbRKV .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u74QREbRKV .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u74QREbRKV .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u74QREbRKV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u74QREbRKV .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u74QREbRKV .mbr-text {
  color: #000000;
}
.cid-u74QREbRKV .mbr-section-title,
.cid-u74QREbRKV .mbr-section-btn {
  color: #018508;
}
.cid-u7504Opuqy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u7504Opuqy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7504Opuqy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7504Opuqy .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u7504Opuqy .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7504Opuqy .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u7504Opuqy .container {
    padding: 0 20px;
  }
}
.cid-u7504Opuqy .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u7504Opuqy .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u7504Opuqy .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7504Opuqy .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u7504Opuqy .mbr-section-title,
.cid-u7504Opuqy .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u74QRG3I8n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u74QRG3I8n .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74QRG3I8n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74QRG3I8n .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u74QRG3I8n .container-fluid {
    padding: 0 12px;
  }
}
.cid-u74QRG3I8n .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u74QRG3I8n .container {
    padding: 0 20px;
  }
}
.cid-u74QRG3I8n .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u74QRG3I8n .card {
  padding: 0;
}
.cid-u74QRG3I8n .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u74QRG3I8n .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u74QRG3I8n .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u74QRG3I8n .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u74QRG3I8n .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u74QRG3I8n .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u74QRG3I8n .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u74QRG3I8n .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u74QRG3I8n .mbr-section-title {
  color: #1d1d1d;
}
.cid-u74QRG3I8n .mbr-text {
  color: #000000;
}
.cid-u74QRG3I8n .mbr-section-title,
.cid-u74QRG3I8n .mbr-section-btn {
  color: #018508;
}
.cid-u74QRHlSXW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u74QRHlSXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74QRHlSXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74QRHlSXW .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u74QRHlSXW .container-fluid {
    padding: 0 12px;
  }
}
.cid-u74QRHlSXW .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u74QRHlSXW .container {
    padding: 0 20px;
  }
}
.cid-u74QRHlSXW .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u74QRHlSXW .card {
  padding: 0;
  border-radius: 0;
}
.cid-u74QRHlSXW .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u74QRHlSXW .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u74QRHlSXW .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u74QRHlSXW .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u74QRHlSXW .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u74QRHlSXW .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u74QRHlSXW .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u74QRHlSXW .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u74QRHlSXW .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u74QRHlSXW .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u74QRHlSXW .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u74QRHlSXW .mbr-text {
  color: #000000;
}
.cid-u74QRHlSXW .mbr-section-title,
.cid-u74QRHlSXW .mbr-section-btn {
  color: #018508;
}
.cid-u74UXTuP6H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u74UXTuP6H .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74UXTuP6H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74UXTuP6H .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u74UXTuP6H .container-fluid {
    padding: 0 12px;
  }
}
.cid-u74UXTuP6H .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u74UXTuP6H .container {
    padding: 0 20px;
  }
}
.cid-u74UXTuP6H .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u74UXTuP6H .card {
  padding: 0;
}
.cid-u74UXTuP6H .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u74UXTuP6H .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u74UXTuP6H .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u74UXTuP6H .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u74UXTuP6H .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u74UXTuP6H .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u74UXTuP6H .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u74UXTuP6H .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u74UXTuP6H .mbr-section-title {
  color: #1d1d1d;
}
.cid-u74UXTuP6H .mbr-text {
  color: #000000;
}
.cid-u74UXTuP6H .mbr-section-title,
.cid-u74UXTuP6H .mbr-section-btn {
  color: #018508;
}
.cid-u74VemJlQI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u74VemJlQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74VemJlQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74VemJlQI .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u74VemJlQI .container-fluid {
    padding: 0 12px;
  }
}
.cid-u74VemJlQI .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u74VemJlQI .container {
    padding: 0 20px;
  }
}
.cid-u74VemJlQI .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u74VemJlQI .card {
  padding: 0;
}
.cid-u74VemJlQI .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u74VemJlQI .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u74VemJlQI .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-right: 0;
  border-bottom: 0;
}
.cid-u74VemJlQI .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
}
.cid-u74VemJlQI .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u74VemJlQI .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u74VemJlQI .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u74VemJlQI .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u74VemJlQI .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u74VemJlQI .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u74VemJlQI .mbr-section-title {
  color: #1d1d1d;
}
.cid-u74VemJlQI .mbr-text {
  color: #000000;
}
.cid-u74VemJlQI .mbr-section-title,
.cid-u74VemJlQI .mbr-section-btn {
  color: #018508;
}
.cid-u74QRGJYLy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u74QRGJYLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u74QRGJYLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u74QRGJYLy .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u74QRGJYLy .container-fluid {
    padding: 0 20px;
  }
}
.cid-u74QRGJYLy .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u74QRGJYLy .container {
    padding: 0 20px;
  }
}
.cid-u74QRGJYLy .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u74QRGJYLy .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u74QRGJYLy .mbr-section-title {
  color: #1d1d1d;
}
.cid-u74QRGJYLy .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u74QRGJYLy .mbr-section-title,
.cid-u74QRGJYLy .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u74QRIjbGt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u74QRIjbGt .mbr-section-title {
  text-align: left;
}
.cid-u74QRIjbGt .mbr-text,
.cid-u74QRIjbGt .mbr-section-btn {
  text-align: center;
}
.cid-u74QRIjbGt .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u74QRIMOQp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u74QRIMOQp .mbr-section-title {
  text-align: left;
}
.cid-u74QRIMOQp .mbr-text,
.cid-u74QRIMOQp .mbr-section-btn {
  text-align: center;
}
.cid-u74QRIMOQp .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u74QRJetNQ {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u74QRJetNQ .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u74QRJetNQ .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u74QRJetNQ .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u74QRJetNQ .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u74QRJetNQ .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u74QRJetNQ .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u74QRJetNQ .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u74QRJetNQ .input-group-btn {
  padding-left: 0;
}
.cid-u74QRJetNQ .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u74QRJetNQ .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u74QRJetNQ .mbr-text {
  color: #444;
}
.cid-u74QRJetNQ h5 {
  margin-bottom: 0;
}
.cid-u74QRJetNQ .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u74QRJetNQ .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u74QRJetNQ .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u74QRJetNQ .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u74QRJetNQ .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u74QRJetNQ .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u74QRJetNQ .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u74QRJetNQ .social-list a:hover {
  opacity: 0.4;
}
.cid-u74QRJetNQ .media-container-row > div {
  padding: 0px;
}
.cid-u74QRJetNQ .text2 {
  color: #000000;
  text-align: left;
}
.cid-u74QRJetNQ .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u74QRJetNQ .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u74QRJetNQ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u74QRJetNQ .social-list,
  .cid-u74QRJetNQ .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u74QRJetNQ h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u74QRJetNQ .form-group {
    max-width: 180px;
  }
}
.cid-u74QRJetNQ .links span {
  color: #9e9e9e;
}
.cid-u74QRJetNQ .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u74QRJetNQ .logo-title {
  text-align: center;
}
.cid-u74QRJetNQ .logo-title,
.cid-u74QRJetNQ .logo {
  color: #000000;
}
.cid-u74QRJetNQ .group-title DIV {
  text-align: center;
}
.cid-u74QRK5bWY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u74QRK5bWY .mbr-section-title {
  text-align: left;
}
.cid-u74QRK5bWY .mbr-text,
.cid-u74QRK5bWY .mbr-section-btn {
  text-align: center;
}
.cid-u74QRK5bWY .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u74QRKytSU .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u74QRKytSU .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u74QRKytSU .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u74QRKytSU .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u74QRKytSU .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u74QRKytSU .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u74QRKytSU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u74QRKytSU .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u74QRKytSU .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u74QRKytSU .navbar.collapsed.opened .navbar-collapse.show,
.cid-u74QRKytSU .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u74QRKytSU .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u74QRKytSU .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u74QRKytSU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u74QRKytSU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u74QRKytSU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u74QRKytSU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u74QRKytSU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u74QRKytSU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u74QRKytSU .navbar {
    flex-wrap: nowrap;
  }
  .cid-u74QRKytSU .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u74QRKytSU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u74QRKytSU .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u74QRKytSU .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u74QRKytSU .navbar.opened .navbar-collapse.show,
  .cid-u74QRKytSU .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u74QRKytSU .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u74QRKytSU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u74QRKytSU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u74QRKytSU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u74QRKytSU .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u74QRKytSU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u74QRKytSU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u74QRKytSU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u74QRKytSU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u74QRKytSU .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u74QRKytSU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u74QRKytSU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u74QRKytSU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u74QRKytSU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u74QRKytSU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u74QRKytSU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u74QRKytSU .dropdown-item.active,
.cid-u74QRKytSU .dropdown-item:active {
  background-color: transparent;
}
.cid-u74QRKytSU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u74QRKytSU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u74QRKytSU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u74QRKytSU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u74QRKytSU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u74QRKytSU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u74QRKytSU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u74QRKytSU .navbar-buttons {
  text-align: center;
}
.cid-u74QRKytSU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u74QRKytSU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u74QRKytSU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u74QRKytSU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u74QRKytSU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u74QRKytSU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u74QRKytSU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u74QRKytSU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u74QRKytSU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u74QRKytSU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u74QRKytSU .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u74QRKytSU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u74QRKytSU a.nav-link:focus {
  outline: none;
}
.cid-u74QRKytSU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u74QRKytSU .nav-link:hover,
.cid-u74QRKytSU .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u74QRKytSU .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u74QRKytSU .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u7aQ6FRdsc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/immagine-1-1280x853.webp");
}
.cid-u7aQ6FRdsc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aQ6FRdsc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aQ6FRdsc img {
  border-radius: 3rem;
}
.cid-u7aQ6FRdsc .row {
  align-items: center;
}
.cid-u7aQ6FRdsc .mbr-section-title {
  color: #ffffff;
}
.cid-u7aQ6FRdsc .mbr-text,
.cid-u7aQ6FRdsc .mbr-section-btn {
  color: #ffffff;
}
.cid-u7aQ6GtWCz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7aQ6GtWCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aQ6GtWCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aQ6GtWCz .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7aQ6GtWCz .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7aQ6GtWCz .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7aQ6GtWCz .container {
    padding: 0 20px;
  }
}
.cid-u7aQ6GtWCz .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7aQ6GtWCz .card {
  padding: 0;
  border-radius: 0;
}
.cid-u7aQ6GtWCz .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u7aQ6GtWCz .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7aQ6GtWCz .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u7aQ6GtWCz .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7aQ6GtWCz .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u7aQ6GtWCz .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u7aQ6GtWCz .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u7aQ6GtWCz .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7aQ6GtWCz .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7aQ6GtWCz .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u7aQ6GtWCz .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u7aQ6GtWCz .mbr-text {
  color: #000000;
}
.cid-u7aQ6GtWCz .mbr-section-title,
.cid-u7aQ6GtWCz .mbr-section-btn {
  color: #018508;
}
.cid-u7aTf5kEci {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u7aTf5kEci .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aTf5kEci .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aTf5kEci .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u7aTf5kEci .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7aTf5kEci .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7aTf5kEci .container {
    padding: 0 20px;
  }
}
.cid-u7aTf5kEci .row {
  justify-content: center;
}
.cid-u7aTf5kEci .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7aTf5kEci .item {
    margin-bottom: 50px;
  }
}
.cid-u7aTf5kEci .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u7aTf5kEci .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #018508;
}
.cid-u7aTf5kEci .item .item-wrapper .item-img img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  object-fit: cover;
  display: inline-flex;
  border: 2px solid #018508;
}
.cid-u7aTf5kEci .item .item-wrapper .item-content .title-wrapper {
  height: 100%;
}
.cid-u7aTf5kEci .item .item-wrapper .item-content .title-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-u7aTf5kEci .item .item-wrapper .item-content .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7aTf5kEci .mbr-card-title {
  color: #1d1d1d;
}
.cid-u7aTf5kEci .mbr-card-title,
.cid-u7aTf5kEci .item-img {
  text-align: center;
  color: #000000;
}
.cid-u7aTf5kEci .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-u7aSiDpjnK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1ffe3;
}
.cid-u7aSiDpjnK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aSiDpjnK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aSiDpjnK .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u7aSiDpjnK .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7aSiDpjnK .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u7aSiDpjnK .container {
    padding: 0 20px;
  }
}
.cid-u7aSiDpjnK .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u7aSiDpjnK .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u7aSiDpjnK .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7aSiDpjnK .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u7aSiDpjnK .mbr-section-title,
.cid-u7aSiDpjnK .mbr-section-btn {
  text-align: center;
  color: #ff0000;
}
.cid-u7tec1ry7a {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u7tec1ry7a .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tec1ry7a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7tec1ry7a .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u7tec1ry7a .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7tec1ry7a .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7tec1ry7a .container {
    padding: 0 20px;
  }
}
.cid-u7tec1ry7a .row {
  justify-content: center;
}
.cid-u7tec1ry7a .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7tec1ry7a .item {
    margin-bottom: 50px;
  }
}
.cid-u7tec1ry7a .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u7tec1ry7a .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #018508;
}
.cid-u7tec1ry7a .item .item-wrapper .item-img img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  object-fit: cover;
  display: inline-flex;
  border: 2px solid #018508;
}
.cid-u7tec1ry7a .item .item-wrapper .item-content .title-wrapper {
  height: 100%;
}
.cid-u7tec1ry7a .item .item-wrapper .item-content .title-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-u7tec1ry7a .item .item-wrapper .item-content .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7tec1ry7a .mbr-card-title {
  color: #1d1d1d;
}
.cid-u7tec1ry7a .mbr-card-title,
.cid-u7tec1ry7a .item-img {
  text-align: center;
  color: #000000;
}
.cid-u7tec1ry7a .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-u7aQ6IoydF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u7aQ6IoydF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aQ6IoydF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aQ6IoydF .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u7aQ6IoydF .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7aQ6IoydF .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u7aQ6IoydF .container {
    padding: 0 20px;
  }
}
.cid-u7aQ6IoydF .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u7aQ6IoydF .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u7aQ6IoydF .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7aQ6IoydF .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u7aQ6IoydF .mbr-section-title,
.cid-u7aQ6IoydF .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u7aRwbrusR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u7aRwbrusR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aRwbrusR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aRwbrusR .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u7aRwbrusR .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7aRwbrusR .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7aRwbrusR .container {
    padding: 0 20px;
  }
}
.cid-u7aRwbrusR .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7aRwbrusR .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u7aRwbrusR .map-wrapper iframe {
  min-height: 640px;
  filter: grayscale(100%);
}
@media (max-width: 992px) {
  .cid-u7aRwbrusR .map-wrapper iframe {
    min-height: 350px;
  }
}
.cid-u7aRwbrusR .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-u7aRwbrusR .desc-wrapper {
    margin-top: 50px;
  }
}
.cid-u7aRwbrusR .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-u7aRwbrusR .mbr-section-title {
  color: #018508;
  text-align: center;
}
.cid-u7aRwbrusR .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-u7aQ6JT1kl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fcfbf5;
}
.cid-u7aQ6JT1kl .mbr-section-title {
  text-align: left;
}
.cid-u7aQ6JT1kl .mbr-text,
.cid-u7aQ6JT1kl .mbr-section-btn {
  text-align: center;
}
.cid-u7aQ6JT1kl .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7aQ6KmSGd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u7aQ6KmSGd .mbr-section-title {
  text-align: left;
}
.cid-u7aQ6KmSGd .mbr-text,
.cid-u7aQ6KmSGd .mbr-section-btn {
  text-align: center;
}
.cid-u7aQ6KmSGd .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7aQ6KP4sp {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u7aQ6KP4sp .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u7aQ6KP4sp .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u7aQ6KP4sp .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u7aQ6KP4sp .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u7aQ6KP4sp .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u7aQ6KP4sp .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u7aQ6KP4sp .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u7aQ6KP4sp .input-group-btn {
  padding-left: 0;
}
.cid-u7aQ6KP4sp .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u7aQ6KP4sp .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u7aQ6KP4sp .mbr-text {
  color: #444;
}
.cid-u7aQ6KP4sp h5 {
  margin-bottom: 0;
}
.cid-u7aQ6KP4sp .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u7aQ6KP4sp .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u7aQ6KP4sp .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u7aQ6KP4sp .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u7aQ6KP4sp .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7aQ6KP4sp .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u7aQ6KP4sp .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u7aQ6KP4sp .social-list a:hover {
  opacity: 0.4;
}
.cid-u7aQ6KP4sp .media-container-row > div {
  padding: 0px;
}
.cid-u7aQ6KP4sp .text2 {
  color: #000000;
  text-align: left;
}
.cid-u7aQ6KP4sp .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u7aQ6KP4sp .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7aQ6KP4sp .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u7aQ6KP4sp .social-list,
  .cid-u7aQ6KP4sp .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u7aQ6KP4sp h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u7aQ6KP4sp .form-group {
    max-width: 180px;
  }
}
.cid-u7aQ6KP4sp .links span {
  color: #9e9e9e;
}
.cid-u7aQ6KP4sp .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u7aQ6KP4sp .logo-title {
  text-align: center;
}
.cid-u7aQ6KP4sp .logo-title,
.cid-u7aQ6KP4sp .logo {
  color: #000000;
}
.cid-u7aQ6KP4sp .group-title DIV {
  text-align: center;
}
.cid-u7aQ6LSclt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u7aQ6LSclt .mbr-section-title {
  text-align: left;
}
.cid-u7aQ6LSclt .mbr-text,
.cid-u7aQ6LSclt .mbr-section-btn {
  text-align: center;
}
.cid-u7aQ6LSclt .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7aQ6MuDax .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u7aQ6MuDax .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u7aQ6MuDax .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u7aQ6MuDax .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7aQ6MuDax .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u7aQ6MuDax .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7aQ6MuDax .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7aQ6MuDax .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u7aQ6MuDax .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u7aQ6MuDax .navbar.collapsed.opened .navbar-collapse.show,
.cid-u7aQ6MuDax .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u7aQ6MuDax .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u7aQ6MuDax .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u7aQ6MuDax .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u7aQ6MuDax .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7aQ6MuDax .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7aQ6MuDax .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u7aQ6MuDax .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7aQ6MuDax .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7aQ6MuDax .navbar {
    flex-wrap: nowrap;
  }
  .cid-u7aQ6MuDax .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u7aQ6MuDax .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7aQ6MuDax .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u7aQ6MuDax .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u7aQ6MuDax .navbar.opened .navbar-collapse.show,
  .cid-u7aQ6MuDax .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u7aQ6MuDax .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u7aQ6MuDax .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u7aQ6MuDax .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7aQ6MuDax .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7aQ6MuDax .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u7aQ6MuDax .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u7aQ6MuDax .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7aQ6MuDax .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u7aQ6MuDax .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u7aQ6MuDax .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u7aQ6MuDax .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u7aQ6MuDax .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u7aQ6MuDax .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7aQ6MuDax .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7aQ6MuDax .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7aQ6MuDax .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u7aQ6MuDax .dropdown-item.active,
.cid-u7aQ6MuDax .dropdown-item:active {
  background-color: transparent;
}
.cid-u7aQ6MuDax .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7aQ6MuDax .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7aQ6MuDax .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7aQ6MuDax .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u7aQ6MuDax .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7aQ6MuDax .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7aQ6MuDax ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u7aQ6MuDax .navbar-buttons {
  text-align: center;
}
.cid-u7aQ6MuDax button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u7aQ6MuDax button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u7aQ6MuDax button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7aQ6MuDax button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7aQ6MuDax button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7aQ6MuDax button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7aQ6MuDax nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7aQ6MuDax nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7aQ6MuDax nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7aQ6MuDax nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7aQ6MuDax .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u7aQ6MuDax a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u7aQ6MuDax a.nav-link:focus {
  outline: none;
}
.cid-u7aQ6MuDax .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7aQ6MuDax .nav-link:hover,
.cid-u7aQ6MuDax .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7aQ6MuDax .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u7aQ6MuDax .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u7zs3rJROv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aedes-albopictus-adulto-800x530.webp");
}
.cid-u7zs3rJROv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zs3rJROv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zs3rJROv img {
  border-radius: 3rem;
}
.cid-u7zs3rJROv .row {
  align-items: center;
}
.cid-u7zs3rJROv .mbr-section-title {
  color: #ffffff;
}
.cid-u7zs3rJROv .mbr-text,
.cid-u7zs3rJROv .mbr-section-btn {
  color: #ffffff;
}
.cid-u7zs3sqlzF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7zs3sqlzF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zs3sqlzF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zs3sqlzF .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7zs3sqlzF .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7zs3sqlzF .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7zs3sqlzF .container {
    padding: 0 20px;
  }
}
.cid-u7zs3sqlzF .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7zs3sqlzF .card {
  padding: 0;
}
.cid-u7zs3sqlzF .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7zs3sqlzF .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u7zs3sqlzF .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u7zs3sqlzF .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7zs3sqlzF .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7zs3sqlzF .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7zs3sqlzF .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7zs3sqlzF .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7zs3sqlzF .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7zs3sqlzF .mbr-text {
  color: #000000;
}
.cid-u7zs3sqlzF .mbr-section-title,
.cid-u7zs3sqlzF .mbr-section-btn {
  color: #018508;
}
.cid-u7zs3sR5zo {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7zs3sR5zo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zs3sR5zo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zs3sR5zo .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7zs3sR5zo .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7zs3sR5zo .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7zs3sR5zo .container {
    padding: 0 20px;
  }
}
.cid-u7zs3sR5zo .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7zs3sR5zo .card {
  padding: 0;
}
.cid-u7zs3sR5zo .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7zs3sR5zo .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u7zs3sR5zo .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7zs3sR5zo .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7zs3sR5zo .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u7zs3sR5zo .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7zs3sR5zo .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7zs3sR5zo .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7zs3sR5zo .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7zs3sR5zo .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7zs3sR5zo .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7zs3sR5zo .mbr-text {
  color: #000000;
}
.cid-u7zs3sR5zo .mbr-section-title,
.cid-u7zs3sR5zo .mbr-section-btn {
  color: #018508;
}
.cid-u7zs3thqHk {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7zs3thqHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zs3thqHk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zs3thqHk .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7zs3thqHk .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7zs3thqHk .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7zs3thqHk .container {
    padding: 0 20px;
  }
}
.cid-u7zs3thqHk .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7zs3thqHk .card {
  padding: 0;
  border-radius: 0;
}
.cid-u7zs3thqHk .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u7zs3thqHk .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7zs3thqHk .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u7zs3thqHk .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7zs3thqHk .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u7zs3thqHk .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u7zs3thqHk .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u7zs3thqHk .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7zs3thqHk .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7zs3thqHk .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u7zs3thqHk .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u7zs3thqHk .mbr-text {
  color: #000000;
}
.cid-u7zs3thqHk .mbr-section-title,
.cid-u7zs3thqHk .mbr-section-btn {
  color: #018508;
}
.cid-u7zs3udjnC {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7zs3udjnC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zs3udjnC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zs3udjnC .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7zs3udjnC .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7zs3udjnC .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7zs3udjnC .container {
    padding: 0 20px;
  }
}
.cid-u7zs3udjnC .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7zs3udjnC .card {
  padding: 0;
}
.cid-u7zs3udjnC .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7zs3udjnC .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u7zs3udjnC .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7zs3udjnC .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7zs3udjnC .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u7zs3udjnC .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7zs3udjnC .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7zs3udjnC .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7zs3udjnC .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7zs3udjnC .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7zs3udjnC .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7zs3udjnC .mbr-text {
  color: #000000;
}
.cid-u7zs3udjnC .mbr-section-title,
.cid-u7zs3udjnC .mbr-section-btn {
  color: #018508;
}
.cid-u7zs3tM4hQ {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7zs3tM4hQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zs3tM4hQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zs3tM4hQ .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7zs3tM4hQ .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7zs3tM4hQ .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7zs3tM4hQ .container {
    padding: 0 20px;
  }
}
.cid-u7zs3tM4hQ .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7zs3tM4hQ .card {
  padding: 0;
}
.cid-u7zs3tM4hQ .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7zs3tM4hQ .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u7zs3tM4hQ .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u7zs3tM4hQ .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7zs3tM4hQ .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7zs3tM4hQ .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7zs3tM4hQ .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7zs3tM4hQ .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7zs3tM4hQ .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7zs3tM4hQ .mbr-text {
  color: #000000;
}
.cid-u7zs3tM4hQ .mbr-section-title,
.cid-u7zs3tM4hQ .mbr-section-btn {
  color: #018508;
}
.cid-u7zs3uKNm5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u7zs3uKNm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zs3uKNm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zs3uKNm5 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u7zs3uKNm5 .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7zs3uKNm5 .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u7zs3uKNm5 .container {
    padding: 0 20px;
  }
}
.cid-u7zs3uKNm5 .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u7zs3uKNm5 .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u7zs3uKNm5 .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7zs3uKNm5 .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u7zs3uKNm5 .mbr-section-title,
.cid-u7zs3uKNm5 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u7zs3vcs5v {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u7zs3vcs5v .mbr-section-title {
  text-align: left;
}
.cid-u7zs3vcs5v .mbr-text,
.cid-u7zs3vcs5v .mbr-section-btn {
  text-align: center;
}
.cid-u7zs3vcs5v .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7zs3vEUtI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u7zs3vEUtI .mbr-section-title {
  text-align: left;
}
.cid-u7zs3vEUtI .mbr-text,
.cid-u7zs3vEUtI .mbr-section-btn {
  text-align: center;
}
.cid-u7zs3vEUtI .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7zs3w6NkK {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u7zs3w6NkK .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u7zs3w6NkK .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u7zs3w6NkK .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u7zs3w6NkK .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u7zs3w6NkK .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u7zs3w6NkK .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u7zs3w6NkK .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u7zs3w6NkK .input-group-btn {
  padding-left: 0;
}
.cid-u7zs3w6NkK .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u7zs3w6NkK .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u7zs3w6NkK .mbr-text {
  color: #444;
}
.cid-u7zs3w6NkK h5 {
  margin-bottom: 0;
}
.cid-u7zs3w6NkK .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u7zs3w6NkK .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u7zs3w6NkK .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u7zs3w6NkK .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u7zs3w6NkK .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7zs3w6NkK .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u7zs3w6NkK .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u7zs3w6NkK .social-list a:hover {
  opacity: 0.4;
}
.cid-u7zs3w6NkK .media-container-row > div {
  padding: 0px;
}
.cid-u7zs3w6NkK .text2 {
  color: #000000;
  text-align: left;
}
.cid-u7zs3w6NkK .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u7zs3w6NkK .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7zs3w6NkK .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u7zs3w6NkK .social-list,
  .cid-u7zs3w6NkK .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u7zs3w6NkK h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u7zs3w6NkK .form-group {
    max-width: 180px;
  }
}
.cid-u7zs3w6NkK .links span {
  color: #9e9e9e;
}
.cid-u7zs3w6NkK .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u7zs3w6NkK .logo-title {
  text-align: center;
}
.cid-u7zs3w6NkK .logo-title,
.cid-u7zs3w6NkK .logo {
  color: #000000;
}
.cid-u7zs3w6NkK .group-title DIV {
  text-align: center;
}
.cid-u7zs3wWsBP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u7zs3wWsBP .mbr-section-title {
  text-align: left;
}
.cid-u7zs3wWsBP .mbr-text,
.cid-u7zs3wWsBP .mbr-section-btn {
  text-align: center;
}
.cid-u7zs3wWsBP .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7zs3xnjqI .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u7zs3xnjqI .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u7zs3xnjqI .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u7zs3xnjqI .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7zs3xnjqI .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u7zs3xnjqI .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7zs3xnjqI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7zs3xnjqI .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u7zs3xnjqI .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u7zs3xnjqI .navbar.collapsed.opened .navbar-collapse.show,
.cid-u7zs3xnjqI .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u7zs3xnjqI .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u7zs3xnjqI .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u7zs3xnjqI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u7zs3xnjqI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7zs3xnjqI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7zs3xnjqI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u7zs3xnjqI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7zs3xnjqI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7zs3xnjqI .navbar {
    flex-wrap: nowrap;
  }
  .cid-u7zs3xnjqI .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u7zs3xnjqI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7zs3xnjqI .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u7zs3xnjqI .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u7zs3xnjqI .navbar.opened .navbar-collapse.show,
  .cid-u7zs3xnjqI .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u7zs3xnjqI .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u7zs3xnjqI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u7zs3xnjqI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7zs3xnjqI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7zs3xnjqI .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u7zs3xnjqI .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u7zs3xnjqI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7zs3xnjqI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u7zs3xnjqI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u7zs3xnjqI .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u7zs3xnjqI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u7zs3xnjqI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u7zs3xnjqI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7zs3xnjqI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7zs3xnjqI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7zs3xnjqI .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u7zs3xnjqI .dropdown-item.active,
.cid-u7zs3xnjqI .dropdown-item:active {
  background-color: transparent;
}
.cid-u7zs3xnjqI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7zs3xnjqI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7zs3xnjqI .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7zs3xnjqI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u7zs3xnjqI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7zs3xnjqI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7zs3xnjqI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u7zs3xnjqI .navbar-buttons {
  text-align: center;
}
.cid-u7zs3xnjqI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u7zs3xnjqI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u7zs3xnjqI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7zs3xnjqI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7zs3xnjqI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7zs3xnjqI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7zs3xnjqI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7zs3xnjqI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7zs3xnjqI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7zs3xnjqI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7zs3xnjqI .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u7zs3xnjqI a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u7zs3xnjqI a.nav-link:focus {
  outline: none;
}
.cid-u7zs3xnjqI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7zs3xnjqI .nav-link:hover,
.cid-u7zs3xnjqI .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7zs3xnjqI .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u7zs3xnjqI .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u7JO0BU2Hm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d7d7d7;
}
.cid-u7JO0BU2Hm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7JO0BU2Hm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7JO0BU2Hm .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u7JO0BU2Hm .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7JO0BU2Hm .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u7JO0BU2Hm .container {
    padding: 0 20px;
  }
}
.cid-u7JO0BU2Hm .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u7JO0BU2Hm .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u7JO0BU2Hm .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7JO0BU2Hm .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u7JO0BU2Hm .mbr-section-title,
.cid-u7JO0BU2Hm .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u7JO0CYMOM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fcfbf5;
}
.cid-u7JO0CYMOM .mbr-section-title {
  text-align: left;
}
.cid-u7JO0CYMOM .mbr-text,
.cid-u7JO0CYMOM .mbr-section-btn {
  text-align: center;
}
.cid-u7JO0CYMOM .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7JO0DpX69 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u7JO0DpX69 .mbr-section-title {
  text-align: left;
}
.cid-u7JO0DpX69 .mbr-text,
.cid-u7JO0DpX69 .mbr-section-btn {
  text-align: center;
}
.cid-u7JO0DpX69 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7JO0DTzMO {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u7JO0DTzMO .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u7JO0DTzMO .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u7JO0DTzMO .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u7JO0DTzMO .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u7JO0DTzMO .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u7JO0DTzMO .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u7JO0DTzMO .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u7JO0DTzMO .input-group-btn {
  padding-left: 0;
}
.cid-u7JO0DTzMO .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u7JO0DTzMO .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u7JO0DTzMO .mbr-text {
  color: #444;
}
.cid-u7JO0DTzMO h5 {
  margin-bottom: 0;
}
.cid-u7JO0DTzMO .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u7JO0DTzMO .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u7JO0DTzMO .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u7JO0DTzMO .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u7JO0DTzMO .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7JO0DTzMO .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u7JO0DTzMO .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u7JO0DTzMO .social-list a:hover {
  opacity: 0.4;
}
.cid-u7JO0DTzMO .media-container-row > div {
  padding: 0px;
}
.cid-u7JO0DTzMO .text2 {
  color: #000000;
  text-align: left;
}
.cid-u7JO0DTzMO .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u7JO0DTzMO .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7JO0DTzMO .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u7JO0DTzMO .social-list,
  .cid-u7JO0DTzMO .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u7JO0DTzMO h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u7JO0DTzMO .form-group {
    max-width: 180px;
  }
}
.cid-u7JO0DTzMO .links span {
  color: #9e9e9e;
}
.cid-u7JO0DTzMO .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u7JO0DTzMO .logo-title {
  text-align: center;
}
.cid-u7JO0DTzMO .logo-title,
.cid-u7JO0DTzMO .logo {
  color: #000000;
}
.cid-u7JO0DTzMO .group-title DIV {
  text-align: center;
}
.cid-u7JO0EOGsE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u7JO0EOGsE .mbr-section-title {
  text-align: left;
}
.cid-u7JO0EOGsE .mbr-text,
.cid-u7JO0EOGsE .mbr-section-btn {
  text-align: center;
}
.cid-u7JO0EOGsE .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7JO0Fg5nl .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u7JO0Fg5nl .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u7JO0Fg5nl .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u7JO0Fg5nl .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7JO0Fg5nl .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u7JO0Fg5nl .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7JO0Fg5nl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7JO0Fg5nl .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u7JO0Fg5nl .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u7JO0Fg5nl .navbar.collapsed.opened .navbar-collapse.show,
.cid-u7JO0Fg5nl .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u7JO0Fg5nl .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u7JO0Fg5nl .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u7JO0Fg5nl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u7JO0Fg5nl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7JO0Fg5nl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7JO0Fg5nl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u7JO0Fg5nl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7JO0Fg5nl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7JO0Fg5nl .navbar {
    flex-wrap: nowrap;
  }
  .cid-u7JO0Fg5nl .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u7JO0Fg5nl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7JO0Fg5nl .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u7JO0Fg5nl .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u7JO0Fg5nl .navbar.opened .navbar-collapse.show,
  .cid-u7JO0Fg5nl .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u7JO0Fg5nl .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u7JO0Fg5nl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u7JO0Fg5nl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7JO0Fg5nl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7JO0Fg5nl .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u7JO0Fg5nl .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u7JO0Fg5nl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7JO0Fg5nl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u7JO0Fg5nl .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u7JO0Fg5nl .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u7JO0Fg5nl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u7JO0Fg5nl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u7JO0Fg5nl .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7JO0Fg5nl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7JO0Fg5nl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7JO0Fg5nl .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u7JO0Fg5nl .dropdown-item.active,
.cid-u7JO0Fg5nl .dropdown-item:active {
  background-color: transparent;
}
.cid-u7JO0Fg5nl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7JO0Fg5nl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7JO0Fg5nl .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7JO0Fg5nl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u7JO0Fg5nl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7JO0Fg5nl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7JO0Fg5nl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u7JO0Fg5nl .navbar-buttons {
  text-align: center;
}
.cid-u7JO0Fg5nl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u7JO0Fg5nl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u7JO0Fg5nl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7JO0Fg5nl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7JO0Fg5nl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7JO0Fg5nl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7JO0Fg5nl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7JO0Fg5nl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7JO0Fg5nl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7JO0Fg5nl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7JO0Fg5nl .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u7JO0Fg5nl a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u7JO0Fg5nl a.nav-link:focus {
  outline: none;
}
.cid-u7JO0Fg5nl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7JO0Fg5nl .nav-link:hover,
.cid-u7JO0Fg5nl .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7JO0Fg5nl .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u7JO0Fg5nl .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u7mAyu9Ag9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aedes-albopictus-adulto-800x530.webp");
}
.cid-u7mAyu9Ag9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7mAyu9Ag9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7mAyu9Ag9 img {
  border-radius: 3rem;
}
.cid-u7mAyu9Ag9 .row {
  align-items: center;
}
.cid-u7mAyu9Ag9 .mbr-section-title {
  color: #ffffff;
}
.cid-u7mAyu9Ag9 .mbr-text,
.cid-u7mAyu9Ag9 .mbr-section-btn {
  color: #ffffff;
}
.cid-u7mAyvNtVi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7mAyvNtVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7mAyvNtVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7mAyvNtVi .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7mAyvNtVi .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7mAyvNtVi .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7mAyvNtVi .container {
    padding: 0 20px;
  }
}
.cid-u7mAyvNtVi .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7mAyvNtVi .card {
  padding: 0;
}
.cid-u7mAyvNtVi .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7mAyvNtVi .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u7mAyvNtVi .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u7mAyvNtVi .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7mAyvNtVi .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7mAyvNtVi .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7mAyvNtVi .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7mAyvNtVi .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7mAyvNtVi .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7mAyvNtVi .mbr-text {
  color: #000000;
}
.cid-u7mAyvNtVi .mbr-section-title,
.cid-u7mAyvNtVi .mbr-section-btn {
  color: #018508;
}
.cid-u7mAyx4c7p {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7mAyx4c7p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7mAyx4c7p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7mAyx4c7p .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7mAyx4c7p .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7mAyx4c7p .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7mAyx4c7p .container {
    padding: 0 20px;
  }
}
.cid-u7mAyx4c7p .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7mAyx4c7p .card {
  padding: 0;
}
.cid-u7mAyx4c7p .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7mAyx4c7p .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u7mAyx4c7p .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7mAyx4c7p .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7mAyx4c7p .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u7mAyx4c7p .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7mAyx4c7p .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7mAyx4c7p .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7mAyx4c7p .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7mAyx4c7p .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7mAyx4c7p .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7mAyx4c7p .mbr-text {
  color: #000000;
}
.cid-u7mAyx4c7p .mbr-section-title,
.cid-u7mAyx4c7p .mbr-section-btn {
  color: #018508;
}
.cid-u7mAywdxYT {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7mAywdxYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7mAywdxYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7mAywdxYT .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7mAywdxYT .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7mAywdxYT .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7mAywdxYT .container {
    padding: 0 20px;
  }
}
.cid-u7mAywdxYT .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7mAywdxYT .card {
  padding: 0;
  border-radius: 0;
}
.cid-u7mAywdxYT .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u7mAywdxYT .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7mAywdxYT .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u7mAywdxYT .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7mAywdxYT .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u7mAywdxYT .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u7mAywdxYT .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u7mAywdxYT .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7mAywdxYT .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7mAywdxYT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u7mAywdxYT .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u7mAywdxYT .mbr-text {
  color: #000000;
}
.cid-u7mAywdxYT .mbr-section-title,
.cid-u7mAywdxYT .mbr-section-btn {
  color: #018508;
}
.cid-u7mGfNBbuO {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7mGfNBbuO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7mGfNBbuO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7mGfNBbuO .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7mGfNBbuO .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7mGfNBbuO .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7mGfNBbuO .container {
    padding: 0 20px;
  }
}
.cid-u7mGfNBbuO .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7mGfNBbuO .card {
  padding: 0;
}
.cid-u7mGfNBbuO .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7mGfNBbuO .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u7mGfNBbuO .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7mGfNBbuO .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u7mGfNBbuO .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u7mGfNBbuO .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7mGfNBbuO .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7mGfNBbuO .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7mGfNBbuO .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7mGfNBbuO .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7mGfNBbuO .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7mGfNBbuO .mbr-text {
  color: #000000;
}
.cid-u7mGfNBbuO .mbr-section-title,
.cid-u7mGfNBbuO .mbr-section-btn {
  color: #018508;
}
.cid-u7mAywDORB {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u7mAywDORB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7mAywDORB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7mAywDORB .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u7mAywDORB .container-fluid {
    padding: 0 12px;
  }
}
.cid-u7mAywDORB .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u7mAywDORB .container {
    padding: 0 20px;
  }
}
.cid-u7mAywDORB .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u7mAywDORB .card {
  padding: 0;
}
.cid-u7mAywDORB .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u7mAywDORB .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u7mAywDORB .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u7mAywDORB .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7mAywDORB .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u7mAywDORB .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7mAywDORB .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u7mAywDORB .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u7mAywDORB .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7mAywDORB .mbr-text {
  color: #000000;
}
.cid-u7mAywDORB .mbr-section-title,
.cid-u7mAywDORB .mbr-section-btn {
  color: #018508;
}
.cid-u7mAyxxCeN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u7mAyxxCeN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7mAyxxCeN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7mAyxxCeN .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u7mAyxxCeN .container-fluid {
    padding: 0 20px;
  }
}
.cid-u7mAyxxCeN .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u7mAyxxCeN .container {
    padding: 0 20px;
  }
}
.cid-u7mAyxxCeN .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u7mAyxxCeN .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u7mAyxxCeN .mbr-section-title {
  color: #1d1d1d;
}
.cid-u7mAyxxCeN .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u7mAyxxCeN .mbr-section-title,
.cid-u7mAyxxCeN .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u7mAyxXgt6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u7mAyxXgt6 .mbr-section-title {
  text-align: left;
}
.cid-u7mAyxXgt6 .mbr-text,
.cid-u7mAyxXgt6 .mbr-section-btn {
  text-align: center;
}
.cid-u7mAyxXgt6 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7mAyyoPyp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u7mAyyoPyp .mbr-section-title {
  text-align: left;
}
.cid-u7mAyyoPyp .mbr-text,
.cid-u7mAyyoPyp .mbr-section-btn {
  text-align: center;
}
.cid-u7mAyyoPyp .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7mAyyRHD4 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u7mAyyRHD4 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u7mAyyRHD4 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u7mAyyRHD4 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u7mAyyRHD4 .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u7mAyyRHD4 .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u7mAyyRHD4 .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u7mAyyRHD4 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u7mAyyRHD4 .input-group-btn {
  padding-left: 0;
}
.cid-u7mAyyRHD4 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u7mAyyRHD4 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u7mAyyRHD4 .mbr-text {
  color: #444;
}
.cid-u7mAyyRHD4 h5 {
  margin-bottom: 0;
}
.cid-u7mAyyRHD4 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u7mAyyRHD4 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u7mAyyRHD4 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u7mAyyRHD4 .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u7mAyyRHD4 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7mAyyRHD4 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u7mAyyRHD4 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u7mAyyRHD4 .social-list a:hover {
  opacity: 0.4;
}
.cid-u7mAyyRHD4 .media-container-row > div {
  padding: 0px;
}
.cid-u7mAyyRHD4 .text2 {
  color: #000000;
  text-align: left;
}
.cid-u7mAyyRHD4 .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u7mAyyRHD4 .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7mAyyRHD4 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u7mAyyRHD4 .social-list,
  .cid-u7mAyyRHD4 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u7mAyyRHD4 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u7mAyyRHD4 .form-group {
    max-width: 180px;
  }
}
.cid-u7mAyyRHD4 .links span {
  color: #9e9e9e;
}
.cid-u7mAyyRHD4 .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u7mAyyRHD4 .logo-title {
  text-align: center;
}
.cid-u7mAyyRHD4 .logo-title,
.cid-u7mAyyRHD4 .logo {
  color: #000000;
}
.cid-u7mAyyRHD4 .group-title DIV {
  text-align: center;
}
.cid-u7mAyzCk86 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u7mAyzCk86 .mbr-section-title {
  text-align: left;
}
.cid-u7mAyzCk86 .mbr-text,
.cid-u7mAyzCk86 .mbr-section-btn {
  text-align: center;
}
.cid-u7mAyzCk86 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u7mAyAdBFa .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u7mAyAdBFa .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u7mAyAdBFa .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u7mAyAdBFa .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7mAyAdBFa .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u7mAyAdBFa .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u7mAyAdBFa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7mAyAdBFa .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u7mAyAdBFa .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u7mAyAdBFa .navbar.collapsed.opened .navbar-collapse.show,
.cid-u7mAyAdBFa .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u7mAyAdBFa .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u7mAyAdBFa .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u7mAyAdBFa .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u7mAyAdBFa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7mAyAdBFa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7mAyAdBFa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u7mAyAdBFa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7mAyAdBFa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u7mAyAdBFa .navbar {
    flex-wrap: nowrap;
  }
  .cid-u7mAyAdBFa .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u7mAyAdBFa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7mAyAdBFa .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u7mAyAdBFa .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u7mAyAdBFa .navbar.opened .navbar-collapse.show,
  .cid-u7mAyAdBFa .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u7mAyAdBFa .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u7mAyAdBFa .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u7mAyAdBFa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7mAyAdBFa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7mAyAdBFa .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u7mAyAdBFa .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u7mAyAdBFa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7mAyAdBFa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u7mAyAdBFa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u7mAyAdBFa .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u7mAyAdBFa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u7mAyAdBFa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u7mAyAdBFa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7mAyAdBFa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7mAyAdBFa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7mAyAdBFa .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u7mAyAdBFa .dropdown-item.active,
.cid-u7mAyAdBFa .dropdown-item:active {
  background-color: transparent;
}
.cid-u7mAyAdBFa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7mAyAdBFa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7mAyAdBFa .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7mAyAdBFa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u7mAyAdBFa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7mAyAdBFa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7mAyAdBFa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u7mAyAdBFa .navbar-buttons {
  text-align: center;
}
.cid-u7mAyAdBFa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u7mAyAdBFa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u7mAyAdBFa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7mAyAdBFa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7mAyAdBFa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7mAyAdBFa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7mAyAdBFa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7mAyAdBFa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7mAyAdBFa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7mAyAdBFa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7mAyAdBFa .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u7mAyAdBFa a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u7mAyAdBFa a.nav-link:focus {
  outline: none;
}
.cid-u7mAyAdBFa .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7mAyAdBFa .nav-link:hover,
.cid-u7mAyAdBFa .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7mAyAdBFa .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u7mAyAdBFa .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u81ckq70Md {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/immagine-1-1280x853.webp");
}
.cid-u81ckq70Md .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81ckq70Md .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81ckq70Md img {
  border-radius: 3rem;
}
.cid-u81ckq70Md .row {
  align-items: center;
}
.cid-u81ckq70Md .mbr-section-title {
  color: #ffffff;
}
.cid-u81ckq70Md .mbr-text,
.cid-u81ckq70Md .mbr-section-btn {
  color: #ffffff;
}
.cid-u81ckqPo1U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u81ckqPo1U .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81ckqPo1U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81ckqPo1U .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u81ckqPo1U .container-fluid {
    padding: 0 12px;
  }
}
.cid-u81ckqPo1U .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u81ckqPo1U .container {
    padding: 0 20px;
  }
}
.cid-u81ckqPo1U .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u81ckqPo1U .card {
  padding: 0;
  border-radius: 0;
}
.cid-u81ckqPo1U .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u81ckqPo1U .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u81ckqPo1U .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u81ckqPo1U .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u81ckqPo1U .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u81ckqPo1U .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u81ckqPo1U .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u81ckqPo1U .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u81ckqPo1U .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u81ckqPo1U .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u81ckqPo1U .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u81ckqPo1U .mbr-text {
  color: #000000;
}
.cid-u81ckqPo1U .mbr-section-title,
.cid-u81ckqPo1U .mbr-section-btn {
  color: #018508;
}
.cid-u81ckrdajz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u81ckrdajz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81ckrdajz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81ckrdajz .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u81ckrdajz .container-fluid {
    padding: 0 20px;
  }
}
.cid-u81ckrdajz .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u81ckrdajz .container {
    padding: 0 20px;
  }
}
.cid-u81ckrdajz .row {
  justify-content: center;
}
.cid-u81ckrdajz .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u81ckrdajz .item {
    margin-bottom: 50px;
  }
}
.cid-u81ckrdajz .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u81ckrdajz .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #018508;
}
.cid-u81ckrdajz .item .item-wrapper .item-img img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  object-fit: cover;
  display: inline-flex;
  border: 2px solid #018508;
}
.cid-u81ckrdajz .item .item-wrapper .item-content .title-wrapper {
  height: 100%;
}
.cid-u81ckrdajz .item .item-wrapper .item-content .title-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-u81ckrdajz .item .item-wrapper .item-content .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u81ckrdajz .mbr-card-title {
  color: #1d1d1d;
}
.cid-u81ckrdajz .mbr-card-title,
.cid-u81ckrdajz .item-img {
  text-align: center;
  color: #000000;
}
.cid-u81ckrdajz .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-u81ckrEC7M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1ffe3;
}
.cid-u81ckrEC7M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81ckrEC7M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81ckrEC7M .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u81ckrEC7M .container-fluid {
    padding: 0 20px;
  }
}
.cid-u81ckrEC7M .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u81ckrEC7M .container {
    padding: 0 20px;
  }
}
.cid-u81ckrEC7M .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u81ckrEC7M .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u81ckrEC7M .mbr-section-title {
  color: #1d1d1d;
}
.cid-u81ckrEC7M .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u81ckrEC7M .mbr-section-title,
.cid-u81ckrEC7M .mbr-section-btn {
  text-align: center;
  color: #ff0000;
}
.cid-u81cks4nrM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u81cks4nrM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81cks4nrM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81cks4nrM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u81cks4nrM .container-fluid {
    padding: 0 20px;
  }
}
.cid-u81cks4nrM .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u81cks4nrM .container {
    padding: 0 20px;
  }
}
.cid-u81cks4nrM .row {
  justify-content: center;
}
.cid-u81cks4nrM .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u81cks4nrM .item {
    margin-bottom: 50px;
  }
}
.cid-u81cks4nrM .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-u81cks4nrM .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #018508;
}
.cid-u81cks4nrM .item .item-wrapper .item-img img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  object-fit: cover;
  display: inline-flex;
  border: 2px solid #018508;
}
.cid-u81cks4nrM .item .item-wrapper .item-content .title-wrapper {
  height: 100%;
}
.cid-u81cks4nrM .item .item-wrapper .item-content .title-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-u81cks4nrM .item .item-wrapper .item-content .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u81cks4nrM .mbr-card-title {
  color: #1d1d1d;
}
.cid-u81cks4nrM .mbr-card-title,
.cid-u81cks4nrM .item-img {
  text-align: center;
  color: #000000;
}
.cid-u81cks4nrM .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-u81ckswHQq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u81ckswHQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81ckswHQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81ckswHQq .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u81ckswHQq .container-fluid {
    padding: 0 20px;
  }
}
.cid-u81ckswHQq .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u81ckswHQq .container {
    padding: 0 20px;
  }
}
.cid-u81ckswHQq .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u81ckswHQq .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u81ckswHQq .mbr-section-title {
  color: #1d1d1d;
}
.cid-u81ckswHQq .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u81ckswHQq .mbr-section-title,
.cid-u81ckswHQq .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u81cksUt6y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u81cksUt6y .mbr-fallback-image.disabled {
  display: none;
}
.cid-u81cksUt6y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u81cksUt6y .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u81cksUt6y .container-fluid {
    padding: 0 20px;
  }
}
.cid-u81cksUt6y .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u81cksUt6y .container {
    padding: 0 20px;
  }
}
.cid-u81cksUt6y .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u81cksUt6y .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-u81cksUt6y .map-wrapper iframe {
  min-height: 640px;
  filter: grayscale(100%);
}
@media (max-width: 992px) {
  .cid-u81cksUt6y .map-wrapper iframe {
    min-height: 350px;
  }
}
.cid-u81cksUt6y .desc-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-u81cksUt6y .desc-wrapper {
    margin-top: 50px;
  }
}
.cid-u81cksUt6y .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-u81cksUt6y .mbr-section-title {
  color: #018508;
  text-align: center;
}
.cid-u81cksUt6y .mbr-section-subtitle {
  color: #1d1d1d;
}
.cid-u81ckto4S6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fcfbf5;
}
.cid-u81ckto4S6 .mbr-section-title {
  text-align: left;
}
.cid-u81ckto4S6 .mbr-text,
.cid-u81ckto4S6 .mbr-section-btn {
  text-align: center;
}
.cid-u81ckto4S6 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u81cktSrUU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u81cktSrUU .mbr-section-title {
  text-align: left;
}
.cid-u81cktSrUU .mbr-text,
.cid-u81cktSrUU .mbr-section-btn {
  text-align: center;
}
.cid-u81cktSrUU .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u81ckumsFK {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u81ckumsFK .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u81ckumsFK .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u81ckumsFK .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u81ckumsFK .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u81ckumsFK .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u81ckumsFK .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u81ckumsFK .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u81ckumsFK .input-group-btn {
  padding-left: 0;
}
.cid-u81ckumsFK .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u81ckumsFK .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u81ckumsFK .mbr-text {
  color: #444;
}
.cid-u81ckumsFK h5 {
  margin-bottom: 0;
}
.cid-u81ckumsFK .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u81ckumsFK .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u81ckumsFK .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u81ckumsFK .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u81ckumsFK .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u81ckumsFK .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u81ckumsFK .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u81ckumsFK .social-list a:hover {
  opacity: 0.4;
}
.cid-u81ckumsFK .media-container-row > div {
  padding: 0px;
}
.cid-u81ckumsFK .text2 {
  color: #000000;
  text-align: left;
}
.cid-u81ckumsFK .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u81ckumsFK .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u81ckumsFK .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u81ckumsFK .social-list,
  .cid-u81ckumsFK .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u81ckumsFK h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u81ckumsFK .form-group {
    max-width: 180px;
  }
}
.cid-u81ckumsFK .links span {
  color: #9e9e9e;
}
.cid-u81ckumsFK .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u81ckumsFK .logo-title {
  text-align: center;
}
.cid-u81ckumsFK .logo-title,
.cid-u81ckumsFK .logo {
  color: #000000;
}
.cid-u81ckumsFK .group-title DIV {
  text-align: center;
}
.cid-u81ckvaYYB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u81ckvaYYB .mbr-section-title {
  text-align: left;
}
.cid-u81ckvaYYB .mbr-text,
.cid-u81ckvaYYB .mbr-section-btn {
  text-align: center;
}
.cid-u81ckvaYYB .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u81ckvBIuS .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u81ckvBIuS .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u81ckvBIuS .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u81ckvBIuS .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u81ckvBIuS .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u81ckvBIuS .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u81ckvBIuS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u81ckvBIuS .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u81ckvBIuS .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u81ckvBIuS .navbar.collapsed.opened .navbar-collapse.show,
.cid-u81ckvBIuS .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u81ckvBIuS .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u81ckvBIuS .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u81ckvBIuS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u81ckvBIuS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u81ckvBIuS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u81ckvBIuS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u81ckvBIuS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u81ckvBIuS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u81ckvBIuS .navbar {
    flex-wrap: nowrap;
  }
  .cid-u81ckvBIuS .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u81ckvBIuS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u81ckvBIuS .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u81ckvBIuS .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u81ckvBIuS .navbar.opened .navbar-collapse.show,
  .cid-u81ckvBIuS .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u81ckvBIuS .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u81ckvBIuS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u81ckvBIuS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u81ckvBIuS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u81ckvBIuS .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u81ckvBIuS .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u81ckvBIuS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u81ckvBIuS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u81ckvBIuS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u81ckvBIuS .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u81ckvBIuS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u81ckvBIuS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u81ckvBIuS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u81ckvBIuS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u81ckvBIuS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u81ckvBIuS .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u81ckvBIuS .dropdown-item.active,
.cid-u81ckvBIuS .dropdown-item:active {
  background-color: transparent;
}
.cid-u81ckvBIuS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u81ckvBIuS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u81ckvBIuS .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u81ckvBIuS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u81ckvBIuS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u81ckvBIuS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u81ckvBIuS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u81ckvBIuS .navbar-buttons {
  text-align: center;
}
.cid-u81ckvBIuS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u81ckvBIuS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u81ckvBIuS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u81ckvBIuS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u81ckvBIuS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u81ckvBIuS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u81ckvBIuS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u81ckvBIuS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u81ckvBIuS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u81ckvBIuS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u81ckvBIuS .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u81ckvBIuS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u81ckvBIuS a.nav-link:focus {
  outline: none;
}
.cid-u81ckvBIuS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u81ckvBIuS .nav-link:hover,
.cid-u81ckvBIuS .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u81ckvBIuS .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u81ckvBIuS .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u82FyBBoQ8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aedes-albopictus-adulto-800x530.webp");
}
.cid-u82FyBBoQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82FyBBoQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82FyBBoQ8 img {
  border-radius: 3rem;
}
.cid-u82FyBBoQ8 .row {
  align-items: center;
}
.cid-u82FyBBoQ8 .mbr-section-title {
  color: #ffffff;
}
.cid-u82FyBBoQ8 .mbr-text,
.cid-u82FyBBoQ8 .mbr-section-btn {
  color: #ffffff;
}
.cid-u82FyC3Owa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u82FyC3Owa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82FyC3Owa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82FyC3Owa .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u82FyC3Owa .container-fluid {
    padding: 0 12px;
  }
}
.cid-u82FyC3Owa .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u82FyC3Owa .container {
    padding: 0 20px;
  }
}
.cid-u82FyC3Owa .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u82FyC3Owa .card {
  padding: 0;
}
.cid-u82FyC3Owa .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u82FyC3Owa .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u82FyC3Owa .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u82FyC3Owa .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u82FyC3Owa .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u82FyC3Owa .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u82FyC3Owa .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u82FyC3Owa .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u82FyC3Owa .mbr-section-title {
  color: #1d1d1d;
}
.cid-u82FyC3Owa .mbr-text {
  color: #000000;
}
.cid-u82FyC3Owa .mbr-section-title,
.cid-u82FyC3Owa .mbr-section-btn {
  color: #018508;
}
.cid-u82FyCnB4A {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u82FyCnB4A .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82FyCnB4A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82FyCnB4A .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u82FyCnB4A .container-fluid {
    padding: 0 12px;
  }
}
.cid-u82FyCnB4A .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u82FyCnB4A .container {
    padding: 0 20px;
  }
}
.cid-u82FyCnB4A .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u82FyCnB4A .card {
  padding: 0;
}
.cid-u82FyCnB4A .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u82FyCnB4A .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u82FyCnB4A .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u82FyCnB4A .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u82FyCnB4A .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u82FyCnB4A .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u82FyCnB4A .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u82FyCnB4A .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u82FyCnB4A .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u82FyCnB4A .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u82FyCnB4A .mbr-section-title {
  color: #1d1d1d;
}
.cid-u82FyCnB4A .mbr-text {
  color: #000000;
}
.cid-u82FyCnB4A .mbr-section-title,
.cid-u82FyCnB4A .mbr-section-btn {
  color: #018508;
}
.cid-u82FyCJAN0 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u82FyCJAN0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82FyCJAN0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82FyCJAN0 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u82FyCJAN0 .container-fluid {
    padding: 0 12px;
  }
}
.cid-u82FyCJAN0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u82FyCJAN0 .container {
    padding: 0 20px;
  }
}
.cid-u82FyCJAN0 .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u82FyCJAN0 .card {
  padding: 0;
  border-radius: 0;
}
.cid-u82FyCJAN0 .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u82FyCJAN0 .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u82FyCJAN0 .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u82FyCJAN0 .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u82FyCJAN0 .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u82FyCJAN0 .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u82FyCJAN0 .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u82FyCJAN0 .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u82FyCJAN0 .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u82FyCJAN0 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u82FyCJAN0 .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u82FyCJAN0 .mbr-text {
  color: #000000;
}
.cid-u82FyCJAN0 .mbr-section-title,
.cid-u82FyCJAN0 .mbr-section-btn {
  color: #018508;
}
.cid-u82FyD4Xa9 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u82FyD4Xa9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82FyD4Xa9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82FyD4Xa9 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u82FyD4Xa9 .container-fluid {
    padding: 0 12px;
  }
}
.cid-u82FyD4Xa9 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u82FyD4Xa9 .container {
    padding: 0 20px;
  }
}
.cid-u82FyD4Xa9 .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u82FyD4Xa9 .card {
  padding: 0;
}
.cid-u82FyD4Xa9 .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u82FyD4Xa9 .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u82FyD4Xa9 .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u82FyD4Xa9 .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u82FyD4Xa9 .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u82FyD4Xa9 .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u82FyD4Xa9 .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u82FyD4Xa9 .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u82FyD4Xa9 .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u82FyD4Xa9 .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u82FyD4Xa9 .mbr-section-title {
  color: #1d1d1d;
}
.cid-u82FyD4Xa9 .mbr-text {
  color: #000000;
}
.cid-u82FyD4Xa9 .mbr-section-title,
.cid-u82FyD4Xa9 .mbr-section-btn {
  color: #018508;
}
.cid-u82FyDqpNY {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u82FyDqpNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82FyDqpNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82FyDqpNY .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u82FyDqpNY .container-fluid {
    padding: 0 12px;
  }
}
.cid-u82FyDqpNY .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u82FyDqpNY .container {
    padding: 0 20px;
  }
}
.cid-u82FyDqpNY .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u82FyDqpNY .card {
  padding: 0;
}
.cid-u82FyDqpNY .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u82FyDqpNY .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u82FyDqpNY .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u82FyDqpNY .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u82FyDqpNY .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u82FyDqpNY .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u82FyDqpNY .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u82FyDqpNY .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u82FyDqpNY .mbr-section-title {
  color: #1d1d1d;
}
.cid-u82FyDqpNY .mbr-text {
  color: #000000;
}
.cid-u82FyDqpNY .mbr-section-title,
.cid-u82FyDqpNY .mbr-section-btn {
  color: #018508;
}
.cid-u82FyDQHfP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u82FyDQHfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82FyDQHfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82FyDQHfP .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u82FyDQHfP .container-fluid {
    padding: 0 20px;
  }
}
.cid-u82FyDQHfP .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u82FyDQHfP .container {
    padding: 0 20px;
  }
}
.cid-u82FyDQHfP .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u82FyDQHfP .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u82FyDQHfP .mbr-section-title {
  color: #1d1d1d;
}
.cid-u82FyDQHfP .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u82FyDQHfP .mbr-section-title,
.cid-u82FyDQHfP .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u82FyEdaLL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u82FyEdaLL .mbr-section-title {
  text-align: left;
}
.cid-u82FyEdaLL .mbr-text,
.cid-u82FyEdaLL .mbr-section-btn {
  text-align: center;
}
.cid-u82FyEdaLL .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u82FyEzJWM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u82FyEzJWM .mbr-section-title {
  text-align: left;
}
.cid-u82FyEzJWM .mbr-text,
.cid-u82FyEzJWM .mbr-section-btn {
  text-align: center;
}
.cid-u82FyEzJWM .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u82FyF1D4u {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u82FyF1D4u .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u82FyF1D4u .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u82FyF1D4u .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u82FyF1D4u .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u82FyF1D4u .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u82FyF1D4u .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u82FyF1D4u .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u82FyF1D4u .input-group-btn {
  padding-left: 0;
}
.cid-u82FyF1D4u .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u82FyF1D4u .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u82FyF1D4u .mbr-text {
  color: #444;
}
.cid-u82FyF1D4u h5 {
  margin-bottom: 0;
}
.cid-u82FyF1D4u .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u82FyF1D4u .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u82FyF1D4u .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u82FyF1D4u .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u82FyF1D4u .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u82FyF1D4u .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u82FyF1D4u .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u82FyF1D4u .social-list a:hover {
  opacity: 0.4;
}
.cid-u82FyF1D4u .media-container-row > div {
  padding: 0px;
}
.cid-u82FyF1D4u .text2 {
  color: #000000;
  text-align: left;
}
.cid-u82FyF1D4u .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u82FyF1D4u .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u82FyF1D4u .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u82FyF1D4u .social-list,
  .cid-u82FyF1D4u .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u82FyF1D4u h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u82FyF1D4u .form-group {
    max-width: 180px;
  }
}
.cid-u82FyF1D4u .links span {
  color: #9e9e9e;
}
.cid-u82FyF1D4u .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u82FyF1D4u .logo-title {
  text-align: center;
}
.cid-u82FyF1D4u .logo-title,
.cid-u82FyF1D4u .logo {
  color: #000000;
}
.cid-u82FyF1D4u .group-title DIV {
  text-align: center;
}
.cid-u82FyFMGjm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u82FyFMGjm .mbr-section-title {
  text-align: left;
}
.cid-u82FyFMGjm .mbr-text,
.cid-u82FyFMGjm .mbr-section-btn {
  text-align: center;
}
.cid-u82FyFMGjm .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u82FyGadNK .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u82FyGadNK .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u82FyGadNK .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u82FyGadNK .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u82FyGadNK .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u82FyGadNK .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u82FyGadNK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u82FyGadNK .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u82FyGadNK .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u82FyGadNK .navbar.collapsed.opened .navbar-collapse.show,
.cid-u82FyGadNK .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u82FyGadNK .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u82FyGadNK .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u82FyGadNK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u82FyGadNK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u82FyGadNK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u82FyGadNK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u82FyGadNK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u82FyGadNK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u82FyGadNK .navbar {
    flex-wrap: nowrap;
  }
  .cid-u82FyGadNK .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u82FyGadNK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u82FyGadNK .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u82FyGadNK .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u82FyGadNK .navbar.opened .navbar-collapse.show,
  .cid-u82FyGadNK .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u82FyGadNK .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u82FyGadNK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u82FyGadNK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u82FyGadNK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u82FyGadNK .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u82FyGadNK .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u82FyGadNK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u82FyGadNK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u82FyGadNK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u82FyGadNK .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u82FyGadNK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u82FyGadNK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u82FyGadNK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u82FyGadNK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u82FyGadNK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u82FyGadNK .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u82FyGadNK .dropdown-item.active,
.cid-u82FyGadNK .dropdown-item:active {
  background-color: transparent;
}
.cid-u82FyGadNK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u82FyGadNK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u82FyGadNK .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u82FyGadNK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u82FyGadNK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u82FyGadNK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u82FyGadNK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u82FyGadNK .navbar-buttons {
  text-align: center;
}
.cid-u82FyGadNK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u82FyGadNK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u82FyGadNK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u82FyGadNK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u82FyGadNK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u82FyGadNK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u82FyGadNK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u82FyGadNK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u82FyGadNK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u82FyGadNK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u82FyGadNK .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u82FyGadNK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u82FyGadNK a.nav-link:focus {
  outline: none;
}
.cid-u82FyGadNK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u82FyGadNK .nav-link:hover,
.cid-u82FyGadNK .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u82FyGadNK .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u82FyGadNK .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u86YjbrEex {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1282.webp");
}
.cid-u86YjbrEex .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86YjbrEex .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86YjbrEex img {
  border-radius: 3rem;
}
.cid-u86YjbrEex .row {
  align-items: center;
}
.cid-u86YjbrEex .mbr-section-title {
  color: #ffffff;
}
.cid-u86YjbrEex .mbr-text,
.cid-u86YjbrEex .mbr-section-btn {
  color: #ffffff;
}
.cid-u86YjbSjbL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86YjbSjbL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86YjbSjbL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86YjbSjbL .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86YjbSjbL .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86YjbSjbL .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86YjbSjbL .container {
    padding: 0 20px;
  }
}
.cid-u86YjbSjbL .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86YjbSjbL .card {
  padding: 0;
}
.cid-u86YjbSjbL .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86YjbSjbL .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u86YjbSjbL .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u86YjbSjbL .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86YjbSjbL .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86YjbSjbL .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u86YjbSjbL .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u86YjbSjbL .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u86YjbSjbL .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86YjbSjbL .mbr-text {
  color: #000000;
}
.cid-u86YjbSjbL .mbr-section-title,
.cid-u86YjbSjbL .mbr-section-btn {
  color: #018508;
}
.cid-u86YjcdP0h {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86YjcdP0h .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86YjcdP0h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86YjcdP0h .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86YjcdP0h .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86YjcdP0h .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86YjcdP0h .container {
    padding: 0 20px;
  }
}
.cid-u86YjcdP0h .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86YjcdP0h .card {
  padding: 0;
}
.cid-u86YjcdP0h .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86YjcdP0h .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u86YjcdP0h .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u86YjcdP0h .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u86YjcdP0h .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u86YjcdP0h .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86YjcdP0h .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86YjcdP0h .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u86YjcdP0h .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u86YjcdP0h .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u86YjcdP0h .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86YjcdP0h .mbr-text {
  color: #000000;
}
.cid-u86YjcdP0h .mbr-section-title,
.cid-u86YjcdP0h .mbr-section-btn {
  color: #018508;
}
.cid-u86Yjcx41o {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86Yjcx41o .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86Yjcx41o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86Yjcx41o .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86Yjcx41o .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86Yjcx41o .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86Yjcx41o .container {
    padding: 0 20px;
  }
}
.cid-u86Yjcx41o .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86Yjcx41o .card {
  padding: 0;
  border-radius: 0;
}
.cid-u86Yjcx41o .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u86Yjcx41o .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86Yjcx41o .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u86Yjcx41o .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u86Yjcx41o .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u86Yjcx41o .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u86Yjcx41o .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u86Yjcx41o .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86Yjcx41o .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86Yjcx41o .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u86Yjcx41o .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u86Yjcx41o .mbr-text {
  color: #000000;
}
.cid-u86Yjcx41o .mbr-section-title,
.cid-u86Yjcx41o .mbr-section-btn {
  color: #018508;
}
.cid-u86YjcRJ66 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86YjcRJ66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86YjcRJ66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86YjcRJ66 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86YjcRJ66 .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86YjcRJ66 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86YjcRJ66 .container {
    padding: 0 20px;
  }
}
.cid-u86YjcRJ66 .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86YjcRJ66 .card {
  padding: 0;
}
.cid-u86YjcRJ66 .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86YjcRJ66 .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u86YjcRJ66 .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u86YjcRJ66 .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u86YjcRJ66 .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u86YjcRJ66 .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86YjcRJ66 .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86YjcRJ66 .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u86YjcRJ66 .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u86YjcRJ66 .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u86YjcRJ66 .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86YjcRJ66 .mbr-text {
  color: #000000;
}
.cid-u86YjcRJ66 .mbr-section-title,
.cid-u86YjcRJ66 .mbr-section-btn {
  color: #018508;
}
.cid-u86YjdhiYh {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86YjdhiYh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86YjdhiYh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86YjdhiYh .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86YjdhiYh .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86YjdhiYh .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86YjdhiYh .container {
    padding: 0 20px;
  }
}
.cid-u86YjdhiYh .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86YjdhiYh .card {
  padding: 0;
}
.cid-u86YjdhiYh .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86YjdhiYh .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u86YjdhiYh .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u86YjdhiYh .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86YjdhiYh .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86YjdhiYh .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u86YjdhiYh .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u86YjdhiYh .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u86YjdhiYh .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86YjdhiYh .mbr-text {
  color: #000000;
}
.cid-u86YjdhiYh .mbr-section-title,
.cid-u86YjdhiYh .mbr-section-btn {
  color: #018508;
}
.cid-u86YjdD32M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u86YjdD32M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86YjdD32M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86YjdD32M .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u86YjdD32M .container-fluid {
    padding: 0 20px;
  }
}
.cid-u86YjdD32M .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u86YjdD32M .container {
    padding: 0 20px;
  }
}
.cid-u86YjdD32M .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u86YjdD32M .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u86YjdD32M .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86YjdD32M .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u86YjdD32M .mbr-section-title,
.cid-u86YjdD32M .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u86YjdY9Pe {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u86YjdY9Pe .mbr-section-title {
  text-align: left;
}
.cid-u86YjdY9Pe .mbr-text,
.cid-u86YjdY9Pe .mbr-section-btn {
  text-align: center;
}
.cid-u86YjdY9Pe .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u86YjeqVMy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u86YjeqVMy .mbr-section-title {
  text-align: left;
}
.cid-u86YjeqVMy .mbr-text,
.cid-u86YjeqVMy .mbr-section-btn {
  text-align: center;
}
.cid-u86YjeqVMy .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u86YjeQXKH {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u86YjeQXKH .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u86YjeQXKH .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u86YjeQXKH .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u86YjeQXKH .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u86YjeQXKH .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u86YjeQXKH .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u86YjeQXKH .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u86YjeQXKH .input-group-btn {
  padding-left: 0;
}
.cid-u86YjeQXKH .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u86YjeQXKH .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u86YjeQXKH .mbr-text {
  color: #444;
}
.cid-u86YjeQXKH h5 {
  margin-bottom: 0;
}
.cid-u86YjeQXKH .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u86YjeQXKH .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u86YjeQXKH .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u86YjeQXKH .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u86YjeQXKH .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u86YjeQXKH .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u86YjeQXKH .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u86YjeQXKH .social-list a:hover {
  opacity: 0.4;
}
.cid-u86YjeQXKH .media-container-row > div {
  padding: 0px;
}
.cid-u86YjeQXKH .text2 {
  color: #000000;
  text-align: left;
}
.cid-u86YjeQXKH .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u86YjeQXKH .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u86YjeQXKH .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u86YjeQXKH .social-list,
  .cid-u86YjeQXKH .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u86YjeQXKH h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u86YjeQXKH .form-group {
    max-width: 180px;
  }
}
.cid-u86YjeQXKH .links span {
  color: #9e9e9e;
}
.cid-u86YjeQXKH .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u86YjeQXKH .logo-title {
  text-align: center;
}
.cid-u86YjeQXKH .logo-title,
.cid-u86YjeQXKH .logo {
  color: #000000;
}
.cid-u86YjeQXKH .group-title DIV {
  text-align: center;
}
.cid-u86YjfDBfI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u86YjfDBfI .mbr-section-title {
  text-align: left;
}
.cid-u86YjfDBfI .mbr-text,
.cid-u86YjfDBfI .mbr-section-btn {
  text-align: center;
}
.cid-u86YjfDBfI .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u86Yjg1ttR .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u86Yjg1ttR .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u86Yjg1ttR .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u86Yjg1ttR .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u86Yjg1ttR .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u86Yjg1ttR .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u86Yjg1ttR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u86Yjg1ttR .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u86Yjg1ttR .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u86Yjg1ttR .navbar.collapsed.opened .navbar-collapse.show,
.cid-u86Yjg1ttR .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u86Yjg1ttR .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u86Yjg1ttR .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u86Yjg1ttR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u86Yjg1ttR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u86Yjg1ttR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u86Yjg1ttR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u86Yjg1ttR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u86Yjg1ttR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u86Yjg1ttR .navbar {
    flex-wrap: nowrap;
  }
  .cid-u86Yjg1ttR .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u86Yjg1ttR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u86Yjg1ttR .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u86Yjg1ttR .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u86Yjg1ttR .navbar.opened .navbar-collapse.show,
  .cid-u86Yjg1ttR .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u86Yjg1ttR .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u86Yjg1ttR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u86Yjg1ttR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u86Yjg1ttR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u86Yjg1ttR .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u86Yjg1ttR .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u86Yjg1ttR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u86Yjg1ttR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u86Yjg1ttR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u86Yjg1ttR .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u86Yjg1ttR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u86Yjg1ttR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u86Yjg1ttR .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u86Yjg1ttR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u86Yjg1ttR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u86Yjg1ttR .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u86Yjg1ttR .dropdown-item.active,
.cid-u86Yjg1ttR .dropdown-item:active {
  background-color: transparent;
}
.cid-u86Yjg1ttR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u86Yjg1ttR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u86Yjg1ttR .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u86Yjg1ttR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u86Yjg1ttR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u86Yjg1ttR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u86Yjg1ttR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u86Yjg1ttR .navbar-buttons {
  text-align: center;
}
.cid-u86Yjg1ttR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u86Yjg1ttR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u86Yjg1ttR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u86Yjg1ttR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u86Yjg1ttR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u86Yjg1ttR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u86Yjg1ttR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u86Yjg1ttR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u86Yjg1ttR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u86Yjg1ttR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u86Yjg1ttR .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u86Yjg1ttR a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u86Yjg1ttR a.nav-link:focus {
  outline: none;
}
.cid-u86Yjg1ttR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u86Yjg1ttR .nav-link:hover,
.cid-u86Yjg1ttR .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u86Yjg1ttR .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u86Yjg1ttR .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u86ZTdXhIL {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-u86ZTdXhIL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTdXhIL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTdXhIL img {
  border-radius: 3rem;
}
.cid-u86ZTdXhIL .row {
  align-items: center;
}
.cid-u86ZTdXhIL .mbr-section-title {
  color: #e7d900;
}
.cid-u86ZTdXhIL .mbr-text,
.cid-u86ZTdXhIL .mbr-section-btn {
  color: #ffffff;
}
.cid-u86ZTeshAv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u86ZTeshAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTeshAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTeshAv .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u86ZTeshAv .container-fluid {
    padding: 0 20px;
  }
}
.cid-u86ZTeshAv .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u86ZTeshAv .container {
    padding: 0 20px;
  }
}
.cid-u86ZTeshAv .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u86ZTeshAv .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u86ZTeshAv .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86ZTeshAv .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u86ZTeshAv .mbr-section-title,
.cid-u86ZTeshAv .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u86ZTeNLqt {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86ZTeNLqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTeNLqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTeNLqt .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86ZTeNLqt .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86ZTeNLqt .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86ZTeNLqt .container {
    padding: 0 20px;
  }
}
.cid-u86ZTeNLqt .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86ZTeNLqt .card {
  padding: 0;
  border-radius: 0;
}
.cid-u86ZTeNLqt .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u86ZTeNLqt .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86ZTeNLqt .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u86ZTeNLqt .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u86ZTeNLqt .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u86ZTeNLqt .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u86ZTeNLqt .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u86ZTeNLqt .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86ZTeNLqt .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86ZTeNLqt .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u86ZTeNLqt .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u86ZTeNLqt .mbr-text {
  color: #000000;
}
.cid-u86ZTeNLqt .mbr-section-title,
.cid-u86ZTeNLqt .mbr-section-btn {
  color: #018508;
}
.cid-u86ZTfe6Rh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u86ZTfe6Rh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTfe6Rh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTfe6Rh .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u86ZTfe6Rh .container-fluid {
    padding: 0 20px;
  }
}
.cid-u86ZTfe6Rh .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u86ZTfe6Rh .container {
    padding: 0 20px;
  }
}
.cid-u86ZTfe6Rh .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u86ZTfe6Rh .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u86ZTfe6Rh .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86ZTfe6Rh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u86ZTfe6Rh .mbr-section-title,
.cid-u86ZTfe6Rh .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u86ZTfEy9M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86ZTfEy9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTfEy9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTfEy9M .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86ZTfEy9M .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86ZTfEy9M .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86ZTfEy9M .container {
    padding: 0 20px;
  }
}
.cid-u86ZTfEy9M .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86ZTfEy9M .card {
  padding: 0;
}
.cid-u86ZTfEy9M .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86ZTfEy9M .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u86ZTfEy9M .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u86ZTfEy9M .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86ZTfEy9M .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86ZTfEy9M .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u86ZTfEy9M .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u86ZTfEy9M .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u86ZTfEy9M .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86ZTfEy9M .mbr-text {
  color: #000000;
}
.cid-u86ZTfEy9M .mbr-section-title,
.cid-u86ZTfEy9M .mbr-section-btn {
  color: #018508;
}
.cid-u86ZTg125R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86ZTg125R .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTg125R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTg125R .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86ZTg125R .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86ZTg125R .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86ZTg125R .container {
    padding: 0 20px;
  }
}
.cid-u86ZTg125R .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86ZTg125R .card {
  padding: 0;
  border-radius: 0;
}
.cid-u86ZTg125R .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u86ZTg125R .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86ZTg125R .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u86ZTg125R .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u86ZTg125R .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u86ZTg125R .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u86ZTg125R .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u86ZTg125R .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86ZTg125R .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86ZTg125R .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u86ZTg125R .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u86ZTg125R .mbr-text {
  color: #000000;
}
.cid-u86ZTg125R .mbr-section-title,
.cid-u86ZTg125R .mbr-section-btn {
  color: #018508;
}
.cid-u86ZTgoTRX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86ZTgoTRX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTgoTRX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTgoTRX .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86ZTgoTRX .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86ZTgoTRX .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86ZTgoTRX .container {
    padding: 0 20px;
  }
}
.cid-u86ZTgoTRX .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86ZTgoTRX .card {
  padding: 0;
}
.cid-u86ZTgoTRX .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86ZTgoTRX .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u86ZTgoTRX .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u86ZTgoTRX .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86ZTgoTRX .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86ZTgoTRX .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u86ZTgoTRX .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u86ZTgoTRX .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u86ZTgoTRX .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86ZTgoTRX .mbr-text {
  color: #000000;
}
.cid-u86ZTgoTRX .mbr-section-title,
.cid-u86ZTgoTRX .mbr-section-btn {
  color: #018508;
}
.cid-u86ZTgOfvN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u86ZTgOfvN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZTgOfvN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZTgOfvN .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u86ZTgOfvN .container-fluid {
    padding: 0 12px;
  }
}
.cid-u86ZTgOfvN .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u86ZTgOfvN .container {
    padding: 0 20px;
  }
}
.cid-u86ZTgOfvN .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u86ZTgOfvN .card {
  padding: 0;
}
.cid-u86ZTgOfvN .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u86ZTgOfvN .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u86ZTgOfvN .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-right: 0;
  border-bottom: 0;
}
.cid-u86ZTgOfvN .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
}
.cid-u86ZTgOfvN .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u86ZTgOfvN .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u86ZTgOfvN .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u86ZTgOfvN .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u86ZTgOfvN .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u86ZTgOfvN .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u86ZTgOfvN .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86ZTgOfvN .mbr-text {
  color: #000000;
}
.cid-u86ZTgOfvN .mbr-section-title,
.cid-u86ZTgOfvN .mbr-section-btn {
  color: #018508;
}
.cid-u86ZThfcKt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u86ZThfcKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u86ZThfcKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u86ZThfcKt .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u86ZThfcKt .container-fluid {
    padding: 0 20px;
  }
}
.cid-u86ZThfcKt .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u86ZThfcKt .container {
    padding: 0 20px;
  }
}
.cid-u86ZThfcKt .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u86ZThfcKt .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u86ZThfcKt .mbr-section-title {
  color: #1d1d1d;
}
.cid-u86ZThfcKt .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u86ZThfcKt .mbr-section-title,
.cid-u86ZThfcKt .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u86ZThEMDL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u86ZThEMDL .mbr-section-title {
  text-align: left;
}
.cid-u86ZThEMDL .mbr-text,
.cid-u86ZThEMDL .mbr-section-btn {
  text-align: center;
}
.cid-u86ZThEMDL .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u86ZTi3cEc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u86ZTi3cEc .mbr-section-title {
  text-align: left;
}
.cid-u86ZTi3cEc .mbr-text,
.cid-u86ZTi3cEc .mbr-section-btn {
  text-align: center;
}
.cid-u86ZTi3cEc .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u86ZTivmhh {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u86ZTivmhh .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u86ZTivmhh .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u86ZTivmhh .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u86ZTivmhh .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u86ZTivmhh .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u86ZTivmhh .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u86ZTivmhh .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u86ZTivmhh .input-group-btn {
  padding-left: 0;
}
.cid-u86ZTivmhh .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u86ZTivmhh .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u86ZTivmhh .mbr-text {
  color: #444;
}
.cid-u86ZTivmhh h5 {
  margin-bottom: 0;
}
.cid-u86ZTivmhh .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u86ZTivmhh .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u86ZTivmhh .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u86ZTivmhh .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u86ZTivmhh .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u86ZTivmhh .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u86ZTivmhh .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u86ZTivmhh .social-list a:hover {
  opacity: 0.4;
}
.cid-u86ZTivmhh .media-container-row > div {
  padding: 0px;
}
.cid-u86ZTivmhh .text2 {
  color: #000000;
  text-align: left;
}
.cid-u86ZTivmhh .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u86ZTivmhh .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u86ZTivmhh .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u86ZTivmhh .social-list,
  .cid-u86ZTivmhh .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u86ZTivmhh h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u86ZTivmhh .form-group {
    max-width: 180px;
  }
}
.cid-u86ZTivmhh .links span {
  color: #9e9e9e;
}
.cid-u86ZTivmhh .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u86ZTivmhh .logo-title {
  text-align: center;
}
.cid-u86ZTivmhh .logo-title,
.cid-u86ZTivmhh .logo {
  color: #000000;
}
.cid-u86ZTivmhh .group-title DIV {
  text-align: center;
}
.cid-u86ZTjkKBD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u86ZTjkKBD .mbr-section-title {
  text-align: left;
}
.cid-u86ZTjkKBD .mbr-text,
.cid-u86ZTjkKBD .mbr-section-btn {
  text-align: center;
}
.cid-u86ZTjkKBD .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u86ZTjOt6Q .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u86ZTjOt6Q .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u86ZTjOt6Q .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u86ZTjOt6Q .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u86ZTjOt6Q .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u86ZTjOt6Q .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u86ZTjOt6Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u86ZTjOt6Q .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u86ZTjOt6Q .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u86ZTjOt6Q .navbar.collapsed.opened .navbar-collapse.show,
.cid-u86ZTjOt6Q .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u86ZTjOt6Q .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u86ZTjOt6Q .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u86ZTjOt6Q .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u86ZTjOt6Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u86ZTjOt6Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u86ZTjOt6Q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u86ZTjOt6Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u86ZTjOt6Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u86ZTjOt6Q .navbar {
    flex-wrap: nowrap;
  }
  .cid-u86ZTjOt6Q .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u86ZTjOt6Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u86ZTjOt6Q .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u86ZTjOt6Q .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u86ZTjOt6Q .navbar.opened .navbar-collapse.show,
  .cid-u86ZTjOt6Q .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u86ZTjOt6Q .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u86ZTjOt6Q .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u86ZTjOt6Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u86ZTjOt6Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u86ZTjOt6Q .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u86ZTjOt6Q .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u86ZTjOt6Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u86ZTjOt6Q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u86ZTjOt6Q .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u86ZTjOt6Q .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u86ZTjOt6Q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u86ZTjOt6Q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u86ZTjOt6Q .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u86ZTjOt6Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u86ZTjOt6Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u86ZTjOt6Q .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u86ZTjOt6Q .dropdown-item.active,
.cid-u86ZTjOt6Q .dropdown-item:active {
  background-color: transparent;
}
.cid-u86ZTjOt6Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u86ZTjOt6Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u86ZTjOt6Q .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u86ZTjOt6Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u86ZTjOt6Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u86ZTjOt6Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u86ZTjOt6Q ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u86ZTjOt6Q .navbar-buttons {
  text-align: center;
}
.cid-u86ZTjOt6Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u86ZTjOt6Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u86ZTjOt6Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u86ZTjOt6Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u86ZTjOt6Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u86ZTjOt6Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u86ZTjOt6Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u86ZTjOt6Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u86ZTjOt6Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u86ZTjOt6Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u86ZTjOt6Q .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u86ZTjOt6Q a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u86ZTjOt6Q a.nav-link:focus {
  outline: none;
}
.cid-u86ZTjOt6Q .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u86ZTjOt6Q .nav-link:hover,
.cid-u86ZTjOt6Q .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u86ZTjOt6Q .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u86ZTjOt6Q .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u8CR2MBGaD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-u8CR2MBGaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2MBGaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2MBGaD img {
  border-radius: 3rem;
}
.cid-u8CR2MBGaD .row {
  align-items: center;
}
.cid-u8CR2MBGaD .mbr-section-title {
  color: #e7d900;
}
.cid-u8CR2MBGaD .mbr-text,
.cid-u8CR2MBGaD .mbr-section-btn {
  color: #ffffff;
}
.cid-u8CR2OyIoo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u8CR2OyIoo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2OyIoo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2OyIoo .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u8CR2OyIoo .container-fluid {
    padding: 0 20px;
  }
}
.cid-u8CR2OyIoo .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u8CR2OyIoo .container {
    padding: 0 20px;
  }
}
.cid-u8CR2OyIoo .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u8CR2OyIoo .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u8CR2OyIoo .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CR2OyIoo .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u8CR2OyIoo .mbr-section-title,
.cid-u8CR2OyIoo .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u8CR2PfDhl {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CR2PfDhl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2PfDhl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2PfDhl .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CR2PfDhl .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CR2PfDhl .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CR2PfDhl .container {
    padding: 0 20px;
  }
}
.cid-u8CR2PfDhl .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CR2PfDhl .card {
  padding: 0;
  border-radius: 0;
}
.cid-u8CR2PfDhl .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u8CR2PfDhl .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CR2PfDhl .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u8CR2PfDhl .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u8CR2PfDhl .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u8CR2PfDhl .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u8CR2PfDhl .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u8CR2PfDhl .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CR2PfDhl .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CR2PfDhl .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u8CR2PfDhl .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u8CR2PfDhl .mbr-text {
  color: #000000;
}
.cid-u8CR2PfDhl .mbr-section-title,
.cid-u8CR2PfDhl .mbr-section-btn {
  color: #018508;
}
.cid-u8CR2PVuCf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-u8CR2PVuCf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2PVuCf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2PVuCf .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u8CR2PVuCf .container-fluid {
    padding: 0 20px;
  }
}
.cid-u8CR2PVuCf .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u8CR2PVuCf .container {
    padding: 0 20px;
  }
}
.cid-u8CR2PVuCf .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u8CR2PVuCf .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u8CR2PVuCf .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CR2PVuCf .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-u8CR2PVuCf .mbr-section-title,
.cid-u8CR2PVuCf .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-u8CR2QNfWs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CR2QNfWs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2QNfWs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2QNfWs .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CR2QNfWs .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CR2QNfWs .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CR2QNfWs .container {
    padding: 0 20px;
  }
}
.cid-u8CR2QNfWs .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CR2QNfWs .card {
  padding: 0;
}
.cid-u8CR2QNfWs .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CR2QNfWs .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u8CR2QNfWs .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u8CR2QNfWs .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CR2QNfWs .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CR2QNfWs .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u8CR2QNfWs .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u8CR2QNfWs .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u8CR2QNfWs .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CR2QNfWs .mbr-text {
  color: #000000;
}
.cid-u8CR2QNfWs .mbr-section-title,
.cid-u8CR2QNfWs .mbr-section-btn {
  color: #018508;
}
.cid-u8CR2RE39G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CR2RE39G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2RE39G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2RE39G .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CR2RE39G .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CR2RE39G .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CR2RE39G .container {
    padding: 0 20px;
  }
}
.cid-u8CR2RE39G .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CR2RE39G .card {
  padding: 0;
  border-radius: 0;
}
.cid-u8CR2RE39G .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u8CR2RE39G .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CR2RE39G .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u8CR2RE39G .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u8CR2RE39G .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u8CR2RE39G .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u8CR2RE39G .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u8CR2RE39G .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CR2RE39G .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CR2RE39G .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u8CR2RE39G .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u8CR2RE39G .mbr-text {
  color: #000000;
}
.cid-u8CR2RE39G .mbr-section-title,
.cid-u8CR2RE39G .mbr-section-btn {
  color: #018508;
}
.cid-u8CR2SatjS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CR2SatjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2SatjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2SatjS .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CR2SatjS .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CR2SatjS .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CR2SatjS .container {
    padding: 0 20px;
  }
}
.cid-u8CR2SatjS .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CR2SatjS .card {
  padding: 0;
}
.cid-u8CR2SatjS .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CR2SatjS .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u8CR2SatjS .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u8CR2SatjS .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CR2SatjS .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CR2SatjS .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u8CR2SatjS .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u8CR2SatjS .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u8CR2SatjS .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CR2SatjS .mbr-text {
  color: #000000;
}
.cid-u8CR2SatjS .mbr-section-title,
.cid-u8CR2SatjS .mbr-section-btn {
  color: #018508;
}
.cid-u8CR2SHrHo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CR2SHrHo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2SHrHo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2SHrHo .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CR2SHrHo .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CR2SHrHo .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CR2SHrHo .container {
    padding: 0 20px;
  }
}
.cid-u8CR2SHrHo .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CR2SHrHo .card {
  padding: 0;
}
.cid-u8CR2SHrHo .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CR2SHrHo .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u8CR2SHrHo .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-right: 0;
  border-bottom: 0;
}
.cid-u8CR2SHrHo .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
}
.cid-u8CR2SHrHo .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u8CR2SHrHo .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CR2SHrHo .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CR2SHrHo .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u8CR2SHrHo .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u8CR2SHrHo .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u8CR2SHrHo .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CR2SHrHo .mbr-text {
  color: #000000;
}
.cid-u8CR2SHrHo .mbr-section-title,
.cid-u8CR2SHrHo .mbr-section-btn {
  color: #018508;
}
.cid-u8CR2TnX3p {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u8CR2TnX3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CR2TnX3p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CR2TnX3p .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u8CR2TnX3p .container-fluid {
    padding: 0 20px;
  }
}
.cid-u8CR2TnX3p .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u8CR2TnX3p .container {
    padding: 0 20px;
  }
}
.cid-u8CR2TnX3p .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u8CR2TnX3p .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u8CR2TnX3p .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CR2TnX3p .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u8CR2TnX3p .mbr-section-title,
.cid-u8CR2TnX3p .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u8CR2UywgD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u8CR2UywgD .mbr-section-title {
  text-align: left;
}
.cid-u8CR2UywgD .mbr-text,
.cid-u8CR2UywgD .mbr-section-btn {
  text-align: center;
}
.cid-u8CR2UywgD .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u8CR2Vfij7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u8CR2Vfij7 .mbr-section-title {
  text-align: left;
}
.cid-u8CR2Vfij7 .mbr-text,
.cid-u8CR2Vfij7 .mbr-section-btn {
  text-align: center;
}
.cid-u8CR2Vfij7 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u8CR2W7eZE {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u8CR2W7eZE .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u8CR2W7eZE .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8CR2W7eZE .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8CR2W7eZE .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u8CR2W7eZE .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u8CR2W7eZE .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8CR2W7eZE .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8CR2W7eZE .input-group-btn {
  padding-left: 0;
}
.cid-u8CR2W7eZE .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8CR2W7eZE .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u8CR2W7eZE .mbr-text {
  color: #444;
}
.cid-u8CR2W7eZE h5 {
  margin-bottom: 0;
}
.cid-u8CR2W7eZE .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8CR2W7eZE .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8CR2W7eZE .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8CR2W7eZE .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8CR2W7eZE .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8CR2W7eZE .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8CR2W7eZE .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8CR2W7eZE .social-list a:hover {
  opacity: 0.4;
}
.cid-u8CR2W7eZE .media-container-row > div {
  padding: 0px;
}
.cid-u8CR2W7eZE .text2 {
  color: #000000;
  text-align: left;
}
.cid-u8CR2W7eZE .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u8CR2W7eZE .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u8CR2W7eZE .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8CR2W7eZE .social-list,
  .cid-u8CR2W7eZE .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8CR2W7eZE h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8CR2W7eZE .form-group {
    max-width: 180px;
  }
}
.cid-u8CR2W7eZE .links span {
  color: #9e9e9e;
}
.cid-u8CR2W7eZE .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u8CR2W7eZE .logo-title {
  text-align: center;
}
.cid-u8CR2W7eZE .logo-title,
.cid-u8CR2W7eZE .logo {
  color: #000000;
}
.cid-u8CR2W7eZE .group-title DIV {
  text-align: center;
}
.cid-u8CR2XoU1J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u8CR2XoU1J .mbr-section-title {
  text-align: left;
}
.cid-u8CR2XoU1J .mbr-text,
.cid-u8CR2XoU1J .mbr-section-btn {
  text-align: center;
}
.cid-u8CR2XoU1J .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u8CR2XV0zg .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u8CR2XV0zg .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u8CR2XV0zg .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u8CR2XV0zg .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8CR2XV0zg .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u8CR2XV0zg .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8CR2XV0zg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u8CR2XV0zg .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u8CR2XV0zg .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u8CR2XV0zg .navbar.collapsed.opened .navbar-collapse.show,
.cid-u8CR2XV0zg .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u8CR2XV0zg .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u8CR2XV0zg .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u8CR2XV0zg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u8CR2XV0zg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8CR2XV0zg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8CR2XV0zg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u8CR2XV0zg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8CR2XV0zg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u8CR2XV0zg .navbar {
    flex-wrap: nowrap;
  }
  .cid-u8CR2XV0zg .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u8CR2XV0zg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8CR2XV0zg .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u8CR2XV0zg .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u8CR2XV0zg .navbar.opened .navbar-collapse.show,
  .cid-u8CR2XV0zg .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u8CR2XV0zg .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u8CR2XV0zg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u8CR2XV0zg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8CR2XV0zg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8CR2XV0zg .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u8CR2XV0zg .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u8CR2XV0zg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8CR2XV0zg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u8CR2XV0zg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u8CR2XV0zg .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u8CR2XV0zg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u8CR2XV0zg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u8CR2XV0zg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8CR2XV0zg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8CR2XV0zg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8CR2XV0zg .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u8CR2XV0zg .dropdown-item.active,
.cid-u8CR2XV0zg .dropdown-item:active {
  background-color: transparent;
}
.cid-u8CR2XV0zg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8CR2XV0zg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8CR2XV0zg .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8CR2XV0zg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u8CR2XV0zg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8CR2XV0zg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8CR2XV0zg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u8CR2XV0zg .navbar-buttons {
  text-align: center;
}
.cid-u8CR2XV0zg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u8CR2XV0zg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u8CR2XV0zg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8CR2XV0zg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8CR2XV0zg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8CR2XV0zg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8CR2XV0zg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8CR2XV0zg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8CR2XV0zg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8CR2XV0zg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8CR2XV0zg .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u8CR2XV0zg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u8CR2XV0zg a.nav-link:focus {
  outline: none;
}
.cid-u8CR2XV0zg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8CR2XV0zg .nav-link:hover,
.cid-u8CR2XV0zg .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8CR2XV0zg .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u8CR2XV0zg .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-u8CQ9W8F8X {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1282.webp");
}
.cid-u8CQ9W8F8X .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CQ9W8F8X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CQ9W8F8X img {
  border-radius: 3rem;
}
.cid-u8CQ9W8F8X .row {
  align-items: center;
}
.cid-u8CQ9W8F8X .mbr-section-title {
  color: #ffffff;
}
.cid-u8CQ9W8F8X .mbr-text,
.cid-u8CQ9W8F8X .mbr-section-btn {
  color: #ffffff;
}
.cid-u8CQ9WC0Hu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CQ9WC0Hu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CQ9WC0Hu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CQ9WC0Hu .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CQ9WC0Hu .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CQ9WC0Hu .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CQ9WC0Hu .container {
    padding: 0 20px;
  }
}
.cid-u8CQ9WC0Hu .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CQ9WC0Hu .card {
  padding: 0;
}
.cid-u8CQ9WC0Hu .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CQ9WC0Hu .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u8CQ9WC0Hu .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u8CQ9WC0Hu .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CQ9WC0Hu .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CQ9WC0Hu .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u8CQ9WC0Hu .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u8CQ9WC0Hu .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u8CQ9WC0Hu .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CQ9WC0Hu .mbr-text {
  color: #000000;
}
.cid-u8CQ9WC0Hu .mbr-section-title,
.cid-u8CQ9WC0Hu .mbr-section-btn {
  color: #018508;
}
.cid-u8CQ9WXOrD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CQ9WXOrD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CQ9WXOrD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CQ9WXOrD .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CQ9WXOrD .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CQ9WXOrD .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CQ9WXOrD .container {
    padding: 0 20px;
  }
}
.cid-u8CQ9WXOrD .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CQ9WXOrD .card {
  padding: 0;
}
.cid-u8CQ9WXOrD .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CQ9WXOrD .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u8CQ9WXOrD .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u8CQ9WXOrD .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u8CQ9WXOrD .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u8CQ9WXOrD .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CQ9WXOrD .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CQ9WXOrD .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u8CQ9WXOrD .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u8CQ9WXOrD .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u8CQ9WXOrD .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CQ9WXOrD .mbr-text {
  color: #000000;
}
.cid-u8CQ9WXOrD .mbr-section-title,
.cid-u8CQ9WXOrD .mbr-section-btn {
  color: #018508;
}
.cid-u8CQ9Xj4fR {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CQ9Xj4fR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CQ9Xj4fR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CQ9Xj4fR .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CQ9Xj4fR .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CQ9Xj4fR .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CQ9Xj4fR .container {
    padding: 0 20px;
  }
}
.cid-u8CQ9Xj4fR .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CQ9Xj4fR .card {
  padding: 0;
  border-radius: 0;
}
.cid-u8CQ9Xj4fR .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-u8CQ9Xj4fR .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CQ9Xj4fR .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-u8CQ9Xj4fR .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u8CQ9Xj4fR .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-u8CQ9Xj4fR .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-u8CQ9Xj4fR .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-u8CQ9Xj4fR .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CQ9Xj4fR .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CQ9Xj4fR .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u8CQ9Xj4fR .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-u8CQ9Xj4fR .mbr-text {
  color: #000000;
}
.cid-u8CQ9Xj4fR .mbr-section-title,
.cid-u8CQ9Xj4fR .mbr-section-btn {
  color: #018508;
}
.cid-u8CQ9XDoVM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CQ9XDoVM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CQ9XDoVM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CQ9XDoVM .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CQ9XDoVM .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CQ9XDoVM .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CQ9XDoVM .container {
    padding: 0 20px;
  }
}
.cid-u8CQ9XDoVM .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CQ9XDoVM .card {
  padding: 0;
}
.cid-u8CQ9XDoVM .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CQ9XDoVM .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-u8CQ9XDoVM .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u8CQ9XDoVM .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-u8CQ9XDoVM .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-u8CQ9XDoVM .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CQ9XDoVM .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CQ9XDoVM .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u8CQ9XDoVM .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u8CQ9XDoVM .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u8CQ9XDoVM .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CQ9XDoVM .mbr-text {
  color: #000000;
}
.cid-u8CQ9XDoVM .mbr-section-title,
.cid-u8CQ9XDoVM .mbr-section-btn {
  color: #018508;
}
.cid-u8CQ9Y2xQk {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-u8CQ9Y2xQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CQ9Y2xQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CQ9Y2xQk .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-u8CQ9Y2xQk .container-fluid {
    padding: 0 12px;
  }
}
.cid-u8CQ9Y2xQk .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u8CQ9Y2xQk .container {
    padding: 0 20px;
  }
}
.cid-u8CQ9Y2xQk .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-u8CQ9Y2xQk .card {
  padding: 0;
}
.cid-u8CQ9Y2xQk .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-u8CQ9Y2xQk .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-u8CQ9Y2xQk .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-u8CQ9Y2xQk .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u8CQ9Y2xQk .card:last-child {
    padding: 50px 20px;
  }
}
.cid-u8CQ9Y2xQk .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u8CQ9Y2xQk .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-u8CQ9Y2xQk .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-u8CQ9Y2xQk .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CQ9Y2xQk .mbr-text {
  color: #000000;
}
.cid-u8CQ9Y2xQk .mbr-section-title,
.cid-u8CQ9Y2xQk .mbr-section-btn {
  color: #018508;
}
.cid-u8CQ9Yp1nI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-u8CQ9Yp1nI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8CQ9Yp1nI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8CQ9Yp1nI .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-u8CQ9Yp1nI .container-fluid {
    padding: 0 20px;
  }
}
.cid-u8CQ9Yp1nI .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-u8CQ9Yp1nI .container {
    padding: 0 20px;
  }
}
.cid-u8CQ9Yp1nI .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-u8CQ9Yp1nI .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-u8CQ9Yp1nI .mbr-section-title {
  color: #1d1d1d;
}
.cid-u8CQ9Yp1nI .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-u8CQ9Yp1nI .mbr-section-title,
.cid-u8CQ9Yp1nI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u8CQ9YOoKh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u8CQ9YOoKh .mbr-section-title {
  text-align: left;
}
.cid-u8CQ9YOoKh .mbr-text,
.cid-u8CQ9YOoKh .mbr-section-btn {
  text-align: center;
}
.cid-u8CQ9YOoKh .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u8CQ9ZeY1w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-u8CQ9ZeY1w .mbr-section-title {
  text-align: left;
}
.cid-u8CQ9ZeY1w .mbr-text,
.cid-u8CQ9ZeY1w .mbr-section-btn {
  text-align: center;
}
.cid-u8CQ9ZeY1w .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u8CQ9ZFOeV {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-u8CQ9ZFOeV .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-u8CQ9ZFOeV .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-u8CQ9ZFOeV .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-u8CQ9ZFOeV .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-u8CQ9ZFOeV .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-u8CQ9ZFOeV .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-u8CQ9ZFOeV .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-u8CQ9ZFOeV .input-group-btn {
  padding-left: 0;
}
.cid-u8CQ9ZFOeV .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-u8CQ9ZFOeV .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-u8CQ9ZFOeV .mbr-text {
  color: #444;
}
.cid-u8CQ9ZFOeV h5 {
  margin-bottom: 0;
}
.cid-u8CQ9ZFOeV .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-u8CQ9ZFOeV .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u8CQ9ZFOeV .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-u8CQ9ZFOeV .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u8CQ9ZFOeV .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8CQ9ZFOeV .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-u8CQ9ZFOeV .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8CQ9ZFOeV .social-list a:hover {
  opacity: 0.4;
}
.cid-u8CQ9ZFOeV .media-container-row > div {
  padding: 0px;
}
.cid-u8CQ9ZFOeV .text2 {
  color: #000000;
  text-align: left;
}
.cid-u8CQ9ZFOeV .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-u8CQ9ZFOeV .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u8CQ9ZFOeV .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-u8CQ9ZFOeV .social-list,
  .cid-u8CQ9ZFOeV .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-u8CQ9ZFOeV h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-u8CQ9ZFOeV .form-group {
    max-width: 180px;
  }
}
.cid-u8CQ9ZFOeV .links span {
  color: #9e9e9e;
}
.cid-u8CQ9ZFOeV .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-u8CQ9ZFOeV .logo-title {
  text-align: center;
}
.cid-u8CQ9ZFOeV .logo-title,
.cid-u8CQ9ZFOeV .logo {
  color: #000000;
}
.cid-u8CQ9ZFOeV .group-title DIV {
  text-align: center;
}
.cid-u8CQa0s9oE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u8CQa0s9oE .mbr-section-title {
  text-align: left;
}
.cid-u8CQa0s9oE .mbr-text,
.cid-u8CQa0s9oE .mbr-section-btn {
  text-align: center;
}
.cid-u8CQa0s9oE .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-u8CQa0UeHt .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-u8CQa0UeHt .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-u8CQa0UeHt .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-u8CQa0UeHt .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8CQa0UeHt .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-u8CQa0UeHt .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-u8CQa0UeHt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u8CQa0UeHt .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-u8CQa0UeHt .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-u8CQa0UeHt .navbar.collapsed.opened .navbar-collapse.show,
.cid-u8CQa0UeHt .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-u8CQa0UeHt .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-u8CQa0UeHt .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-u8CQa0UeHt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u8CQa0UeHt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8CQa0UeHt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8CQa0UeHt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u8CQa0UeHt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8CQa0UeHt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u8CQa0UeHt .navbar {
    flex-wrap: nowrap;
  }
  .cid-u8CQa0UeHt .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-u8CQa0UeHt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8CQa0UeHt .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-u8CQa0UeHt .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-u8CQa0UeHt .navbar.opened .navbar-collapse.show,
  .cid-u8CQa0UeHt .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-u8CQa0UeHt .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-u8CQa0UeHt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u8CQa0UeHt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8CQa0UeHt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8CQa0UeHt .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u8CQa0UeHt .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-u8CQa0UeHt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8CQa0UeHt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-u8CQa0UeHt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-u8CQa0UeHt .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-u8CQa0UeHt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-u8CQa0UeHt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u8CQa0UeHt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8CQa0UeHt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8CQa0UeHt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8CQa0UeHt .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-u8CQa0UeHt .dropdown-item.active,
.cid-u8CQa0UeHt .dropdown-item:active {
  background-color: transparent;
}
.cid-u8CQa0UeHt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8CQa0UeHt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8CQa0UeHt .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8CQa0UeHt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-u8CQa0UeHt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8CQa0UeHt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8CQa0UeHt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u8CQa0UeHt .navbar-buttons {
  text-align: center;
}
.cid-u8CQa0UeHt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u8CQa0UeHt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-u8CQa0UeHt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8CQa0UeHt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8CQa0UeHt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8CQa0UeHt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8CQa0UeHt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8CQa0UeHt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8CQa0UeHt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8CQa0UeHt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8CQa0UeHt .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-u8CQa0UeHt a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-u8CQa0UeHt a.nav-link:focus {
  outline: none;
}
.cid-u8CQa0UeHt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8CQa0UeHt .nav-link:hover,
.cid-u8CQa0UeHt .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8CQa0UeHt .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-u8CQa0UeHt .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uES1hRiGAn {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/immagine-1-1280x853.webp");
}
.cid-uES1hRiGAn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hRiGAn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hRiGAn img {
  border-radius: 3rem;
}
.cid-uES1hRiGAn .row {
  align-items: center;
}
.cid-uES1hRiGAn .mbr-section-title {
  color: #000000;
}
.cid-uES1hRiGAn .mbr-text,
.cid-uES1hRiGAn .mbr-section-btn {
  color: #000000;
}
.cid-uES1hRWReT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uES1hRWReT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hRWReT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hRWReT .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uES1hRWReT .container-fluid {
    padding: 0 12px;
  }
}
.cid-uES1hRWReT .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uES1hRWReT .container {
    padding: 0 20px;
  }
}
.cid-uES1hRWReT .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uES1hRWReT .card {
  padding: 0;
  border-radius: 0;
}
.cid-uES1hRWReT .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-uES1hRWReT .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uES1hRWReT .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-uES1hRWReT .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uES1hRWReT .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-uES1hRWReT .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-uES1hRWReT .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-uES1hRWReT .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uES1hRWReT .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uES1hRWReT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uES1hRWReT .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-uES1hRWReT .mbr-text {
  color: #000000;
}
.cid-uES1hRWReT .mbr-section-title,
.cid-uES1hRWReT .mbr-section-btn {
  color: #018508;
}
.cid-uES1hSmUkz {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #018508;
}
.cid-uES1hSmUkz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uES1hSmUkz .card-title {
  margin-bottom: 26px;
  color: #fcfbf5;
}
.cid-uES1hSmUkz .mbr-text {
  margin-bottom: 30px;
}
.cid-uES1hSmUkz .iconfont-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  display: inline-block;
  text-align: center;
  width: 70px;
  height: 70px;
}
.cid-uES1hSmUkz .iconfont-wrapper svg {
  position: absolute;
  top: -20px;
  left: -28px;
}
.cid-uES1hSmUkz .iconfont-wrapper svg #grad_1 {
  stop-color: #0033ce;
}
.cid-uES1hSmUkz .iconfont-wrapper svg #grad_2 {
  stop-color: #3567ff;
}
.cid-uES1hSmUkz .iconfont-wrapper svg #blur_svg {
  flood-color: #0033ce;
}
.cid-uES1hSmUkz .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 38px;
  line-height: 73px;
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 5;
}
@media (min-width: 992px) {
  .cid-uES1hSmUkz .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uES1hSmUkz .text-wrapper {
    text-align: center;
  }
  .cid-uES1hSmUkz .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uES1hSmUkz .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uES1hSmUkz .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uES1hSmUkz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hSmUkz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hSmUkz .card-title,
.cid-uES1hSmUkz .icon_block {
  color: #ffffff;
  text-align: right;
}
.cid-uES1hSmUkz .mbr-text,
.cid-uES1hSmUkz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uES1hSmUkz .card-title,
.cid-uES1hSmUkz .icon_block DIV {
  text-align: center;
}
.cid-uES1hSPi4q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #018508;
}
.cid-uES1hSPi4q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hSPi4q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hSPi4q .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uES1hSPi4q .container-fluid {
    padding: 0 20px;
  }
}
.cid-uES1hSPi4q .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uES1hSPi4q .container {
    padding: 0 20px;
  }
}
.cid-uES1hSPi4q .row {
  justify-content: center;
}
.cid-uES1hSPi4q .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uES1hSPi4q .item {
    margin-bottom: 50px;
  }
}
.cid-uES1hSPi4q .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uES1hSPi4q .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #e7d900;
}
.cid-uES1hSPi4q .mbr-card-title {
  color: #1d1d1d;
}
.cid-uES1hSPi4q .mbr-card-title,
.cid-uES1hSPi4q .item-img {
  text-align: center;
  color: #ffffff;
}
.cid-uES1hSPi4q .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-uES1hTiuYF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uES1hTiuYF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hTiuYF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hTiuYF .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uES1hTiuYF .container-fluid {
    padding: 0 12px;
  }
}
.cid-uES1hTiuYF .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uES1hTiuYF .container {
    padding: 0 20px;
  }
}
.cid-uES1hTiuYF .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uES1hTiuYF .card {
  padding: 0;
}
.cid-uES1hTiuYF .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uES1hTiuYF .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-uES1hTiuYF .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-uES1hTiuYF .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-uES1hTiuYF .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-uES1hTiuYF .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uES1hTiuYF .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uES1hTiuYF .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uES1hTiuYF .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uES1hTiuYF .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uES1hTiuYF .mbr-section-title {
  color: #1d1d1d;
}
.cid-uES1hTiuYF .mbr-text {
  color: #000000;
}
.cid-uES1hTiuYF .mbr-section-title,
.cid-uES1hTiuYF .mbr-section-btn {
  color: #018508;
}
.cid-uES1hTLIUQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uES1hTLIUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hTLIUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hTLIUQ .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uES1hTLIUQ .container-fluid {
    padding: 0 12px;
  }
}
.cid-uES1hTLIUQ .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uES1hTLIUQ .container {
    padding: 0 20px;
  }
}
.cid-uES1hTLIUQ .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uES1hTLIUQ .card {
  padding: 0;
}
.cid-uES1hTLIUQ .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uES1hTLIUQ .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-uES1hTLIUQ .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-uES1hTLIUQ .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uES1hTLIUQ .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uES1hTLIUQ .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uES1hTLIUQ .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uES1hTLIUQ .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uES1hTLIUQ .mbr-section-title {
  color: #1d1d1d;
}
.cid-uES1hTLIUQ .mbr-text {
  color: #1d1d1d;
}
.cid-uES1hTLIUQ .mbr-section-title,
.cid-uES1hTLIUQ .mbr-section-btn {
  color: #018508;
}
.cid-uES1hUgvhe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fcfbf5;
}
.cid-uES1hUgvhe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hUgvhe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hUgvhe .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uES1hUgvhe .container-fluid {
    padding: 0 20px;
  }
}
.cid-uES1hUgvhe .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uES1hUgvhe .container {
    padding: 0 20px;
  }
}
.cid-uES1hUgvhe .row {
  justify-content: center;
}
.cid-uES1hUgvhe .item {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uES1hUgvhe .item {
    margin-bottom: 50px;
  }
}
.cid-uES1hUgvhe .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uES1hUgvhe .item .item-wrapper .item-img {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 2px solid #018508;
}
.cid-uES1hUgvhe .item .item-wrapper .item-img img {
  width: 210px;
  height: 210px;
  border-radius: 100%;
  object-fit: cover;
  display: inline-flex;
  border: 2px solid #018508;
}
.cid-uES1hUgvhe .item .item-wrapper .item-content .title-wrapper {
  height: 100%;
}
.cid-uES1hUgvhe .item .item-wrapper .item-content .title-wrapper .mbr-card-title {
  margin-bottom: 32px;
}
.cid-uES1hUgvhe .item .item-wrapper .item-content .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uES1hUgvhe .mbr-card-title {
  color: #1d1d1d;
}
.cid-uES1hUgvhe .mbr-card-title,
.cid-uES1hUgvhe .item-img {
  text-align: center;
  color: #000000;
}
.cid-uES1hUgvhe .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-uES1hUVDdd {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fcfbf5;
}
.cid-uES1hUVDdd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hUVDdd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hUVDdd .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-uES1hUVDdd .container-fluid {
    padding: 0 20px;
  }
}
.cid-uES1hUVDdd .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uES1hUVDdd .container {
    padding: 0 20px;
  }
}
.cid-uES1hUVDdd .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-uES1hUVDdd .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-uES1hUVDdd .mbr-section-title {
  color: #1d1d1d;
}
.cid-uES1hUVDdd .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-uES1hUVDdd .mbr-section-title,
.cid-uES1hUVDdd .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-uES1hVp4VN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-uES1hVp4VN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hVp4VN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hVp4VN .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-uES1hVp4VN .container-fluid {
    padding: 0 20px;
  }
}
.cid-uES1hVp4VN .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uES1hVp4VN .container {
    padding: 0 20px;
  }
}
.cid-uES1hVp4VN .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-uES1hVp4VN .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-uES1hVp4VN .mbr-section-title {
  color: #1d1d1d;
}
.cid-uES1hVp4VN .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-uES1hVp4VN .mbr-section-title,
.cid-uES1hVp4VN .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uES1hVSWS1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uES1hVSWS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hVSWS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hVSWS1 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uES1hVSWS1 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uES1hVSWS1 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uES1hVSWS1 .container {
    padding: 0 20px;
  }
}
.cid-uES1hVSWS1 .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uES1hVSWS1 .card {
  padding: 0;
  border-radius: 0;
}
.cid-uES1hVSWS1 .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-uES1hVSWS1 .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uES1hVSWS1 .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-uES1hVSWS1 .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uES1hVSWS1 .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-uES1hVSWS1 .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-uES1hVSWS1 .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-uES1hVSWS1 .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uES1hVSWS1 .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uES1hVSWS1 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uES1hVSWS1 .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-uES1hVSWS1 .mbr-text {
  color: #000000;
}
.cid-uES1hVSWS1 .mbr-section-title,
.cid-uES1hVSWS1 .mbr-section-btn {
  color: #018508;
}
.cid-uES1hWntfv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fcfbf5;
}
.cid-uES1hWntfv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uES1hWntfv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uES1hWntfv .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-uES1hWntfv .container-fluid {
    padding: 0 20px;
  }
}
.cid-uES1hWntfv .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uES1hWntfv .container {
    padding: 0 20px;
  }
}
.cid-uES1hWntfv .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-uES1hWntfv .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-uES1hWntfv .mbr-section-title {
  color: #1d1d1d;
}
.cid-uES1hWntfv .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-uES1hWntfv .mbr-section-title,
.cid-uES1hWntfv .mbr-section-btn {
  text-align: center;
  color: #018508;
}
.cid-uES1hWR4zT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fcfbf5;
}
.cid-uES1hWR4zT .mbr-section-title {
  text-align: left;
}
.cid-uES1hWR4zT .mbr-text,
.cid-uES1hWR4zT .mbr-section-btn {
  text-align: center;
}
.cid-uES1hWR4zT .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uES1hXonro {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-uES1hXonro .mbr-section-title {
  text-align: left;
}
.cid-uES1hXonro .mbr-text,
.cid-uES1hXonro .mbr-section-btn {
  text-align: center;
}
.cid-uES1hXonro .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uES1hXYXMf {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uES1hXYXMf .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-uES1hXYXMf .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uES1hXYXMf .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uES1hXYXMf .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-uES1hXYXMf .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-uES1hXYXMf .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uES1hXYXMf .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uES1hXYXMf .input-group-btn {
  padding-left: 0;
}
.cid-uES1hXYXMf .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uES1hXYXMf .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uES1hXYXMf .mbr-text {
  color: #444;
}
.cid-uES1hXYXMf h5 {
  margin-bottom: 0;
}
.cid-uES1hXYXMf .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uES1hXYXMf .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uES1hXYXMf .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uES1hXYXMf .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uES1hXYXMf .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uES1hXYXMf .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uES1hXYXMf .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uES1hXYXMf .social-list a:hover {
  opacity: 0.4;
}
.cid-uES1hXYXMf .media-container-row > div {
  padding: 0px;
}
.cid-uES1hXYXMf .text2 {
  color: #000000;
  text-align: left;
}
.cid-uES1hXYXMf .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uES1hXYXMf .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uES1hXYXMf .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uES1hXYXMf .social-list,
  .cid-uES1hXYXMf .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uES1hXYXMf h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uES1hXYXMf .form-group {
    max-width: 180px;
  }
}
.cid-uES1hXYXMf .links span {
  color: #9e9e9e;
}
.cid-uES1hXYXMf .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-uES1hXYXMf .logo-title {
  text-align: center;
}
.cid-uES1hXYXMf .logo-title,
.cid-uES1hXYXMf .logo {
  color: #000000;
}
.cid-uES1hXYXMf .group-title DIV {
  text-align: center;
}
.cid-uES1hYXLF4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uES1hYXLF4 .mbr-section-title {
  text-align: left;
}
.cid-uES1hYXLF4 .mbr-text,
.cid-uES1hYXLF4 .mbr-section-btn {
  text-align: center;
}
.cid-uES1hYXLF4 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uES1hZu9X5 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-uES1hZu9X5 .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-uES1hZu9X5 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-uES1hZu9X5 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uES1hZu9X5 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-uES1hZu9X5 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uES1hZu9X5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uES1hZu9X5 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-uES1hZu9X5 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uES1hZu9X5 .navbar.collapsed.opened .navbar-collapse.show,
.cid-uES1hZu9X5 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-uES1hZu9X5 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-uES1hZu9X5 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-uES1hZu9X5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uES1hZu9X5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uES1hZu9X5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uES1hZu9X5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uES1hZu9X5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uES1hZu9X5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uES1hZu9X5 .navbar {
    flex-wrap: nowrap;
  }
  .cid-uES1hZu9X5 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uES1hZu9X5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uES1hZu9X5 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-uES1hZu9X5 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-uES1hZu9X5 .navbar.opened .navbar-collapse.show,
  .cid-uES1hZu9X5 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-uES1hZu9X5 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-uES1hZu9X5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uES1hZu9X5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uES1hZu9X5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uES1hZu9X5 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uES1hZu9X5 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-uES1hZu9X5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uES1hZu9X5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-uES1hZu9X5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-uES1hZu9X5 .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-uES1hZu9X5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uES1hZu9X5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uES1hZu9X5 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uES1hZu9X5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uES1hZu9X5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uES1hZu9X5 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uES1hZu9X5 .dropdown-item.active,
.cid-uES1hZu9X5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uES1hZu9X5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uES1hZu9X5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uES1hZu9X5 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uES1hZu9X5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-uES1hZu9X5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uES1hZu9X5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uES1hZu9X5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uES1hZu9X5 .navbar-buttons {
  text-align: center;
}
.cid-uES1hZu9X5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uES1hZu9X5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uES1hZu9X5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uES1hZu9X5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uES1hZu9X5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uES1hZu9X5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uES1hZu9X5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uES1hZu9X5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uES1hZu9X5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uES1hZu9X5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uES1hZu9X5 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uES1hZu9X5 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-uES1hZu9X5 a.nav-link:focus {
  outline: none;
}
.cid-uES1hZu9X5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uES1hZu9X5 .nav-link:hover,
.cid-uES1hZu9X5 .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uES1hZu9X5 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-uES1hZu9X5 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uFmgyhjQVN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/aedes-albopictus-adulto-800x530.webp");
}
.cid-uFmgyhjQVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFmgyhjQVN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFmgyhjQVN img {
  border-radius: 3rem;
}
.cid-uFmgyhjQVN .row {
  align-items: center;
}
.cid-uFmgyhjQVN .mbr-section-title {
  color: #ffffff;
}
.cid-uFmgyhjQVN .mbr-text,
.cid-uFmgyhjQVN .mbr-section-btn {
  color: #ffffff;
}
.cid-uFmgyhQJM8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uFmgyhQJM8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFmgyhQJM8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFmgyhQJM8 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uFmgyhQJM8 .container-fluid {
    padding: 0 12px;
  }
}
.cid-uFmgyhQJM8 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFmgyhQJM8 .container {
    padding: 0 20px;
  }
}
.cid-uFmgyhQJM8 .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uFmgyhQJM8 .card {
  padding: 0;
}
.cid-uFmgyhQJM8 .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uFmgyhQJM8 .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-uFmgyhQJM8 .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-uFmgyhQJM8 .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFmgyhQJM8 .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uFmgyhQJM8 .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFmgyhQJM8 .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFmgyhQJM8 .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uFmgyhQJM8 .mbr-section-title {
  color: #1d1d1d;
}
.cid-uFmgyhQJM8 .mbr-text {
  color: #000000;
}
.cid-uFmgyhQJM8 .mbr-section-title,
.cid-uFmgyhQJM8 .mbr-section-btn {
  color: #018508;
}
.cid-uFmgyieo7b {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uFmgyieo7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFmgyieo7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFmgyieo7b .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uFmgyieo7b .container-fluid {
    padding: 0 12px;
  }
}
.cid-uFmgyieo7b .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFmgyieo7b .container {
    padding: 0 20px;
  }
}
.cid-uFmgyieo7b .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uFmgyieo7b .card {
  padding: 0;
}
.cid-uFmgyieo7b .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uFmgyieo7b .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-uFmgyieo7b .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-uFmgyieo7b .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-uFmgyieo7b .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-uFmgyieo7b .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFmgyieo7b .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uFmgyieo7b .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFmgyieo7b .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFmgyieo7b .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uFmgyieo7b .mbr-section-title {
  color: #1d1d1d;
}
.cid-uFmgyieo7b .mbr-text {
  color: #000000;
}
.cid-uFmgyieo7b .mbr-section-title,
.cid-uFmgyieo7b .mbr-section-btn {
  color: #018508;
}
.cid-uFmgyiCOiq {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uFmgyiCOiq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFmgyiCOiq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFmgyiCOiq .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uFmgyiCOiq .container-fluid {
    padding: 0 12px;
  }
}
.cid-uFmgyiCOiq .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFmgyiCOiq .container {
    padding: 0 20px;
  }
}
.cid-uFmgyiCOiq .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uFmgyiCOiq .card {
  padding: 0;
  border-radius: 0;
}
.cid-uFmgyiCOiq .card:first-child {
  border-right: 2px solid #24d22e;
}
.cid-uFmgyiCOiq .card:first-child .title-wrapper {
  padding: 64px;
  border-bottom: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uFmgyiCOiq .card:first-child .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-uFmgyiCOiq .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uFmgyiCOiq .card:first-child .image-wrap {
  height: 350px;
}
@media (max-width: 992px) {
  .cid-uFmgyiCOiq .card:first-child .image-wrap {
    height: 250px;
  }
}
.cid-uFmgyiCOiq .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 100%;
}
.cid-uFmgyiCOiq .card:last-child {
  padding: 64px 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFmgyiCOiq .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uFmgyiCOiq .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFmgyiCOiq .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-uFmgyiCOiq .mbr-text {
  color: #000000;
}
.cid-uFmgyiCOiq .mbr-section-title,
.cid-uFmgyiCOiq .mbr-section-btn {
  color: #018508;
}
.cid-uFmgyiZ0Dt {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uFmgyiZ0Dt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFmgyiZ0Dt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFmgyiZ0Dt .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uFmgyiZ0Dt .container-fluid {
    padding: 0 12px;
  }
}
.cid-uFmgyiZ0Dt .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFmgyiZ0Dt .container {
    padding: 0 20px;
  }
}
.cid-uFmgyiZ0Dt .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uFmgyiZ0Dt .card {
  padding: 0;
}
.cid-uFmgyiZ0Dt .card:first-child .image-wrap {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uFmgyiZ0Dt .card:first-child .image-wrap {
    min-height: 250px;
  }
}
.cid-uFmgyiZ0Dt .card:first-child .image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 100%;
  border: 2px solid #24d22e;
  border-bottom: 0;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-uFmgyiZ0Dt .card:nth-child(2) .image-wrap {
  height: 100%;
  border-right: 2px solid #24d22e;
  border-right: 0;
  border-left: 2px solid #24d22e;
}
.cid-uFmgyiZ0Dt .card:nth-child(2) .image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 2px solid #24d22e;
}
.cid-uFmgyiZ0Dt .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFmgyiZ0Dt .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uFmgyiZ0Dt .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFmgyiZ0Dt .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFmgyiZ0Dt .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uFmgyiZ0Dt .mbr-section-title {
  color: #1d1d1d;
}
.cid-uFmgyiZ0Dt .mbr-text {
  color: #000000;
}
.cid-uFmgyiZ0Dt .mbr-section-title,
.cid-uFmgyiZ0Dt .mbr-section-btn {
  color: #018508;
}
.cid-uFmgyjp9DK {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fcfbf5;
}
.cid-uFmgyjp9DK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFmgyjp9DK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFmgyjp9DK .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-uFmgyjp9DK .container-fluid {
    padding: 0 12px;
  }
}
.cid-uFmgyjp9DK .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uFmgyjp9DK .container {
    padding: 0 20px;
  }
}
.cid-uFmgyjp9DK .row {
  border-top: 2px solid #24d22e;
  border-bottom: 2px solid #24d22e;
  margin-top: -2px;
}
.cid-uFmgyjp9DK .card {
  padding: 0;
}
.cid-uFmgyjp9DK .card:first-child .image-wrap {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #24d22e;
  border-left: 0;
  border-right: 2px solid #24d22e;
}
@media (max-width: 992px) {
  .cid-uFmgyjp9DK .card:first-child .image-wrap {
    height: 280px;
  }
}
.cid-uFmgyjp9DK .card:first-child .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 100%;
}
.cid-uFmgyjp9DK .card:last-child {
  padding: 0 100px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFmgyjp9DK .card:last-child {
    padding: 50px 20px;
  }
}
.cid-uFmgyjp9DK .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFmgyjp9DK .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uFmgyjp9DK .text-wrapper .mbr-text {
    margin-bottom: 50px;
  }
}
.cid-uFmgyjp9DK .mbr-section-title {
  color: #1d1d1d;
}
.cid-uFmgyjp9DK .mbr-text {
  color: #000000;
}
.cid-uFmgyjp9DK .mbr-section-title,
.cid-uFmgyjp9DK .mbr-section-btn {
  color: #018508;
}
.cid-uFmgyjPO6q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #018508;
}
.cid-uFmgyjPO6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFmgyjPO6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFmgyjPO6q .container-fluid {
  padding: 0 64px;
}
@media (max-width: 768px) {
  .cid-uFmgyjPO6q .container-fluid {
    padding: 0 20px;
  }
}
.cid-uFmgyjPO6q .container-fluid .row {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uFmgyjPO6q .container {
    padding: 0 20px;
  }
}
.cid-uFmgyjPO6q .title-wrapper .mbr-section-title {
  margin-bottom: 34px;
}
.cid-uFmgyjPO6q .title-wrapper .mbr-text {
  margin-bottom: 34px;
}
.cid-uFmgyjPO6q .mbr-section-title {
  color: #1d1d1d;
}
.cid-uFmgyjPO6q .mbr-text {
  color: #706f6d;
  text-align: center;
}
.cid-uFmgyjPO6q .mbr-section-title,
.cid-uFmgyjPO6q .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uFmgykgKbB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uFmgykgKbB .mbr-section-title {
  text-align: left;
}
.cid-uFmgykgKbB .mbr-text,
.cid-uFmgykgKbB .mbr-section-btn {
  text-align: center;
}
.cid-uFmgykgKbB .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uFmgykKzx1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #24d22e;
}
.cid-uFmgykKzx1 .mbr-section-title {
  text-align: left;
}
.cid-uFmgykKzx1 .mbr-text,
.cid-uFmgykKzx1 .mbr-section-btn {
  text-align: center;
}
.cid-uFmgykKzx1 .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uFmgyleUP2 {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #fcfbf5;
}
.cid-uFmgyleUP2 .listico {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-uFmgyleUP2 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uFmgyleUP2 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uFmgyleUP2 .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-uFmgyleUP2 .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
.cid-uFmgyleUP2 .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uFmgyleUP2 .form-group {
  padding-right: 0;
  max-width: 220px;
}
.cid-uFmgyleUP2 .input-group-btn {
  padding-left: 0;
}
.cid-uFmgyleUP2 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uFmgyleUP2 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-uFmgyleUP2 .mbr-text {
  color: #444;
}
.cid-uFmgyleUP2 h5 {
  margin-bottom: 0;
}
.cid-uFmgyleUP2 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uFmgyleUP2 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uFmgyleUP2 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uFmgyleUP2 .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFmgyleUP2 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uFmgyleUP2 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uFmgyleUP2 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uFmgyleUP2 .social-list a:hover {
  opacity: 0.4;
}
.cid-uFmgyleUP2 .media-container-row > div {
  padding: 0px;
}
.cid-uFmgyleUP2 .text2 {
  color: #000000;
  text-align: left;
}
.cid-uFmgyleUP2 .group-title {
  text-align: center;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uFmgyleUP2 .links {
  color: #000000;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uFmgyleUP2 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uFmgyleUP2 .social-list,
  .cid-uFmgyleUP2 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uFmgyleUP2 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uFmgyleUP2 .form-group {
    max-width: 180px;
  }
}
.cid-uFmgyleUP2 .links span {
  color: #9e9e9e;
}
.cid-uFmgyleUP2 .logo-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-uFmgyleUP2 .logo-title {
  text-align: center;
}
.cid-uFmgyleUP2 .logo-title,
.cid-uFmgyleUP2 .logo {
  color: #000000;
}
.cid-uFmgyleUP2 .group-title DIV {
  text-align: center;
}
.cid-uFmgylT9DK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uFmgylT9DK .mbr-section-title {
  text-align: left;
}
.cid-uFmgylT9DK .mbr-text,
.cid-uFmgylT9DK .mbr-section-btn {
  text-align: center;
}
.cid-uFmgylT9DK .mbr-iconfont {
  -webkit-order: -1;
  order: -1;
  padding-right: 0.5rem;
  padding-left: 0rem !important;
}
.cid-uFmgymkqVx .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #fcfbf5;
}
.cid-uFmgymkqVx .navbar.opened {
  transition: all 0.3s;
  background: #fcfbf5 !important;
}
.cid-uFmgymkqVx .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-uFmgymkqVx .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFmgymkqVx .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-uFmgymkqVx .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uFmgymkqVx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFmgymkqVx .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-uFmgymkqVx .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-uFmgymkqVx .navbar.collapsed.opened .navbar-collapse.show,
.cid-uFmgymkqVx .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-uFmgymkqVx .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-uFmgymkqVx .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-uFmgymkqVx .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uFmgymkqVx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFmgymkqVx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFmgymkqVx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uFmgymkqVx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFmgymkqVx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uFmgymkqVx .navbar {
    flex-wrap: nowrap;
  }
  .cid-uFmgymkqVx .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-uFmgymkqVx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFmgymkqVx .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-uFmgymkqVx .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-uFmgymkqVx .navbar.opened .navbar-collapse.show,
  .cid-uFmgymkqVx .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-uFmgymkqVx .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-uFmgymkqVx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uFmgymkqVx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFmgymkqVx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFmgymkqVx .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uFmgymkqVx .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-uFmgymkqVx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFmgymkqVx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-uFmgymkqVx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-uFmgymkqVx .navbar.navbar-short {
  background: #fcfbf5 !important;
  min-height: 60px;
}
.cid-uFmgymkqVx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uFmgymkqVx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFmgymkqVx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFmgymkqVx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFmgymkqVx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFmgymkqVx .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uFmgymkqVx .dropdown-item.active,
.cid-uFmgymkqVx .dropdown-item:active {
  background-color: transparent;
}
.cid-uFmgymkqVx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFmgymkqVx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFmgymkqVx .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFmgymkqVx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbf5;
}
.cid-uFmgymkqVx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFmgymkqVx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFmgymkqVx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFmgymkqVx .navbar-buttons {
  text-align: center;
}
.cid-uFmgymkqVx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFmgymkqVx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0a1c44;
}
.cid-uFmgymkqVx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFmgymkqVx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFmgymkqVx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFmgymkqVx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFmgymkqVx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFmgymkqVx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFmgymkqVx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFmgymkqVx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFmgymkqVx .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uFmgymkqVx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-uFmgymkqVx a.nav-link:focus {
  outline: none;
}
.cid-uFmgymkqVx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFmgymkqVx .nav-link:hover,
.cid-uFmgymkqVx .dropdown-item:hover {
  color: #000000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFmgymkqVx .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-uFmgymkqVx .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
