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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #228b22 !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: #228b22 !important;
  border-color: #228b22 !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: #114511 !important;
  border-color: #114511 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #114511 !important;
  border-color: #114511 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !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: #228b22;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #114511 !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: #228b22 !important;
  border-color: #228b22 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !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: #228b22 !important;
}
.text-secondary {
  color: #ff6666 !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: #0e390e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #228b22;
}
.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: #228b22;
  border-color: #228b22;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #228b22;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #57d657;
}
.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*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #228b22 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #228b22;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #228b22;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #228b22;
}
.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: #228b22;
  border-bottom-color: #228b22;
}
.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: #228b22 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23228b22' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk4c24TDFp .modal-body .close {
  background: #1b1b1b;
}
.cid-uk4c24TDFp .modal-body .close span {
  font-style: normal;
}
.cid-uk4c24TDFp .carousel-inner > .active,
.cid-uk4c24TDFp .carousel-inner > .next,
.cid-uk4c24TDFp .carousel-inner > .prev {
  display: flex;
}
.cid-uk4c24TDFp .carousel-control .icon-next,
.cid-uk4c24TDFp .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 22px;
  line-height: 27px;
}
.cid-uk4c24TDFp .carousel-control:hover {
  background-color: transparent;
  color: #fff;
  opacity: .5;
}
@media (max-width: 767px) {
  .cid-uk4c24TDFp .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uk4c24TDFp .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uk4c24TDFp .boxed-slider > div {
  position: relative;
}
.cid-uk4c24TDFp .container img {
  width: 100%;
  height: 670px;
  object-fit: cover;
}
.cid-uk4c24TDFp .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uk4c24TDFp .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uk4c24TDFp .mbr-table-cell {
  padding: 0;
}
.cid-uk4c24TDFp .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uk4c24TDFp .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uk4c24TDFp .mbr-overlay {
  z-index: 1;
}
.cid-uk4c24TDFp .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
  height: 670px;
}
.cid-uk4c24TDFp .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uk4c24TDFp .carousel-item.active.right,
.cid-uk4c24TDFp .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uk4c24TDFp .carousel-item.active.left,
.cid-uk4c24TDFp .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uk4c24TDFp .carousel-item.active,
.cid-uk4c24TDFp .carousel-item.next.left,
.cid-uk4c24TDFp .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uk4c24TDFp .mbr-slider .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  transition: all .25s ease;
  opacity: 1;
  z-index: 11;
}
.cid-uk4c24TDFp .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uk4c24TDFp .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uk4c24TDFp .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 22px;
}
@media (max-width: 767px) {
  .cid-uk4c24TDFp .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
    display: none;
  }
}
.cid-uk4c24TDFp .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .cid-uk4c24TDFp .mbr-slider .carousel-indicators {
    margin-bottom: .5rem;
  }
}
.cid-uk4c24TDFp .mbr-slider .carousel-indicators li {
  max-width: 10px;
  width: 110px;
  height: 10px;
  max-height: 10px;
  margin: 0 5px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .3;
  transition: all .25s ease;
  box-sizing: border-box;
}
.cid-uk4c24TDFp .mbr-slider .carousel-indicators li.active,
.cid-uk4c24TDFp .mbr-slider .carousel-indicators li:hover {
  opacity: 1;
  background-color: #fff;
}
.cid-uk4c24TDFp .mbr-slider .carousel-indicators li::after,
.cid-uk4c24TDFp .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uk4c24TDFp .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uk4c24TDFp .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uk4c24TDFp .mbr-slider > .container img {
  width: 100%;
}
.cid-uk4c24TDFp .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  transform: translateY(-50%);
}
.cid-uk4c24TDFp .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uk4c24TDFp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uk4c24TDFp .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uk4c24TDFp .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uk4c24TDFp .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uk4c24TDFp .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uk4c24TDFp .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uk4c24TDFp .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uk4c24TDFp .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uk4c24TDFp .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uk4c24TDFp .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uk4c24TDFp .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uk4c24TDFp h2 {
  margin-bottom: 0;
  font-weight: 700;
}
.cid-uk4c24TDFp .mbr-text {
  margin-bottom: 0;
  margin-top: 30px;
  font-weight: 500;
}
.cid-uk4c24TDFp .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 991px) {
  .cid-uk4c24TDFp .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uk4c24TDFp .mbr-section-btn .btn {
  height: 60px;
  padding: 0 40px;
  font-weight: 700;
}
.cid-uk4c24TDFp .mbr-iconfont {
  transition: all 0.25s ease;
}
.cid-uk4c24TDFp .carousel-control-next .mbr-iconfont::before {
  content: "\e909";
}
.cid-uk4c24TDFp .carousel-control-next .mbr-iconfont:hover {
  opacity: .5;
}
.cid-uk4c24TDFp .carousel-control-prev .mbr-iconfont::before {
  content: "\e90a";
}
.cid-uk4c24TDFp .carousel-control-prev .mbr-iconfont:hover {
  opacity: .5;
}
.cid-uk4c24TDFp P {
  color: #fff6f6;
}
.cid-uk4c24TDFp H2 {
  color: #fff6f6;
}
.cid-toHJWJiuQC {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-toHJWJiuQC .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-toHJWJiuQC .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-toHJWJiuQC .rev,
.cid-toHJWJiuQC .mbr-iconfont {
  display: inline-block;
}
.cid-toHJWJiuQC .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #000000;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-toHJWJiuQC .card-img {
  position: relative;
}
.cid-toHJWJiuQC .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-toHJWJiuQC .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-toHJWJiuQC .card-title {
  color: #ef0a2b;
  margin: 0;
  text-align: center;
}
.cid-toHJWJiuQC .card-box {
  padding: 1.5rem;
}
.cid-toHJWJiuQC .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-toHJWJiuQC .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-toHJWJiuQC .mbr-section-title,
.cid-toHJWJiuQC .line-wrap {
  text-align: center;
  color: #228b22;
}
.cid-toHJWJiuQC .card-text,
.cid-toHJWJiuQC .mbr-section-btn,
.cid-toHJWJiuQC .ico-line {
  text-align: left;
  color: #767676;
}
.cid-toHJWJiuQC .mbr-text,
.cid-toHJWJiuQC .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-toHJWJiuQC .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-toHJWJiuQC .mbr-text {
  color: #000000;
}
.cid-toHJWJiuQC H1 {
  text-align: center;
}
.cid-toHJWJiuQC DIV {
  text-align: center;
}
.cid-toHJWJiuQC H3 {
  color: #228b22;
  text-align: center;
}
.cid-spGWHyxzbG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-spGWHyxzbG .mbr-section-title,
  .cid-spGWHyxzbG .mbr-section-subtitle,
  .cid-spGWHyxzbG .mbr-section-btn,
  .cid-spGWHyxzbG .mbr-text {
    text-align: center;
  }
}
.cid-spGWHyxzbG .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-spGWHyxzbG .mbr-text,
.cid-spGWHyxzbG .mbr-section-btn {
  text-align: center;
}
.cid-uk4cQZ0Y4l {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uk4cQZ0Y4l img,
.cid-uk4cQZ0Y4l .item-img {
  width: 100%;
}
.cid-uk4cQZ0Y4l .item:focus,
.cid-uk4cQZ0Y4l span:focus {
  outline: none;
}
.cid-uk4cQZ0Y4l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uk4cQZ0Y4l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uk4cQZ0Y4l .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uk4cQZ0Y4l .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk4cQZ0Y4l .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uk4cQZ0Y4l .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uk4cQZ0Y4l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uk4cQZ0Y4l .mbr-section-title {
  color: #8b4513;
}
.cid-uk4cQZ0Y4l .mbr-text,
.cid-uk4cQZ0Y4l .mbr-section-btn {
  text-align: left;
}
.cid-uk4cQZ0Y4l .item-title {
  text-align: left;
}
.cid-uk4cQZ0Y4l .item-subtitle {
  text-align: left;
}
.cid-spReQgtkiH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a3a2a2;
}
.cid-spReQgtkiH .mbr-section-title {
  color: #ffffff;
}
.cid-spoxQoItrG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spoxQoItrG .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-spoxQoItrG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-spoxQoItrG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-spoxQoItrG .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-spoxQoItrG .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-spoxQoItrG .mbr-section-title {
  text-align: right;
}
.cid-spoxQoItrG .mbr-text,
.cid-spoxQoItrG .mbr-section-btn {
  text-align: left;
}
.cid-spoxQoItrG H1 {
  color: #228b22;
  text-align: left;
}
.cid-spoxQoItrG H4 {
  color: #228b22;
}
.cid-uk4cJ1Pqw3 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk4cJ1Pqw3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk4cJ1Pqw3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk4cJ1Pqw3 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uk4cJ1Pqw3 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uk4cJ1Pqw3 .mbr-text {
  text-align: left;
}
.cid-uk4cJ1Pqw3 .name {
  text-align: left;
}
.cid-uk4cJ1Pqw3 .mbr-section-title {
  color: #8b4513;
}
.cid-sq3IcLizFV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sq3IcLizFV .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sq3IcLizFV .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sq3IcLizFV .mbr-text {
  text-align: center;
}
.cid-sq3IcLizFV .img2 {
  margin-left: 5px;
}
.cid-srtFl1h7tX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-srtFl1h7tX .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srtFl1h7tX .rev,
.cid-srtFl1h7tX .mbr-iconfont {
  display: inline-block;
}
.cid-srtFl1h7tX .card-img {
  position: relative;
}
.cid-srtFl1h7tX .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srtFl1h7tX .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srtFl1h7tX .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srtFl1h7tX .card-box {
  padding: 1.5rem;
}
.cid-srtFl1h7tX .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srtFl1h7tX .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srtFl1h7tX .mbr-section-title,
.cid-srtFl1h7tX .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srtFl1h7tX .card-text,
.cid-srtFl1h7tX .mbr-section-btn,
.cid-srtFl1h7tX .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srtFl1h7tX .mbr-text,
.cid-srtFl1h7tX .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srtFl1h7tX .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srtFl1h7tX .mbr-text {
  color: #000000;
}
.cid-srtFl1h7tX H4 {
  text-align: center;
}
.cid-srtWXO4kiu {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-srtWXO4kiu p {
  text-align: center;
}
.cid-srtWXO4kiu .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-srtWXO4kiu .social-list a:focus {
  text-decoration: none;
}
.cid-srtWXO4kiu .text-copyright {
  width: 100%;
}
.cid-srtWXO4kiu .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-srtWXO4kiu .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-srtWXO4kiu .logo-footer {
  line-height: normal;
}
.cid-srtWXO4kiu .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-srtWXO4kiu .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-srtWXO4kiu .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srcKJdj68R {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-srcKJdj68R .mbr-section-title,
  .cid-srcKJdj68R .mbr-section-subtitle,
  .cid-srcKJdj68R .mbr-section-btn,
  .cid-srcKJdj68R .mbr-text {
    text-align: center;
  }
}
.cid-srcKJdj68R .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-srcKJdj68R .mbr-text,
.cid-srcKJdj68R .mbr-section-btn {
  text-align: center;
}
.cid-sr7qKbVWjM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7qKbVWjM .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sr7qKbVWjM .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sr7qKbVWjM .mbr-text {
  text-align: center;
}
.cid-srvpov9W7g {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvpov9W7g .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvpov9W7g .rev,
.cid-srvpov9W7g .mbr-iconfont {
  display: inline-block;
}
.cid-srvpov9W7g .card-img {
  position: relative;
}
.cid-srvpov9W7g .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvpov9W7g .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvpov9W7g .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvpov9W7g .card-box {
  padding: 1.5rem;
}
.cid-srvpov9W7g .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvpov9W7g .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvpov9W7g .mbr-section-title,
.cid-srvpov9W7g .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvpov9W7g .card-text,
.cid-srvpov9W7g .mbr-section-btn,
.cid-srvpov9W7g .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvpov9W7g .mbr-text,
.cid-srvpov9W7g .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvpov9W7g .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvpov9W7g .mbr-text {
  color: #000000;
}
.cid-srvpov9W7g H4 {
  text-align: center;
}
.cid-srd4l6Bm4T {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-srd4l6Bm4T .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #228b22;
  margin-bottom: 2rem;
}
.cid-srd4l6Bm4T .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-srd4l6Bm4T .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-srd4l6Bm4T .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-srd4l6Bm4T .mbr-section-title {
  color: #228b22;
}
.cid-vgTVlOHX5z {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vgTVlOHX5z .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sru7FmarFv {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-sru7FmarFv p {
  text-align: center;
}
.cid-sru7FmarFv .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru7FmarFv .social-list a:focus {
  text-decoration: none;
}
.cid-sru7FmarFv .text-copyright {
  width: 100%;
}
.cid-sru7FmarFv .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru7FmarFv .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru7FmarFv .logo-footer {
  line-height: normal;
}
.cid-sru7FmarFv .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru7FmarFv .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru7FmarFv .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srbPvzB0oJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-srbPvzB0oJ .mbr-section-title,
  .cid-srbPvzB0oJ .mbr-section-subtitle,
  .cid-srbPvzB0oJ .mbr-section-btn,
  .cid-srbPvzB0oJ .mbr-text {
    text-align: center;
  }
}
.cid-srbPvzB0oJ .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-srbPvzB0oJ .mbr-text,
.cid-srbPvzB0oJ .mbr-section-btn {
  text-align: center;
}
.cid-spycRsbv38 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-spycRsbv38 .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-spycRsbv38 .modal-body .close {
  background: #1b1b1b;
}
.cid-spycRsbv38 .modal-body .close span {
  font-style: normal;
}
.cid-spycRsbv38 .carousel-inner > .active,
.cid-spycRsbv38 .carousel-inner > .next,
.cid-spycRsbv38 .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-spycRsbv38 .carousel-control .icon-next,
.cid-spycRsbv38 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-spycRsbv38 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spycRsbv38 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-spycRsbv38 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-spycRsbv38 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-spycRsbv38 .boxed-slider > div {
  position: relative;
}
.cid-spycRsbv38 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-spycRsbv38 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-spycRsbv38 .mbr-table-cell {
  padding: 0;
}
.cid-spycRsbv38 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-spycRsbv38 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-spycRsbv38 .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-spycRsbv38 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-spycRsbv38 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 767px) {
  .cid-spycRsbv38 .carousel-item .container {
    width: 100%;
  }
}
.cid-spycRsbv38 .carousel-item-next.carousel-item-left,
.cid-spycRsbv38 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-spycRsbv38 .active.carousel-item-right,
.cid-spycRsbv38 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-spycRsbv38 .active.carousel-item-left,
.cid-spycRsbv38 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-spycRsbv38 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-spycRsbv38 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-spycRsbv38 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-spycRsbv38 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-spycRsbv38 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-spycRsbv38 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-spycRsbv38 .mbr-slider .carousel-indicators li {
  max-width: 19px;
  width: 19px;
  height: 19px;
  max-height: 19px;
  margin: 3px;
  background-color: white;
  border: none;
  border-radius: 0;
  opacity: .5;
  transition: all .3s;
}
.cid-spycRsbv38 .mbr-slider .carousel-indicators li.active,
.cid-spycRsbv38 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-spycRsbv38 .mbr-slider .carousel-indicators li::after,
.cid-spycRsbv38 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-spycRsbv38 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-spycRsbv38 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-spycRsbv38 .mbr-slider > .container img {
  width: 100%;
}
.cid-spycRsbv38 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-spycRsbv38 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cid-spycRsbv38 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-spycRsbv38 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-spycRsbv38 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-spycRsbv38 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-spycRsbv38 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-spycRsbv38 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-spycRsbv38 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-spycRsbv38 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-spycRsbv38 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-spycRsbv38 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-spycRsbv38 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-spycRsbv38 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-spycRsbv38 .carousel-inner {
  height: 100%;
}
.cid-spycRsbv38 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-spycRsbv38 .image_wrapper {
  height: 500px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-spycRsbv38 .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-spycRsbv38 .carousel-item .container-slide {
  text-align: center;
}
.cid-spycRsbv38 .content-slider-wrap {
  width: 950%;
}
.cid-spycRsbv38 .carousel-control-prev {
  bottom: 2px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-spycRsbv38 .carousel-control-next {
  bottom: 54px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-spycRsbv38 .carousel-control {
  margin-left: 2px!important;
}
.cid-srvpi66pYt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvpi66pYt .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvpi66pYt .rev,
.cid-srvpi66pYt .mbr-iconfont {
  display: inline-block;
}
.cid-srvpi66pYt .card-img {
  position: relative;
}
.cid-srvpi66pYt .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvpi66pYt .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvpi66pYt .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvpi66pYt .card-box {
  padding: 1.5rem;
}
.cid-srvpi66pYt .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvpi66pYt .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvpi66pYt .mbr-section-title,
.cid-srvpi66pYt .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvpi66pYt .card-text,
.cid-srvpi66pYt .mbr-section-btn,
.cid-srvpi66pYt .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvpi66pYt .mbr-text,
.cid-srvpi66pYt .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvpi66pYt .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvpi66pYt .mbr-text {
  color: #000000;
}
.cid-srvpi66pYt H4 {
  text-align: center;
}
.cid-sru7BkQ3qO {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-sru7BkQ3qO p {
  text-align: center;
}
.cid-sru7BkQ3qO .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru7BkQ3qO .social-list a:focus {
  text-decoration: none;
}
.cid-sru7BkQ3qO .text-copyright {
  width: 100%;
}
.cid-sru7BkQ3qO .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru7BkQ3qO .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru7BkQ3qO .logo-footer {
  line-height: normal;
}
.cid-sru7BkQ3qO .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru7BkQ3qO .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru7BkQ3qO .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spyH8hY8RE {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-spyH8hY8RE .mbr-section-title {
  color: #228b22;
}
.cid-spyweIiRG5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-spyweIiRG5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-spyweIiRG5 .row {
  flex-direction: row-reverse;
}
.cid-spyweIiRG5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-spyweIiRG5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-spyweIiRG5 .mbr-section-title {
  color: #31c237;
}
.cid-srdoa51n8Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #228b22;
}
.cid-srdoa51n8Z .mbr-text,
.cid-srdoa51n8Z .mbr-section-btn {
  color: #232323;
}
.cid-srdoa51n8Z .card-title,
.cid-srdoa51n8Z .card-box {
  color: #ffffff;
}
.cid-srdoa51n8Z .mbr-text,
.cid-srdoa51n8Z .link-wrap {
  color: #ffffff;
}
.cid-srbOdQ896m {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-srbOdQ896m .mbr-section-title,
  .cid-srbOdQ896m .mbr-section-subtitle,
  .cid-srbOdQ896m .mbr-section-btn,
  .cid-srbOdQ896m .mbr-text {
    text-align: center;
  }
}
.cid-srbOdQ896m .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-srbOdQ896m .mbr-text,
.cid-srbOdQ896m .mbr-section-btn {
  text-align: center;
}
.cid-sr7TKkwOSV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7TKkwOSV .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sr7TKkwOSV .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sr7TKkwOSV .mbr-text {
  text-align: center;
}
.cid-srvpctAoRF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvpctAoRF .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvpctAoRF .rev,
.cid-srvpctAoRF .mbr-iconfont {
  display: inline-block;
}
.cid-srvpctAoRF .card-img {
  position: relative;
}
.cid-srvpctAoRF .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvpctAoRF .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvpctAoRF .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvpctAoRF .card-box {
  padding: 1.5rem;
}
.cid-srvpctAoRF .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvpctAoRF .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvpctAoRF .mbr-section-title,
.cid-srvpctAoRF .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvpctAoRF .card-text,
.cid-srvpctAoRF .mbr-section-btn,
.cid-srvpctAoRF .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvpctAoRF .mbr-text,
.cid-srvpctAoRF .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvpctAoRF .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvpctAoRF .mbr-text {
  color: #000000;
}
.cid-srvpctAoRF H4 {
  text-align: center;
}
.cid-sru7xyj16y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e9f2f6;
}
.cid-sru7xyj16y p {
  text-align: center;
}
.cid-sru7xyj16y .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru7xyj16y .social-list a:focus {
  text-decoration: none;
}
.cid-sru7xyj16y .text-copyright {
  width: 100%;
}
.cid-sru7xyj16y .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru7xyj16y .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru7xyj16y .logo-footer {
  line-height: normal;
}
.cid-sru7xyj16y .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru7xyj16y .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru7xyj16y .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spHgjOYddg {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spHgjOYddg .mbr-section-title {
  color: #228b22;
}
.cid-spyODggK3S {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-spyODggK3S H1 {
  color: #000000;
  text-align: left;
}
.cid-spyODggK3S .mbr-text,
.cid-spyODggK3S .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-spyODggK3S img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-spyODggK3S .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-spyWYoBIGO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-spyWYoBIGO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-spyWYoBIGO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-spyWYoBIGO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-spyWYoBIGO .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-spyWYoBIGO .container {
  padding: 0;
}
.cid-spyWYoBIGO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-spyWYoBIGO .icon-focus {
  display: none;
}
.cid-spyWYoBIGO .btn[class*=-outline] {
  border: none!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  color: #808080 !important;
  font-weight: 400;
  box-shadow: none !important;
}
.cid-spyWYoBIGO .btn[class*=-outline]:hover,
.cid-spyWYoBIGO .btn[class*=-outline]:active {
  background: transparent!important;
}
.cid-spyWYoBIGO li:hover .btn-primary-outline,
.cid-spyWYoBIGO li:active .btn-primary-outline,
.cid-spyWYoBIGO li.active .btn-primary-outline {
  color: #228b22 !important;
}
.cid-spyWYoBIGO li:hover .btn-secondary-outline,
.cid-spyWYoBIGO li:active .btn-secondary-outline,
.cid-spyWYoBIGO li.active .btn-secondary-outline {
  color: #ff6666 !important;
}
.cid-spyWYoBIGO li:hover .btn-info-outline,
.cid-spyWYoBIGO li:active .btn-info-outline,
.cid-spyWYoBIGO li.active .btn-info-outline {
  color: #47b5ed !important;
}
.cid-spyWYoBIGO li:hover .btn-warning-outline,
.cid-spyWYoBIGO li:active .btn-warning-outline,
.cid-spyWYoBIGO li.active .btn-warning-outline {
  color: #ffe161 !important;
}
.cid-spyWYoBIGO li:hover .btn-white-outline,
.cid-spyWYoBIGO li:active .btn-white-outline,
.cid-spyWYoBIGO li.active .btn-white-outline {
  color: #ffffff !important;
}
.cid-spyWYoBIGO li:hover .btn-black-outline,
.cid-spyWYoBIGO li:active .btn-black-outline,
.cid-spyWYoBIGO li.active .btn-black-outline {
  color: #000000 !important;
}
.cid-spyWYoBIGO li:hover .btn-success-outline,
.cid-spyWYoBIGO li:active .btn-success-outline,
.cid-spyWYoBIGO li.active .btn-success-outline {
  color: #40b0bf !important;
}
.cid-spyWYoBIGO li:hover .btn-danger-outline,
.cid-spyWYoBIGO li:active .btn-danger-outline,
.cid-spyWYoBIGO li.active .btn-danger-outline {
  color: #ff9966 !important;
}
.cid-spyWYoBIGO li {
  position: relative;
}
.cid-spyWYoBIGO li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 6px;
  top: 50%;
  background: #d3d3d3 !important;
  transform: rotate(35deg) translateY(-59%);
}
.cid-spyWYoBIGO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-spyWYoBIGO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-spyWYoBIGO .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-spyWYoBIGO .btn {
  font-family: Jost !important;
}
.cid-spyWYoBIGO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-spyWYoBIGO .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-spyWYoBIGO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-spyWYoBIGO .btn[class*="-outline"] {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-srbNtwTWZY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #228b22;
}
.cid-srbNtwTWZY .mbr-text,
.cid-srbNtwTWZY .mbr-section-btn {
  color: #232323;
}
.cid-srbNtwTWZY .card-title,
.cid-srbNtwTWZY .card-box {
  color: #ffffff;
}
.cid-srbNtwTWZY .mbr-text,
.cid-srbNtwTWZY .link-wrap {
  color: #ffffff;
}
.cid-srbNryopo8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-srbNryopo8 .mbr-section-title,
  .cid-srbNryopo8 .mbr-section-subtitle,
  .cid-srbNryopo8 .mbr-section-btn,
  .cid-srbNryopo8 .mbr-text {
    text-align: center;
  }
}
.cid-srbNryopo8 .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-srbNryopo8 .mbr-text,
.cid-srbNryopo8 .mbr-section-btn {
  text-align: center;
}
.cid-sr7fqsE9QE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7fqsE9QE .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sr7fqsE9QE .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sr7fqsE9QE .mbr-text {
  text-align: center;
}
.cid-srvp689U6w {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvp689U6w .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvp689U6w .rev,
.cid-srvp689U6w .mbr-iconfont {
  display: inline-block;
}
.cid-srvp689U6w .card-img {
  position: relative;
}
.cid-srvp689U6w .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvp689U6w .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvp689U6w .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvp689U6w .card-box {
  padding: 1.5rem;
}
.cid-srvp689U6w .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvp689U6w .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvp689U6w .mbr-section-title,
.cid-srvp689U6w .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvp689U6w .card-text,
.cid-srvp689U6w .mbr-section-btn,
.cid-srvp689U6w .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvp689U6w .mbr-text,
.cid-srvp689U6w .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvp689U6w .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvp689U6w .mbr-text {
  color: #000000;
}
.cid-srvp689U6w H4 {
  text-align: center;
}
.cid-sru7tUuzZL {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-sru7tUuzZL p {
  text-align: center;
}
.cid-sru7tUuzZL .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru7tUuzZL .social-list a:focus {
  text-decoration: none;
}
.cid-sru7tUuzZL .text-copyright {
  width: 100%;
}
.cid-sru7tUuzZL .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru7tUuzZL .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru7tUuzZL .logo-footer {
  line-height: normal;
}
.cid-sru7tUuzZL .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru7tUuzZL .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru7tUuzZL .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spzb77JySC {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-spzb77JySC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-spzb77JySC .row {
  flex-direction: row-reverse;
}
.cid-spzb77JySC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-spzb77JySC .text-wrapper {
    padding: 2rem;
  }
}
.cid-spzb77JySC .mbr-section-title {
  color: #000000;
}
.cid-spEUaaSjOj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spEUaaSjOj .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-spEUaaSjOj .card {
    margin-bottom: 2rem!important;
  }
  .cid-spEUaaSjOj .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-spEUaaSjOj .link-wrap {
    align-items: center;
  }
}
.cid-spEUaaSjOj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-spzb8fHPfg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-spzb8fHPfg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-spzb8fHPfg .row {
  flex-direction: row-reverse;
}
.cid-spzb8fHPfg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-spzb8fHPfg .text-wrapper {
    padding: 2rem;
  }
}
.cid-spzb8fHPfg .mbr-text {
  color: #000000;
}
.cid-spzb8fHPfg .mbr-section-title {
  color: #000000;
}
.cid-srdlXF0H0c {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #228b22;
}
.cid-srdlXF0H0c .mbr-text,
.cid-srdlXF0H0c .mbr-section-btn {
  color: #232323;
}
.cid-srdlXF0H0c .card-title,
.cid-srdlXF0H0c .card-box {
  color: #ffffff;
}
.cid-srdlXF0H0c .mbr-text,
.cid-srdlXF0H0c .link-wrap {
  color: #ffffff;
}
.cid-srbMSJxkWD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-srbMSJxkWD .mbr-section-title,
  .cid-srbMSJxkWD .mbr-section-subtitle,
  .cid-srbMSJxkWD .mbr-section-btn,
  .cid-srbMSJxkWD .mbr-text {
    text-align: center;
  }
}
.cid-srbMSJxkWD .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-srbMSJxkWD .mbr-text,
.cid-srbMSJxkWD .mbr-section-btn {
  text-align: center;
}
.cid-sr7KEtHAxR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7KEtHAxR .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sr7KEtHAxR .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sr7KEtHAxR .mbr-text {
  text-align: center;
}
.cid-srvoYKLZur {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvoYKLZur .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvoYKLZur .rev,
.cid-srvoYKLZur .mbr-iconfont {
  display: inline-block;
}
.cid-srvoYKLZur .card-img {
  position: relative;
}
.cid-srvoYKLZur .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvoYKLZur .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvoYKLZur .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvoYKLZur .card-box {
  padding: 1.5rem;
}
.cid-srvoYKLZur .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvoYKLZur .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvoYKLZur .mbr-section-title,
.cid-srvoYKLZur .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvoYKLZur .card-text,
.cid-srvoYKLZur .mbr-section-btn,
.cid-srvoYKLZur .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvoYKLZur .mbr-text,
.cid-srvoYKLZur .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvoYKLZur .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvoYKLZur .mbr-text {
  color: #000000;
}
.cid-srvoYKLZur H4 {
  text-align: center;
}
.cid-sru7oZZ9RP {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-sru7oZZ9RP p {
  text-align: center;
}
.cid-sru7oZZ9RP .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru7oZZ9RP .social-list a:focus {
  text-decoration: none;
}
.cid-sru7oZZ9RP .text-copyright {
  width: 100%;
}
.cid-sru7oZZ9RP .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru7oZZ9RP .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru7oZZ9RP .logo-footer {
  line-height: normal;
}
.cid-sru7oZZ9RP .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru7oZZ9RP .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru7oZZ9RP .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spRgMXaWbV {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-spRgMXaWbV .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-spRgMXaWbV .block-title {
  color: #ef0a2b;
}
.cid-srboOcpTlA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #228b22;
}
.cid-srboOcpTlA .mbr-text,
.cid-srboOcpTlA .mbr-section-btn {
  color: #232323;
}
.cid-srboOcpTlA .card-title,
.cid-srboOcpTlA .card-box {
  color: #ffffff;
}
.cid-srboOcpTlA .mbr-text,
.cid-srboOcpTlA .link-wrap {
  color: #ffffff;
}
.cid-sr8J8dyxRW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr8J8dyxRW .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sr8J8dyxRW .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sr8J8dyxRW .mbr-text {
  text-align: center;
}
.cid-srvnpP2tSw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvnpP2tSw .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvnpP2tSw .rev,
.cid-srvnpP2tSw .mbr-iconfont {
  display: inline-block;
}
.cid-srvnpP2tSw .card-img {
  position: relative;
}
.cid-srvnpP2tSw .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvnpP2tSw .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvnpP2tSw .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvnpP2tSw .card-box {
  padding: 1.5rem;
}
.cid-srvnpP2tSw .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvnpP2tSw .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvnpP2tSw .mbr-section-title,
.cid-srvnpP2tSw .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvnpP2tSw .card-text,
.cid-srvnpP2tSw .mbr-section-btn,
.cid-srvnpP2tSw .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvnpP2tSw .mbr-text,
.cid-srvnpP2tSw .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvnpP2tSw .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvnpP2tSw .mbr-text {
  color: #000000;
}
.cid-srvnpP2tSw H4 {
  text-align: center;
}
.cid-sru72aF7XL {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-sru72aF7XL p {
  text-align: center;
}
.cid-sru72aF7XL .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru72aF7XL .social-list a:focus {
  text-decoration: none;
}
.cid-sru72aF7XL .text-copyright {
  width: 100%;
}
.cid-sru72aF7XL .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru72aF7XL .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru72aF7XL .logo-footer {
  line-height: normal;
}
.cid-sru72aF7XL .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru72aF7XL .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru72aF7XL .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sr7jua8zYy {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sr7jua8zYy .mbr-section-title {
  color: #228b22;
}
.cid-sr7juaRcwX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7juaRcwX .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sr7juaRcwX .card {
    margin-bottom: 2rem!important;
  }
  .cid-sr7juaRcwX .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sr7juaRcwX .link-wrap {
    align-items: center;
  }
}
.cid-sr7juaRcwX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sr7jubvDkj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7jubvDkj .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sr7jubvDkj .card {
    margin-bottom: 2rem!important;
  }
  .cid-sr7jubvDkj .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sr7jubvDkj .link-wrap {
    align-items: center;
  }
}
.cid-sr7jubvDkj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sr7jubZIM2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #76c37a;
}
.cid-sr7jubZIM2 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sr7jubZIM2 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sr7jubZIM2 .card-img span {
  font-size: 100px;
}
.cid-sr7jubZIM2 .mbr-text,
.cid-sr7jubZIM2 .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-sr7jubZIM2 .mbr-section-title,
.cid-sr7jubZIM2 .card-img {
  color: #000000;
}
.cid-sr7JPfkQ21 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sr7JPfkQ21 .mbr-section-title,
  .cid-sr7JPfkQ21 .mbr-section-subtitle,
  .cid-sr7JPfkQ21 .mbr-section-btn,
  .cid-sr7JPfkQ21 .mbr-text {
    text-align: center;
  }
}
.cid-sr7JPfkQ21 .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-sr7JPfkQ21 .mbr-text,
.cid-sr7JPfkQ21 .mbr-section-btn {
  text-align: center;
}
.cid-sr7JOc3YtL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7JOc3YtL .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sr7JOc3YtL .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sr7JOc3YtL .mbr-text {
  text-align: center;
}
.cid-srvoMvWMjZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvoMvWMjZ .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvoMvWMjZ .rev,
.cid-srvoMvWMjZ .mbr-iconfont {
  display: inline-block;
}
.cid-srvoMvWMjZ .card-img {
  position: relative;
}
.cid-srvoMvWMjZ .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvoMvWMjZ .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvoMvWMjZ .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvoMvWMjZ .card-box {
  padding: 1.5rem;
}
.cid-srvoMvWMjZ .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvoMvWMjZ .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvoMvWMjZ .mbr-section-title,
.cid-srvoMvWMjZ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvoMvWMjZ .card-text,
.cid-srvoMvWMjZ .mbr-section-btn,
.cid-srvoMvWMjZ .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvoMvWMjZ .mbr-text,
.cid-srvoMvWMjZ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvoMvWMjZ .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvoMvWMjZ .mbr-text {
  color: #000000;
}
.cid-srvoMvWMjZ H4 {
  text-align: center;
}
.cid-sru7kVat2E {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-sru7kVat2E p {
  text-align: center;
}
.cid-sru7kVat2E .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru7kVat2E .social-list a:focus {
  text-decoration: none;
}
.cid-sru7kVat2E .text-copyright {
  width: 100%;
}
.cid-sru7kVat2E .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru7kVat2E .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru7kVat2E .logo-footer {
  line-height: normal;
}
.cid-sru7kVat2E .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru7kVat2E .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru7kVat2E .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-toHKDT99Uh .navbar-dropdown {
  position: relative !important;
}
.cid-toHKDT99Uh .btn {
  line-height: 1.2;
}
.cid-toHKDT99Uh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toHKDT99Uh .nav-link {
  position: relative;
}
.cid-toHKDT99Uh .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #40b0bf;
}
.cid-toHKDT99Uh .nav-link:hover {
  color: #40b0bf !important;
}
.cid-toHKDT99Uh .nav-link:hover:before {
  width: 100%;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toHKDT99Uh .dropdown-item:hover,
.cid-toHKDT99Uh .dropdown-item:focus {
  background: #228b22 !important;
  color: white !important;
}
.cid-toHKDT99Uh .dropdown-item:hover span {
  color: white;
}
.cid-toHKDT99Uh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toHKDT99Uh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toHKDT99Uh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-toHKDT99Uh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .container {
    flex-wrap: nowrap;
  }
}
.cid-toHKDT99Uh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toHKDT99Uh .navbar-nav {
  margin: auto;
}
.cid-toHKDT99Uh .dropdown-menu,
.cid-toHKDT99Uh .navbar.opened {
  background: #31c237 !important;
}
.cid-toHKDT99Uh .nav-item:focus,
.cid-toHKDT99Uh .nav-link:focus {
  outline: none;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toHKDT99Uh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toHKDT99Uh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toHKDT99Uh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toHKDT99Uh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.opened {
  transition: all 0.3s;
}
.cid-toHKDT99Uh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toHKDT99Uh .navbar .navbar-logo img {
  width: auto;
}
.cid-toHKDT99Uh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toHKDT99Uh .navbar.collapsed {
  justify-content: center;
}
.cid-toHKDT99Uh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toHKDT99Uh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toHKDT99Uh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toHKDT99Uh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toHKDT99Uh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toHKDT99Uh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toHKDT99Uh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toHKDT99Uh .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-toHKDT99Uh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toHKDT99Uh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toHKDT99Uh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toHKDT99Uh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toHKDT99Uh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toHKDT99Uh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toHKDT99Uh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toHKDT99Uh .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-toHKDT99Uh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toHKDT99Uh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toHKDT99Uh .dropdown-item.active,
.cid-toHKDT99Uh .dropdown-item:active {
  background-color: transparent;
}
.cid-toHKDT99Uh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toHKDT99Uh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #31c237;
}
.cid-toHKDT99Uh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toHKDT99Uh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toHKDT99Uh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toHKDT99Uh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ecf4f8;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toHKDT99Uh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toHKDT99Uh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toHKDT99Uh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-toHKDT99Uh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toHKDT99Uh .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-toHKDT99Uh .navbar {
    height: 70px;
  }
  .cid-toHKDT99Uh .navbar.opened {
    height: auto;
  }
  .cid-toHKDT99Uh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spHfvodsMp {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spHfvodsMp .mbr-section-title {
  color: #228b22;
}
.cid-spEXVYM5Mh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spEXVYM5Mh .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-spEXVYM5Mh .card {
    margin-bottom: 2rem!important;
  }
  .cid-spEXVYM5Mh .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-spEXVYM5Mh .link-wrap {
    align-items: center;
  }
}
.cid-spEXVYM5Mh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-spEZR7cSet {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-spEZR7cSet .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-spEZR7cSet .card {
    margin-bottom: 2rem!important;
  }
  .cid-spEZR7cSet .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-spEZR7cSet .link-wrap {
    align-items: center;
  }
}
.cid-spEZR7cSet .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-spEvjx7tb5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #76c37a;
}
.cid-spEvjx7tb5 .mbr-section-title {
  letter-spacing: .1em;
}
.cid-spEvjx7tb5 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-spEvjx7tb5 .card-img span {
  font-size: 100px;
}
.cid-spEvjx7tb5 .mbr-text,
.cid-spEvjx7tb5 .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-spEvjx7tb5 .mbr-section-title,
.cid-spEvjx7tb5 .card-img {
  color: #000000;
}
.cid-srbKMyCtfA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-srbKMyCtfA .mbr-section-title,
  .cid-srbKMyCtfA .mbr-section-subtitle,
  .cid-srbKMyCtfA .mbr-section-btn,
  .cid-srbKMyCtfA .mbr-text {
    text-align: center;
  }
}
.cid-srbKMyCtfA .mbr-section-title {
  text-align: center;
  color: #228b22;
}
.cid-srbKMyCtfA .mbr-text,
.cid-srbKMyCtfA .mbr-section-btn {
  text-align: center;
}
.cid-sr7J9YsE6d {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sr7J9YsE6d .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-sr7J9YsE6d .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sr7J9YsE6d .mbr-text {
  text-align: center;
}
.cid-srvoFOkrOK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srvoFOkrOK .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-srvoFOkrOK .rev,
.cid-srvoFOkrOK .mbr-iconfont {
  display: inline-block;
}
.cid-srvoFOkrOK .card-img {
  position: relative;
}
.cid-srvoFOkrOK .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-srvoFOkrOK .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-srvoFOkrOK .card-title {
  color: #e43f3f;
  margin: 0;
  text-align: center;
}
.cid-srvoFOkrOK .card-box {
  padding: 1.5rem;
}
.cid-srvoFOkrOK .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-srvoFOkrOK .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-srvoFOkrOK .mbr-section-title,
.cid-srvoFOkrOK .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-srvoFOkrOK .card-text,
.cid-srvoFOkrOK .mbr-section-btn,
.cid-srvoFOkrOK .ico-line {
  text-align: left;
  color: #767676;
}
.cid-srvoFOkrOK .mbr-text,
.cid-srvoFOkrOK .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-srvoFOkrOK .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-srvoFOkrOK .mbr-text {
  color: #000000;
}
.cid-srvoFOkrOK H4 {
  text-align: center;
}
.cid-sru7ga4sgA {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #e9f2f6;
}
.cid-sru7ga4sgA p {
  text-align: center;
}
.cid-sru7ga4sgA .mbr-iconfont-social {
  font-size: 1rem;
  color: #228b22;
}
.cid-sru7ga4sgA .social-list a:focus {
  text-decoration: none;
}
.cid-sru7ga4sgA .text-copyright {
  width: 100%;
}
.cid-sru7ga4sgA .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-sru7ga4sgA .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-sru7ga4sgA .logo-footer {
  line-height: normal;
}
.cid-sru7ga4sgA .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sru7ga4sgA .social-btns {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sru7ga4sgA .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
