body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urhCphHv5L {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #dbe7f6;
}
.cid-urhCphHv5L .mbr-fallback-image.disabled {
  display: none;
}
.cid-urhCphHv5L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urhCphHv5L .number-wrap {
  color: #555555;
  text-align: center;
}
.cid-urhCphHv5L .number {
  color: #000000;
}
.cid-urhCphHv5L .period {
  display: block;
}
.cid-urhCphHv5L .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-urhCphHv5L .period {
    font-size: 0.8rem;
  }
}
.cid-urhCphHv5L .btn {
  height: 100%;
  margin: 0;
}
.cid-urhCphHv5L .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-urhCphHv5L .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-urhCphHv5L .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-urhCphHv5L .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-urhCphHv5L .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uEtcj5HUWW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/img-20220806.jpg");
}
.cid-uEtcj5HUWW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEtcj5HUWW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEtcj5HUWW .mbr-section-title {
  color: #e43f3f;
}
.cid-uCzKWSysfr {
  background-color: #dbe7f6;
}
.cid-uCzKWSysfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCzKWSysfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCzKWSysfr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCzKWSysfr .row {
  flex-direction: row-reverse;
}
.cid-uCzKWSysfr img {
  width: 100%;
}
.cid-uCzMWAnlyd {
  background-image: url("../../../assets/images/img-20220808.jpeg");
}
.cid-uCzMWAnlyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCzMWAnlyd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvNJO5TJGI {
  background-image: url("../../../assets/images/img-20220806.jpg");
}
.cid-uvNJO5TJGI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvNJO5TJGI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqIPMJs0mb {
  background-image: url("../../../assets/images/img-20230806.jpg");
}
.cid-uqIPMJs0mb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqIPMJs0mb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urEt8TG0gJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-20220807.jpeg");
}
.cid-urEt8TG0gJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-urEt8TG0gJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urEt8TG0gJ img {
  object-fit: cover;
  width: 300px;
  margin: 0 auto;
  height: 300px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-urEt8TG0gJ img {
    width: 200px;
    height: 200px;
  }
}
.cid-urEt8TG0gJ a {
  text-decoration: underline;
  font-weight: bold;
}
.cid-urEsax0F2q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #8caff0;
}
.cid-urEsax0F2q .mbr-fallback-image.disabled {
  display: none;
}
.cid-urEsax0F2q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqIQPkv3SU {
  background-image: url("../../../assets/images/img-20220806.jpg");
}
.cid-uqIQPkv3SU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqIQPkv3SU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqIQPkv3SU .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uqIQPkv3SU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqIQPkv3SU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uqIQPkv3SU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uqIQPkv3SU .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqHss6DDAN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d3d3d3;
}
.cid-uqHss6DDAN .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq1G7BiBRA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uq1G7BiBRA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq1G7BiBRA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uq1HgjQnl5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uq1HgjQnl5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq1HgjQnl5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqI2F9ocDX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uqI38tqf2T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqI38tqf2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqI38tqf2T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqI38tqf2T .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqI38tqf2T .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqI38tqf2T .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqI38tqf2T .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqI38tqf2T .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urtXEwJLzo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-urtXEwJLzo .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-urtXEwJLzo .mbr-text {
  text-align: left;
}
.cid-urtzxrogAB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-urtzxrogAB .mbr-fallback-image.disabled {
  display: none;
}
.cid-urtzxrogAB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urtzxrogAB .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-urtzxrogAB .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-urtzxrogAB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urtzxrogAB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-urtzxrogAB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-urtzxrogAB .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-urtzxrogAB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-urtzxrogAB .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-urtzxrogAB .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urtzxrogAB .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-urtzxrogAB .card-title {
  text-align: left;
}
.cid-urtDZoPgbJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-urtDZoPgbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-urtDZoPgbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urtDZoPgbJ .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-urtDZoPgbJ .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-urtDZoPgbJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urtDZoPgbJ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-urtDZoPgbJ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-urtDZoPgbJ .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-urtDZoPgbJ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-urtDZoPgbJ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-urtDZoPgbJ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urtDZoPgbJ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-usvaqsg7NR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-usvaqsg7NR .mbr-fallback-image.disabled {
  display: none;
}
.cid-usvaqsg7NR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usvaqsg7NR .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usvaqsg7NR .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-usvaqsg7NR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-usvaqsg7NR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-usvaqsg7NR .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-usvaqsg7NR .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-usvaqsg7NR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-usvaqsg7NR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-usvaqsg7NR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-usvaqsg7NR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-utwJ7fwZ8K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-utwJ7fwZ8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-utwJ7fwZ8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utwJ7fwZ8K .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-utwJ7fwZ8K .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-utwJ7fwZ8K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utwJ7fwZ8K .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #000000;
  transition: all 0.3s;
}
.cid-utwJ7fwZ8K .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #000000;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-utwJ7fwZ8K .social-row .soc-item:hover {
  background-color: #000000;
}
.cid-utwJ7fwZ8K .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utwJ7fwZ8K .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-utwJ7fwZ8K .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utwJ7fwZ8K .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvdZoGZ1yB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uvdZoGZ1yB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvdZoGZ1yB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvdZoGZ1yB .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvdZoGZ1yB .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uvdZoGZ1yB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvdZoGZ1yB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvdZoGZ1yB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvdZoGZ1yB .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvdZoGZ1yB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvdZoGZ1yB .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvdZoGZ1yB .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvdZoGZ1yB .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uvprQPmh00 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uvprQPmh00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvprQPmh00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvprQPmh00 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uvprQPmh00 .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uvprQPmh00 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvprQPmh00 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uvprQPmh00 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uvprQPmh00 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uvprQPmh00 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uvprQPmh00 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uvprQPmh00 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvprQPmh00 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-urtGge8hFO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-urtGge8hFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-urtGge8hFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urtGge8hFO .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-urtGge8hFO .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-urtGge8hFO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urtGge8hFO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-urtGge8hFO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-urtGge8hFO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-urtGge8hFO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-urtGge8hFO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-urtGge8hFO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urtGge8hFO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwxquvXua6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uwxquvXua6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwxquvXua6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwxquvXua6 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwxquvXua6 .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uwxquvXua6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwxquvXua6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwxquvXua6 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwxquvXua6 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwxquvXua6 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwxquvXua6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwxquvXua6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwxquvXua6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-urtGfKJDLc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-urtGfKJDLc .mbr-fallback-image.disabled {
  display: none;
}
.cid-urtGfKJDLc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urtGfKJDLc .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-urtGfKJDLc .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-urtGfKJDLc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urtGfKJDLc .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-urtGfKJDLc .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-urtGfKJDLc .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-urtGfKJDLc .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-urtGfKJDLc .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-urtGfKJDLc .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urtGfKJDLc .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uwLJD82Ev6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uwLJD82Ev6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLJD82Ev6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLJD82Ev6 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uwLJD82Ev6 .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uwLJD82Ev6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwLJD82Ev6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uwLJD82Ev6 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uwLJD82Ev6 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uwLJD82Ev6 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwLJD82Ev6 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uwLJD82Ev6 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwLJD82Ev6 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-urE9AhHtsq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-urEltyehoO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-urEltyehoO .mbr-fallback-image.disabled {
  display: none;
}
.cid-urEltyehoO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urEltyehoO .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-urEltyehoO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-urEltyehoO .text-wrapper {
    padding: 2rem;
  }
}
.cid-urEltyehoO .mbr-description {
  text-align: left;
}
.cid-uqIWpULV2d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uqIWpULV2d .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uqIWpULV2d .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uqIWpULV2d .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uqIWpULV2d .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqIWpULV2d .mbr-text {
  color: #424a4d;
}
.cid-urEk2Y00F4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-urEk2Y00F4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urEk2Y00F4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urEk2Y00F4 .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-urEk2Y00F4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-urEk2Y00F4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-urEk2Y00F4 .mbr-description {
  text-align: left;
}
.cid-uroHQaTnbi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uroHQaTnbi .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uroHQaTnbi .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uroHQaTnbi .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uroHQaTnbi .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uroHQaTnbi .mbr-text {
  color: #424a4d;
}
.cid-urElMc7QU1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-urElMc7QU1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urElMc7QU1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urElMc7QU1 .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-urElMc7QU1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-urElMc7QU1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-urElMc7QU1 .mbr-description {
  text-align: left;
}
.cid-uroHQ2Nw42 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uroHQ2Nw42 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uroHQ2Nw42 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uroHQ2Nw42 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uroHQ2Nw42 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uroHQ2Nw42 .mbr-text {
  color: #424a4d;
}
.cid-urElNNsDUQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-urElNNsDUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-urElNNsDUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urElNNsDUQ .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-urElNNsDUQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-urElNNsDUQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-urElNNsDUQ .mbr-description {
  text-align: left;
}
.cid-uroMoi7sTh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uroMoi7sTh .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uroMoi7sTh .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uroMoi7sTh .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uroMoi7sTh .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uroMoi7sTh .mbr-text {
  color: #424a4d;
}
.cid-urElQ5jaOe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-urElQ5jaOe .mbr-fallback-image.disabled {
  display: none;
}
.cid-urElQ5jaOe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urElQ5jaOe .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-urElQ5jaOe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-urElQ5jaOe .text-wrapper {
    padding: 2rem;
  }
}
.cid-urElQ5jaOe .mbr-description {
  text-align: left;
}
.cid-uroPIFeVNT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uroPIFeVNT .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uroPIFeVNT .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uroPIFeVNT .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uroPIFeVNT .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uroPIFeVNT .mbr-text {
  color: #424a4d;
}
.cid-utwmbgBBuW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-utwmbgBBuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-utwmbgBBuW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-utwmbgBBuW .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-utwmbgBBuW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-utwmbgBBuW .text-wrapper {
    padding: 2rem;
  }
}
.cid-utwmbgBBuW .mbr-description {
  text-align: left;
}
.cid-uuADNRJriR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uuADNRJriR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuADNRJriR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuADNRJriR .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuADNRJriR .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuADNRJriR .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuADNRJriR .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuADNRJriR .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuADNRJriR .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuADNRJriR .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuADNRJriR .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuADNRJriR .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuADNRJriR .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuADNRJriR .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuADNRJriR .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuADNRJriR .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuADNRJriR .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuADNRJriR [class^="socicon-"]:before,
.cid-uuADNRJriR [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuADNRJriR .mbr-section-title,
.cid-uuADNRJriR .mbr-social-likes {
  text-align: left;
}
.cid-utwjlY5VY8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-utwjlY5VY8 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-utwjlY5VY8 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-utwjlY5VY8 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-utwjlY5VY8 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuAt1xuoMx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uuAt1xuoMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuAt1xuoMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uuAt1xuoMx .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uuAt1xuoMx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uuAt1xuoMx .text-wrapper {
    padding: 2rem;
  }
}
.cid-uuAt1xuoMx .mbr-description {
  text-align: left;
}
.cid-uroQS4DhHt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uroQS4DhHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uroQS4DhHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uroQS4DhHt [class^="socicon-"]:before,
.cid-uroQS4DhHt [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uroQS4DhHt .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #84c774;
  border-width: 2px;
  transition: all .3s;
  border-color: #84c774;
}
.cid-uroQS4DhHt .btn-social:hover {
  background: #84c774;
}
.cid-uroQS4DhHt .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-uroQS4DhHt .mbr-section-title,
.cid-uroQS4DhHt .mbr-social-likes {
  text-align: left;
}
.cid-uuAwY6QNgu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uuAwY6QNgu .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uuAwY6QNgu .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uuAwY6QNgu .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uuAwY6QNgu .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwLqagmwE0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uwLqagmwE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLqagmwE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uwLqagmwE0 .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uwLqagmwE0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uwLqagmwE0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uwLqagmwE0 .mbr-description {
  text-align: left;
}
.cid-uwLrDe2WIM {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uwLrDe2WIM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLrDe2WIM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLsMWnaci {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uwLsMWnaci .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uwLsMWnaci .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uwLsMWnaci .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uwLsMWnaci .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBUjqtw3kj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uBUjqtw3kj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBUjqtw3kj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBUjqtw3kj .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uBUjqtw3kj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBUjqtw3kj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uBUjqtw3kj .mbr-description {
  text-align: left;
}
.cid-uBUkLZ5zhF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uBUkLZ5zhF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBUkLZ5zhF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBUldLfQA5 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #84c774;
}
.cid-uBUldLfQA5 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uBUldLfQA5 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uBUldLfQA5 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uBUldLfQA5 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDTSHw2XWy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDTSHw2XWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDTSHw2XWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDTSHw2XWy .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDTSHw2XWy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDTSHw2XWy .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDTSHw2XWy .mbr-description {
  text-align: left;
}
.cid-uDTUddj8oe {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uDTUddj8oe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDTUddj8oe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDTUQaMADV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uDTUQaMADV .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDTUQaMADV .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDTUQaMADV .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDTUQaMADV .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqHV157o2Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #84c774;
}
.cid-uqHV157o2Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqHV157o2Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqHV157o2Y .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-uqHV157o2Y .plan-body {
  padding-bottom: 2rem;
}
.cid-uqHV157o2Y .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uqHV157o2Y .price {
  color: #84c774;
}
.cid-uqHV157o2Y .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-uqHV157o2Y .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-uqHV157o2Y .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-uqHV157o2Y .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-uqHV157o2Y .plan {
    margin-bottom: 2rem;
  }
}
.cid-uqIN4YhjiG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqIEy7ltUi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uqIHc7LP8a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqIHc7LP8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqIHc7LP8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqIHc7LP8a .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqIHc7LP8a .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqIHc7LP8a .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqIHc7LP8a .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqIHc7LP8a .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqIkVYGqae {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uqIkVYGqae .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqIkVYGqae .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqIkVYGqae .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #000000;
  margin-bottom: 2rem;
}
.cid-uqIkVYGqae .card-wrapper {
  padding: 3rem;
  background: #84c774;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uqIkVYGqae .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqIkVYGqae .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqIANJ58Ey {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEsrgANZby {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #e43f3f;
}
.cid-uEsrgANZby .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsrgANZby .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHoAgztE5P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e43f3f;
}
.cid-uHoAgztE5P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHoAgztE5P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEsYBnLt98 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsYBnLt98 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsYBnLt98 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsYBnLt98 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsYBnLt98 .row {
  flex-direction: row-reverse;
}
.cid-uEsYBnLt98 img {
  width: 100%;
}
.cid-uEsuafScw3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uEsuafScw3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsuafScw3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsuafScw3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsuafScw3 .row {
  flex-direction: row-reverse;
}
.cid-uEsuafScw3 img {
  width: 100%;
}
.cid-uEsvZSgQAe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsvZSgQAe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsvZSgQAe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsvZSgQAe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsvZSgQAe .row {
  flex-direction: row-reverse;
}
.cid-uEsvZSgQAe img {
  width: 100%;
}
.cid-uEsxhTxLV9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsxhTxLV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsxhTxLV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsxhTxLV9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsxhTxLV9 .row {
  flex-direction: row-reverse;
}
.cid-uEsxhTxLV9 img {
  width: 100%;
}
.cid-uEsywzLeiU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsywzLeiU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsywzLeiU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsywzLeiU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsywzLeiU .row {
  flex-direction: row-reverse;
}
.cid-uEsywzLeiU img {
  width: 100%;
}
.cid-uEszKs7t0j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEszKs7t0j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEszKs7t0j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEszKs7t0j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEszKs7t0j .row {
  flex-direction: row-reverse;
}
.cid-uEszKs7t0j img {
  width: 100%;
}
.cid-uEsPslMH6Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsPslMH6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsPslMH6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsPslMH6Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsPslMH6Z .row {
  flex-direction: row-reverse;
}
.cid-uEsPslMH6Z img {
  width: 100%;
}
.cid-uEsPt4Pf88 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsPt4Pf88 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsPt4Pf88 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsPt4Pf88 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsPt4Pf88 .row {
  flex-direction: row-reverse;
}
.cid-uEsPt4Pf88 img {
  width: 100%;
}
.cid-uEsPtLBpao {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsPtLBpao .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsPtLBpao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsPtLBpao .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsPtLBpao .row {
  flex-direction: row-reverse;
}
.cid-uEsPtLBpao img {
  width: 100%;
}
.cid-uEsT2yeEsY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsT2yeEsY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsT2yeEsY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsT2yeEsY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsT2yeEsY .row {
  flex-direction: row-reverse;
}
.cid-uEsT2yeEsY img {
  width: 100%;
}
.cid-uEsT3l58Fc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsT3l58Fc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsT3l58Fc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsT3l58Fc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsT3l58Fc .row {
  flex-direction: row-reverse;
}
.cid-uEsT3l58Fc img {
  width: 100%;
}
.cid-uEsT4dx18y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsT4dx18y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsT4dx18y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsT4dx18y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsT4dx18y .row {
  flex-direction: row-reverse;
}
.cid-uEsT4dx18y img {
  width: 100%;
}
.cid-uEsT51aJl3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsT51aJl3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsT51aJl3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsT51aJl3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsT51aJl3 .row {
  flex-direction: row-reverse;
}
.cid-uEsT51aJl3 img {
  width: 100%;
}
.cid-uEsYzPPSym {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uEsYzPPSym .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEsYzPPSym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEsYzPPSym .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEsYzPPSym .row {
  flex-direction: row-reverse;
}
.cid-uEsYzPPSym img {
  width: 100%;
}
.cid-uHnRoQCo8z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHnRoQCo8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHnRoQCo8z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHnRoQCo8z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHnRoQCo8z .row {
  flex-direction: row-reverse;
}
.cid-uHnRoQCo8z img {
  width: 100%;
}
.cid-uHo6VfWQOn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo6VfWQOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo6VfWQOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo6VfWQOn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo6VfWQOn .row {
  flex-direction: row-reverse;
}
.cid-uHo6VfWQOn img {
  width: 100%;
}
.cid-uHo6WNPeOo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo6WNPeOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo6WNPeOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo6WNPeOo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo6WNPeOo .row {
  flex-direction: row-reverse;
}
.cid-uHo6WNPeOo img {
  width: 100%;
}
.cid-uHo6XlQ2su {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo6XlQ2su .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo6XlQ2su .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo6XlQ2su .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo6XlQ2su .row {
  flex-direction: row-reverse;
}
.cid-uHo6XlQ2su img {
  width: 100%;
}
.cid-uHo6XJtXqG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo6XJtXqG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo6XJtXqG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo6XJtXqG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo6XJtXqG .row {
  flex-direction: row-reverse;
}
.cid-uHo6XJtXqG img {
  width: 100%;
}
.cid-uHo6YeiIDZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo6YeiIDZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo6YeiIDZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo6YeiIDZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo6YeiIDZ .row {
  flex-direction: row-reverse;
}
.cid-uHo6YeiIDZ img {
  width: 100%;
}
.cid-uHo6YK8Z4o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo6YK8Z4o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo6YK8Z4o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo6YK8Z4o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo6YK8Z4o .row {
  flex-direction: row-reverse;
}
.cid-uHo6YK8Z4o img {
  width: 100%;
}
.cid-uHo6Zi9PHN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo6Zi9PHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo6Zi9PHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo6Zi9PHN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo6Zi9PHN .row {
  flex-direction: row-reverse;
}
.cid-uHo6Zi9PHN img {
  width: 100%;
}
.cid-uHo705Kddn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo705Kddn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo705Kddn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo705Kddn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo705Kddn .row {
  flex-direction: row-reverse;
}
.cid-uHo705Kddn img {
  width: 100%;
}
.cid-uHo70CtlH7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHo70CtlH7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHo70CtlH7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHo70CtlH7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uHo70CtlH7 .row {
  flex-direction: row-reverse;
}
.cid-uHo70CtlH7 img {
  width: 100%;
}
.cid-uHRVRdtRxL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uHRVRdtRxL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHRVRdtRxL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHRVRdtRxL .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uHRVRdtRxL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHRVRdtRxL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uHRVRdtRxL .mbr-description {
  text-align: left;
}
.cid-uC6ki8paYE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6ki8paYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6ki8paYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6ki8paYE .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6ki8paYE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6ki8paYE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6ki8paYE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6ki8paYE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6ki8paYE .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6ki8paYE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC0RirHkKI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC0RirHkKI .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC0RirHkKI .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC0RirHkKI .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC0RirHkKI .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6l1ibcjD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6l1ibcjD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6l1ibcjD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6l1ibcjD .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6l1ibcjD .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6l1ibcjD .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6l1ibcjD .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6l1ibcjD .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6l1ibcjD .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6l1ibcjD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6lCraMJg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uC6lCraMJg .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6lCraMJg .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6lCraMJg .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6lCraMJg .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6ntPI4iq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6ntPI4iq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6ntPI4iq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6ntPI4iq .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6ntPI4iq .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6ntPI4iq .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6ntPI4iq .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6ntPI4iq .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6ntPI4iq .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6ntPI4iq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6mTAWq2k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6mTAWq2k .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6mTAWq2k .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6mTAWq2k .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6mTAWq2k .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6o2LSGMW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6o2LSGMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6o2LSGMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6o2LSGMW .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6o2LSGMW .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6o2LSGMW .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6o2LSGMW .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6o2LSGMW .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6o2LSGMW .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6o2LSGMW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6ozhZm4q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6ozhZm4q .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6ozhZm4q .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6ozhZm4q .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6ozhZm4q .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6qYcVU7J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6qYcVU7J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6qYcVU7J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6qYcVU7J .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6qYcVU7J .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6qYcVU7J .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6qYcVU7J .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6qYcVU7J .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6qYcVU7J .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6qYcVU7J .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6qnZooEA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6qnZooEA .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6qnZooEA .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6qnZooEA .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6qnZooEA .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6rJ3rs0D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6rJ3rs0D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6rJ3rs0D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6rJ3rs0D .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6rJ3rs0D .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6rJ3rs0D .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6rJ3rs0D .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6rJ3rs0D .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6rJ3rs0D .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6rJ3rs0D .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6rKigiTq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6rKigiTq .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6rKigiTq .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6rKigiTq .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6rKigiTq .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6tNWpXgE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6tNWpXgE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6tNWpXgE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6tNWpXgE .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6tNWpXgE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6tNWpXgE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6tNWpXgE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6tNWpXgE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6tNWpXgE .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6tNWpXgE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6sWx0wU5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6sWx0wU5 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6sWx0wU5 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6sWx0wU5 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6sWx0wU5 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6CLeXUnu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6CLeXUnu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6CLeXUnu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6CLeXUnu .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6CLeXUnu .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6CLeXUnu .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6CLeXUnu .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6CLeXUnu .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6CLeXUnu .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6CLeXUnu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6D8eLjgQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uC6D8eLjgQ .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6D8eLjgQ .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6D8eLjgQ .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6D8eLjgQ .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6GalPzp6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6GalPzp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6GalPzp6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6GalPzp6 .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6GalPzp6 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6GalPzp6 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6GalPzp6 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6GalPzp6 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6GalPzp6 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6GalPzp6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6Fob4trJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6Fob4trJ .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6Fob4trJ .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6Fob4trJ .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6Fob4trJ .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDTWDHzGgD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDTWDHzGgD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDTWDHzGgD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDTWDHzGgD .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDTWDHzGgD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDTWDHzGgD .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDTWDHzGgD .mbr-description {
  text-align: left;
}
.cid-uDTXn1F8Gd {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uDTXn1F8Gd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDTXn1F8Gd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDTWFP2R3s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uDTWFP2R3s .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDTWFP2R3s .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDTWFP2R3s .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDTWFP2R3s .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6GGD3kPY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-uC6GGD3kPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC6GGD3kPY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC6GGD3kPY .content-wrapper {
  background: #84c774;
}
@media (max-width: 991px) {
  .cid-uC6GGD3kPY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uC6GGD3kPY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uC6GGD3kPY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uC6GGD3kPY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uC6GGD3kPY .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uC6GGD3kPY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uC6GHY3B3A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uC6GHY3B3A .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uC6GHY3B3A .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uC6GHY3B3A .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uC6GHY3B3A .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urEFCinTdc {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-urEFCinTdc .mbr-fallback-image.disabled {
  display: none;
}
.cid-urEFCinTdc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
.cid-urhB8TuFWq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urhB8TuFWq nav.navbar {
  position: fixed;
}
.cid-urhB8TuFWq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urhB8TuFWq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urhB8TuFWq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urhB8TuFWq .dropdown-item:hover,
.cid-urhB8TuFWq .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urhB8TuFWq .dropdown-item:hover span {
  color: white;
}
.cid-urhB8TuFWq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urhB8TuFWq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urhB8TuFWq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urhB8TuFWq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urhB8TuFWq .nav-link {
  position: relative;
}
.cid-urhB8TuFWq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-urhB8TuFWq .container {
    flex-wrap: nowrap;
  }
}
.cid-urhB8TuFWq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urhB8TuFWq .dropdown-menu,
.cid-urhB8TuFWq .navbar.opened {
  background: #fafafa !important;
}
.cid-urhB8TuFWq .nav-item:focus,
.cid-urhB8TuFWq .nav-link:focus {
  outline: none;
}
.cid-urhB8TuFWq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urhB8TuFWq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urhB8TuFWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urhB8TuFWq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urhB8TuFWq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urhB8TuFWq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urhB8TuFWq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-urhB8TuFWq .navbar.opened {
  transition: all 0.3s;
}
.cid-urhB8TuFWq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urhB8TuFWq .navbar .navbar-logo img {
  width: auto;
}
.cid-urhB8TuFWq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urhB8TuFWq .navbar.collapsed {
  justify-content: center;
}
.cid-urhB8TuFWq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urhB8TuFWq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urhB8TuFWq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urhB8TuFWq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urhB8TuFWq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-urhB8TuFWq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urhB8TuFWq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urhB8TuFWq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urhB8TuFWq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urhB8TuFWq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urhB8TuFWq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urhB8TuFWq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urhB8TuFWq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-urhB8TuFWq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urhB8TuFWq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urhB8TuFWq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urhB8TuFWq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urhB8TuFWq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urhB8TuFWq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urhB8TuFWq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urhB8TuFWq .navbar.navbar-short {
  min-height: 60px;
}
.cid-urhB8TuFWq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urhB8TuFWq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urhB8TuFWq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urhB8TuFWq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urhB8TuFWq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urhB8TuFWq .dropdown-item.active,
.cid-urhB8TuFWq .dropdown-item:active {
  background-color: transparent;
}
.cid-urhB8TuFWq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urhB8TuFWq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urhB8TuFWq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urhB8TuFWq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-urhB8TuFWq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urhB8TuFWq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urhB8TuFWq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urhB8TuFWq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urhB8TuFWq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urhB8TuFWq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urhB8TuFWq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urhB8TuFWq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urhB8TuFWq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urhB8TuFWq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urhB8TuFWq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urhB8TuFWq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urhB8TuFWq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urhB8TuFWq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urhB8TuFWq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urhB8TuFWq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urhB8TuFWq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urhB8TuFWq .navbar {
    height: 70px;
  }
  .cid-urhB8TuFWq .navbar.opened {
    height: auto;
  }
  .cid-urhB8TuFWq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utNzb453cz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #84c774;
}
.cid-utNzb453cz .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNzb453cz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utNzb453cz .row {
  flex-direction: row-reverse;
}
.cid-utNzTSQQtv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #84c774;
}
.cid-utNzTSQQtv .mbr-fallback-image.disabled {
  display: none;
}
.cid-utNzTSQQtv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utNzTSQQtv .row {
  flex-direction: row-reverse;
}
.cid-uwLvFHn4iB {
  background-color: #ffffff;
}
.cid-uwLvFHn4iB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwLvFHn4iB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwLvFHn4iB .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uwLvFHn4iB .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uwLvFHn4iB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uwLvFHn4iB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uwLvFHn4iB .mbr-description {
  text-align: left;
}
.cid-urhB8Ukj07 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-urhB8Ukj07 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-urhB8Ukj07 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-urhB8Ukj07 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-urhB8Ukj07 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-urhB8Ukj07 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-urhB8Ukj07 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-urhB8Ukj07 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-urhB8Ukj07 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-urhB8Ukj07 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-urhB8Ukj07 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-urhB8Ukj07 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-urhB8Ukj07 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-urhB8Ukj07 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-urhB8Ukj07 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-urhB8Ukj07 .media-container-row .mbr-text {
  color: #000000;
}
.cid-uDxZzoyZJp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDxZzoyZJp nav.navbar {
  position: fixed;
}
.cid-uDxZzoyZJp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDxZzoyZJp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDxZzoyZJp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uDxZzoyZJp .dropdown-item:hover,
.cid-uDxZzoyZJp .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uDxZzoyZJp .dropdown-item:hover span {
  color: white;
}
.cid-uDxZzoyZJp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uDxZzoyZJp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uDxZzoyZJp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uDxZzoyZJp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDxZzoyZJp .nav-link {
  position: relative;
}
.cid-uDxZzoyZJp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uDxZzoyZJp .container {
    flex-wrap: nowrap;
  }
}
.cid-uDxZzoyZJp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDxZzoyZJp .dropdown-menu,
.cid-uDxZzoyZJp .navbar.opened {
  background: #fafafa !important;
}
.cid-uDxZzoyZJp .nav-item:focus,
.cid-uDxZzoyZJp .nav-link:focus {
  outline: none;
}
.cid-uDxZzoyZJp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDxZzoyZJp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDxZzoyZJp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDxZzoyZJp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDxZzoyZJp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDxZzoyZJp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDxZzoyZJp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uDxZzoyZJp .navbar.opened {
  transition: all 0.3s;
}
.cid-uDxZzoyZJp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDxZzoyZJp .navbar .navbar-logo img {
  width: auto;
}
.cid-uDxZzoyZJp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDxZzoyZJp .navbar.collapsed {
  justify-content: center;
}
.cid-uDxZzoyZJp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDxZzoyZJp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uDxZzoyZJp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDxZzoyZJp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDxZzoyZJp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uDxZzoyZJp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDxZzoyZJp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDxZzoyZJp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDxZzoyZJp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDxZzoyZJp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDxZzoyZJp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDxZzoyZJp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDxZzoyZJp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uDxZzoyZJp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDxZzoyZJp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDxZzoyZJp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDxZzoyZJp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDxZzoyZJp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDxZzoyZJp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uDxZzoyZJp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uDxZzoyZJp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDxZzoyZJp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDxZzoyZJp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDxZzoyZJp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDxZzoyZJp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDxZzoyZJp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDxZzoyZJp .dropdown-item.active,
.cid-uDxZzoyZJp .dropdown-item:active {
  background-color: transparent;
}
.cid-uDxZzoyZJp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDxZzoyZJp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDxZzoyZJp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDxZzoyZJp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uDxZzoyZJp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDxZzoyZJp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDxZzoyZJp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDxZzoyZJp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDxZzoyZJp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDxZzoyZJp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uDxZzoyZJp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDxZzoyZJp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDxZzoyZJp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDxZzoyZJp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDxZzoyZJp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDxZzoyZJp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDxZzoyZJp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDxZzoyZJp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDxZzoyZJp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDxZzoyZJp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzoyZJp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDxZzoyZJp .navbar {
    height: 70px;
  }
  .cid-uDxZzoyZJp .navbar.opened {
    height: auto;
  }
  .cid-uDxZzoyZJp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDxZzp9jsk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzp9jsk .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uDxZzp9jsk .mbr-text {
  text-align: left;
}
.cid-uDxZzq9lfU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-uDxZzq9lfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzq9lfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzq9lfU .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzq9lfU .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzq9lfU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzq9lfU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzq9lfU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzq9lfU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzq9lfU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzq9lfU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzq9lfU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzq9lfU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzq9lfU .card-title {
  text-align: left;
}
.cid-uDxZzrhdYO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-uDxZzrhdYO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzrhdYO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzrhdYO .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzrhdYO .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzrhdYO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzrhdYO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzrhdYO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzrhdYO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzrhdYO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzrhdYO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzrhdYO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzrhdYO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzsdHjP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-uDxZzsdHjP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzsdHjP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzsdHjP .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzsdHjP .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzsdHjP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzsdHjP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzsdHjP .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzsdHjP .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzsdHjP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzsdHjP .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzsdHjP .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzsdHjP .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZztf2nH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-uDxZztf2nH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZztf2nH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZztf2nH .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZztf2nH .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZztf2nH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZztf2nH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #000000;
  transition: all 0.3s;
}
.cid-uDxZztf2nH .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #000000;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZztf2nH .social-row .soc-item:hover {
  background-color: #000000;
}
.cid-uDxZztf2nH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZztf2nH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZztf2nH .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZztf2nH .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzuamYO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzuamYO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzuamYO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzuamYO .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzuamYO .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzuamYO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzuamYO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzuamYO .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzuamYO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzuamYO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzuamYO .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzuamYO .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzuamYO .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzv5dxc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzv5dxc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzv5dxc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzv5dxc .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzv5dxc .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzv5dxc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzv5dxc .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzv5dxc .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzv5dxc .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzv5dxc .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzv5dxc .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzv5dxc .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzv5dxc .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzw2RDl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-uDxZzw2RDl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzw2RDl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzw2RDl .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzw2RDl .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzw2RDl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzw2RDl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzw2RDl .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzw2RDl .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzw2RDl .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzw2RDl .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzw2RDl .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzw2RDl .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzx5M5F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzx5M5F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzx5M5F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzx5M5F .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzx5M5F .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzx5M5F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzx5M5F .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzx5M5F .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzx5M5F .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzx5M5F .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzx5M5F .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzx5M5F .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzx5M5F .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzxUN2v {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #84c774;
}
.cid-uDxZzxUN2v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzxUN2v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzxUN2v .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzxUN2v .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzxUN2v .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzxUN2v .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzxUN2v .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzxUN2v .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzxUN2v .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzxUN2v .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzxUN2v .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzxUN2v .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzyLq8a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzyLq8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzyLq8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzyLq8a .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uDxZzyLq8a .item-wrapper {
  background-color: #84c774;
  border-radius: 4px;
}
.cid-uDxZzyLq8a .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDxZzyLq8a .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uDxZzyLq8a .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uDxZzyLq8a .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uDxZzyLq8a .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDxZzyLq8a .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uDxZzyLq8a .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDxZzyLq8a .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uDxZzzxB3e {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzAbAtD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzAbAtD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzAbAtD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzAbAtD .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzAbAtD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzAbAtD .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzAbAtD .mbr-description {
  text-align: left;
}
.cid-uDxZzARxjF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzARxjF .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzARxjF .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzARxjF .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzARxjF .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzARxjF .mbr-text {
  color: #424a4d;
}
.cid-uDxZzBA4eN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzBA4eN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzBA4eN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzBA4eN .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzBA4eN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzBA4eN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzBA4eN .mbr-description {
  text-align: left;
}
.cid-uDxZzCii3m {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzCii3m .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzCii3m .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzCii3m .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzCii3m .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #353535;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzCii3m .mbr-text {
  color: #424a4d;
}
.cid-uDxZzCXvpS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzCXvpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzCXvpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzCXvpS .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzCXvpS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzCXvpS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzCXvpS .mbr-description {
  text-align: left;
}
.cid-uDxZzDG8Wd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzDG8Wd .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzDG8Wd .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzDG8Wd .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzDG8Wd .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzDG8Wd .mbr-text {
  color: #424a4d;
}
.cid-uDxZzEnK8v {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzEnK8v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzEnK8v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzEnK8v .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzEnK8v img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzEnK8v .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzEnK8v .mbr-description {
  text-align: left;
}
.cid-uDxZzF1mVQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uDxZzF1mVQ .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzF1mVQ .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzF1mVQ .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzF1mVQ .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzF1mVQ .mbr-text {
  color: #424a4d;
}
.cid-uDxZzFGGGw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzFGGGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzFGGGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzFGGGw .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzFGGGw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzFGGGw .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzFGGGw .mbr-description {
  text-align: left;
}
.cid-uDxZzGrX0N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uDxZzGrX0N .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzGrX0N .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzGrX0N .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzGrX0N .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzGrX0N .mbr-text {
  color: #424a4d;
}
.cid-uDxZzH7dCc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzH7dCc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzH7dCc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzH7dCc .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzH7dCc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzH7dCc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzH7dCc .mbr-description {
  text-align: left;
}
.cid-uDxZzHTeB0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzHTeB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzHTeB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzHTeB0 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uDxZzHTeB0 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uDxZzHTeB0 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uDxZzHTeB0 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uDxZzHTeB0 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uDxZzHTeB0 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uDxZzHTeB0 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uDxZzHTeB0 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uDxZzHTeB0 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uDxZzHTeB0 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uDxZzHTeB0 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uDxZzHTeB0 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uDxZzHTeB0 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uDxZzHTeB0 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uDxZzHTeB0 [class^="socicon-"]:before,
.cid-uDxZzHTeB0 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uDxZzHTeB0 .mbr-section-title,
.cid-uDxZzHTeB0 .mbr-social-likes {
  text-align: left;
}
.cid-uDxZzICtkb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzICtkb .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzICtkb .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzICtkb .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzICtkb .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzJmMwj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzJmMwj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzJmMwj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzJmMwj .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzJmMwj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzJmMwj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzJmMwj .mbr-description {
  text-align: left;
}
.cid-uDxZzK4LBP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzK4LBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzK4LBP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzK4LBP [class^="socicon-"]:before,
.cid-uDxZzK4LBP [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uDxZzK4LBP .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #84c774;
  border-width: 2px;
  transition: all .3s;
  border-color: #84c774;
}
.cid-uDxZzK4LBP .btn-social:hover {
  background: #84c774;
}
.cid-uDxZzK4LBP .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-uDxZzK4LBP .mbr-section-title,
.cid-uDxZzK4LBP .mbr-social-likes {
  text-align: left;
}
.cid-uDxZzKHzGw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #84c774;
}
.cid-uDxZzKHzGw .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzKHzGw .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzKHzGw .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzKHzGw .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzLrJzf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzLrJzf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzLrJzf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzLrJzf .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzLrJzf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzLrJzf .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzLrJzf .mbr-description {
  text-align: left;
}
.cid-uDxZzMbaJa {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #84c774;
}
.cid-uDxZzMbaJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzMbaJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzMSSwq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzMSSwq .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzMSSwq .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzMSSwq .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzMSSwq .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzNEzBo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzNEzBo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzNEzBo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDxZzNEzBo .image-wrapper {
    margin-bottom: 1rem;
    padding: 2rem;
  }
}
.cid-uDxZzNEzBo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDxZzNEzBo .text-wrapper {
    padding: 2rem;
  }
}
.cid-uDxZzNEzBo .mbr-description {
  text-align: left;
}
.cid-uDxZzOoEXR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #84c774;
}
.cid-uDxZzOoEXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDxZzOoEXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDxZzP7nrj {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #84c774;
}
.cid-uDxZzP7nrj .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uDxZzP7nrj .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uDxZzP7nrj .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uDxZzP7nrj .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #424a4d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDxZzQ5Ta1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uDxZzQ5Ta1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uDxZzQ5Ta1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uDxZzQ5Ta1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uDxZzQ5Ta1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDxZzQ5Ta1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDxZzQ5Ta1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uDxZzQ5Ta1 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uDxZzQ5Ta1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uDxZzQ5Ta1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uDxZzQ5Ta1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uDxZzQ5Ta1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uDxZzQ5Ta1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uDxZzQ5Ta1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uDxZzQ5Ta1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uDxZzQ5Ta1 .media-container-row .mbr-text {
  color: #000000;
}
.cid-uq2xM8QwT4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uq2xM8QwT4 nav.navbar {
  position: fixed;
}
.cid-uq2xM8QwT4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uq2xM8QwT4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uq2xM8QwT4 .dropdown-item:hover,
.cid-uq2xM8QwT4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uq2xM8QwT4 .dropdown-item:hover span {
  color: white;
}
.cid-uq2xM8QwT4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uq2xM8QwT4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uq2xM8QwT4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uq2xM8QwT4 .nav-link {
  position: relative;
}
.cid-uq2xM8QwT4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uq2xM8QwT4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uq2xM8QwT4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown-menu,
.cid-uq2xM8QwT4 .navbar.opened {
  background: #fafafa !important;
}
.cid-uq2xM8QwT4 .nav-item:focus,
.cid-uq2xM8QwT4 .nav-link:focus {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uq2xM8QwT4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uq2xM8QwT4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uq2xM8QwT4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uq2xM8QwT4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uq2xM8QwT4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uq2xM8QwT4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uq2xM8QwT4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar.collapsed {
  justify-content: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uq2xM8QwT4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uq2xM8QwT4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uq2xM8QwT4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uq2xM8QwT4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uq2xM8QwT4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uq2xM8QwT4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uq2xM8QwT4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uq2xM8QwT4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uq2xM8QwT4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uq2xM8QwT4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uq2xM8QwT4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uq2xM8QwT4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uq2xM8QwT4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uq2xM8QwT4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uq2xM8QwT4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uq2xM8QwT4 .dropdown-item.active,
.cid-uq2xM8QwT4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uq2xM8QwT4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uq2xM8QwT4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uq2xM8QwT4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uq2xM8QwT4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uq2xM8QwT4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uq2xM8QwT4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uq2xM8QwT4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uq2xM8QwT4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uq2xM8QwT4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uq2xM8QwT4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uq2xM8QwT4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uq2xM8QwT4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uq2xM8QwT4 .navbar {
    height: 70px;
  }
  .cid-uq2xM8QwT4 .navbar.opened {
    height: auto;
  }
  .cid-uq2xM8QwT4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHRRDuzZpl {
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-uHRRDuzZpl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHRRDuzZpl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqImPeGSWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #84c774;
}
.cid-uqImPeGSWu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uqImPeGSWu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uqImPeGSWu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uqImPeGSWu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uqImPeGSWu .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uqImPeGSWu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqImPeGSWu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqImPeGSWu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uqImPeGSWu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqImPeGSWu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqImPeGSWu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uqImPeGSWu .media-container-row .mbr-text {
  color: #000000;
}
