body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.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: #ff4f7b !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: #2bdc9d !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%;
}
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='%23ff4f7b' %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;
}
.cid-rzBaVzqjpS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzBaVzqjpS .nav-item,
.cid-rzBaVzqjpS .nav-link,
.cid-rzBaVzqjpS .navbar-caption {
  font-weight: normal;
}
.cid-rzBaVzqjpS .nav-item:focus,
.cid-rzBaVzqjpS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzBaVzqjpS .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzBaVzqjpS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzBaVzqjpS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzBaVzqjpS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rzBaVzqjpS .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rzBaVzqjpS .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rzBaVzqjpS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzBaVzqjpS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzBaVzqjpS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzBaVzqjpS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzBaVzqjpS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rzBaVzqjpS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzBaVzqjpS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzBaVzqjpS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzBaVzqjpS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzBaVzqjpS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rzBaVzqjpS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzBaVzqjpS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzBaVzqjpS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzBaVzqjpS .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rzBaVzqjpS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzBaVzqjpS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzBaVzqjpS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzBaVzqjpS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzBaVzqjpS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzBaVzqjpS .dropdown-item.active,
.cid-rzBaVzqjpS .dropdown-item:active {
  background-color: transparent;
}
.cid-rzBaVzqjpS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzBaVzqjpS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzBaVzqjpS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rzBaVzqjpS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzBaVzqjpS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzBaVzqjpS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzBaVzqjpS .navbar-buttons {
  text-align: center;
}
.cid-rzBaVzqjpS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBaVzqjpS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzBaVzqjpS a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzBaVzqjpS .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rzBaVzqjpS .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rzBaVzqjpS .soc-item {
  margin: .5rem .3rem;
}
.cid-rzBaVzqjpS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rzBaVzqjpS .navbar {
    height: 77px;
  }
  .cid-rzBaVzqjpS .navbar.opened {
    height: auto;
  }
  .cid-rzBaVzqjpS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKJbtZvvBN {
  padding-top: 9rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/smiling-man-5-fading-1.jpeg");
}
.cid-tKJbtZvvBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKJbtZvvBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tKJbtZvvBN .col-content {
    text-align: center;
  }
}
.cid-tKJbtZvvBN .label-container {
  margin-bottom: 16px;
}
.cid-tKJbtZvvBN .label-text {
  color: #24262b;
}
.cid-tKJbtZvvBN .label-text-2 {
  color: #24262b;
}
.cid-tKJbtZvvBN .mbr-section-title {
  color: #24262b;
}
.cid-tKJbtZvvBN .text-container {
  margin-top: 24px;
}
.cid-tKJbtZvvBN .mbr-section-subtitle {
  color: #24262b;
}
.cid-tKJbtZvvBN .mbr-text {
  color: #b79b6c;
}
.cid-tKJbtZvvBN .mbr-section-btn {
  margin-top: 28px;
}
.cid-uuEjBxeekV {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uuEjBxeekV .mbr-overlay {
  background: #232323;
}
.cid-uuEjBxeekV .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uuEjBxeekV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuEjBxeekV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuDDTmPBqT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/cathay-planes-bright-1.jpeg");
}
.cid-uuDDTmPBqT .mbr-overlay {
  background: #232323;
}
.cid-uuDDTmPBqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuDDTmPBqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t9d5Y5W2iu {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t9d5Y5W2iu .mbr-overlay {
  background: #efefef;
}
.cid-t9d5Y5W2iu .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-t9d5Y5W2iu .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-t9d5Y5W2iu .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t9d5Y5W2iu .mbr-text {
  color: #8d97ad;
}
.cid-t9d5Y5W2iu .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-t9d5Y5W2iu .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-t9d5Y5W2iu .card-title {
    text-align: center;
  }
  .cid-t9d5Y5W2iu p.mbr-text,
  .cid-t9d5Y5W2iu p.date {
    text-align: center;
  }
}
.cid-t9d5Y5W2iu .mbr-text,
.cid-t9d5Y5W2iu .mbr-section-btn {
  color: #000000;
}
.cid-tKJdwhMHrH {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKJdwhMHrH .mbr-overlay {
  background: #efefef;
}
.cid-tKJdwhMHrH .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tKJdwhMHrH .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tKJdwhMHrH .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tKJdwhMHrH .mbr-text {
  color: #8d97ad;
}
.cid-tKJdwhMHrH .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKJdwhMHrH .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tKJdwhMHrH .card-title {
    text-align: center;
  }
  .cid-tKJdwhMHrH p.mbr-text,
  .cid-tKJdwhMHrH p.date {
    text-align: center;
  }
}
.cid-tKJdwhMHrH .mbr-text,
.cid-tKJdwhMHrH .mbr-section-btn {
  color: #000000;
}
.cid-t9diVYvVsP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-t9diVYvVsP .count {
  text-align: left;
  word-break: inherit;
}
.cid-t9diVYvVsP .mbr-section-subtitle {
  color: #000000;
}
.cid-t9diVYvVsP .mbr-content-title {
  color: #000000;
}
.cid-t9diVYvVsP .panel-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t9diVYvVsP .card {
  word-wrap: break-word;
}
.cid-t9diVYvVsP .mbr-iconfont {
  font-size: 50px;
  color: #232323;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-t9diVYvVsP .panel-item {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKfzV1F7A1 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-tKfzV1F7A1 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKfzV1F7A1 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKfzV1F7A1 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKfzV1F7A1 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKfzV1F7A1 .mbr-text {
  color: #8d97ad;
}
.cid-tKfzV1F7A1 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKfzV1F7A1 .counter-container {
  padding-top: 1rem;
}
.cid-tKfzV1F7A1 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKfzV1F7A1 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKfzV1F7A1 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKfzV1F7A1 .main-row {
    margin: 0;
  }
  .cid-tKfzV1F7A1 .mbr-section-title,
  .cid-tKfzV1F7A1 .mbr-text,
  .cid-tKfzV1F7A1 .list,
  .cid-tKfzV1F7A1 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKfzV1F7A1 .text-content {
    padding: 0;
  }
}
.cid-tKfzV1F7A1 .mbr-text,
.cid-tKfzV1F7A1 .mbr-section-btn {
  color: #000000;
}
.cid-t9detAovCz {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-t9detAovCz .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-t9detAovCz .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-t9detAovCz .text-content {
  padding-right: 1.5rem;
}
.cid-t9detAovCz .mbr-text {
  color: #8d97ad;
}
.cid-t9detAovCz .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-t9detAovCz .counter-container {
  padding-top: 1rem;
}
.cid-t9detAovCz .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-t9detAovCz .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-t9detAovCz .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-t9detAovCz .main-row {
    margin: 0;
  }
  .cid-t9detAovCz .mbr-section-title,
  .cid-t9detAovCz .mbr-text,
  .cid-t9detAovCz .list,
  .cid-t9detAovCz .mbr-section-btn {
    text-align: center !important;
  }
  .cid-t9detAovCz .text-content {
    padding: 0;
  }
}
.cid-t9detAovCz .mbr-text,
.cid-t9detAovCz .mbr-section-btn {
  color: #000000;
}
.cid-t9dillEjyy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t9dillEjyy .mbr-overlay {
  background: #efefef;
}
.cid-t9dillEjyy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-t9dillEjyy .client-name {
  color: #8d97ad;
}
.cid-t9dillEjyy .wrap-img {
  padding-bottom: 1rem;
}
.cid-t9dillEjyy .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-t9dillEjyy .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-rzBaVzqjpS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzBaVzqjpS .nav-item,
.cid-rzBaVzqjpS .nav-link,
.cid-rzBaVzqjpS .navbar-caption {
  font-weight: normal;
}
.cid-rzBaVzqjpS .nav-item:focus,
.cid-rzBaVzqjpS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzBaVzqjpS .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzBaVzqjpS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rzBaVzqjpS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzBaVzqjpS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzBaVzqjpS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rzBaVzqjpS .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rzBaVzqjpS .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rzBaVzqjpS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzBaVzqjpS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzBaVzqjpS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzBaVzqjpS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzBaVzqjpS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzBaVzqjpS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rzBaVzqjpS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzBaVzqjpS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzBaVzqjpS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzBaVzqjpS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzBaVzqjpS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzBaVzqjpS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rzBaVzqjpS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzBaVzqjpS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzBaVzqjpS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzBaVzqjpS .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rzBaVzqjpS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzBaVzqjpS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzBaVzqjpS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzBaVzqjpS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzBaVzqjpS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzBaVzqjpS .dropdown-item.active,
.cid-rzBaVzqjpS .dropdown-item:active {
  background-color: transparent;
}
.cid-rzBaVzqjpS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzBaVzqjpS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzBaVzqjpS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rzBaVzqjpS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzBaVzqjpS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzBaVzqjpS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzBaVzqjpS .navbar-buttons {
  text-align: center;
}
.cid-rzBaVzqjpS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBaVzqjpS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzBaVzqjpS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBaVzqjpS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzBaVzqjpS a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzBaVzqjpS .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rzBaVzqjpS .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rzBaVzqjpS .soc-item {
  margin: .5rem .3rem;
}
.cid-rzBaVzqjpS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rzBaVzqjpS .navbar {
    height: 77px;
  }
  .cid-rzBaVzqjpS .navbar.opened {
    height: auto;
  }
  .cid-rzBaVzqjpS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qKSDBfAnnY {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-qKSDBfAnnY .mbr-overlay {
  background: #04367c;
  background: linear-gradient(90deg, #04367c, #2bdc9d);
}
.cid-qKSDBfAnnY .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-qKSDBfAnnY .mbr-section-subtitle,
.cid-qKSDBfAnnY mbr-section-btn {
  color: #ffffff;
}
.cid-qKSDBfAnnY B {
  color: #333333;
}
.cid-qKSDBfAnnY H1 {
  color: #ffffff;
}
.cid-t9hhZD3gr7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-t9hhZD3gr7 .container {
    max-width: 1400px;
  }
}
.cid-t9hhZD3gr7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-t9hhZD3gr7 .card-wrapper {
  margin-top: 3rem;
}
.cid-t9hhZD3gr7 .row {
  justify-content: center;
}
.cid-t9hhZD3gr7 .mbr-section-title {
  color: #232323;
}
.cid-t9h7h9x25n {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t9h7h9x25n .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-t9h7h9x25n .mbr-section-title {
  text-align: center;
}
.cid-t9h7d0SWb0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t9h7d0SWb0 .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-t9h7d0SWb0 .mbr-section-title {
  margin: 0;
}
.cid-t9h7d0SWb0 .card-img {
  text-align: center;
}
.cid-t9h7d0SWb0 .mbr-section-subtitle,
.cid-t9h7d0SWb0 .mbr-text {
  color: #8d97ad;
}
.cid-t9h7d0SWb0 .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-t9h7d0SWb0 .card-img,
  .cid-t9h7d0SWb0 .mbr-text,
  .cid-t9h7d0SWb0 .mbr-card-title,
  .cid-t9h7d0SWb0 .mbr-section-subtitle,
  .cid-t9h7d0SWb0 .mbr-section-title,
  .cid-t9h7d0SWb0 .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-t9h7d0SWb0 .row-item {
    margin-bottom: 2rem;
  }
}
.cid-t9h7d0SWb0 .mbr-text {
  color: #232323;
}
.cid-t9h7d0SWb0 .mbr-card-title,
.cid-t9h7d0SWb0 .card-img {
  color: #232323;
}
.cid-t9hlnTeoxN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t9hlnTeoxN .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-t9hlnTeoxN .mbr-section-title {
  margin: 0;
}
.cid-t9hlnTeoxN .card-img {
  text-align: center;
}
.cid-t9hlnTeoxN .mbr-section-subtitle,
.cid-t9hlnTeoxN .mbr-text {
  color: #8d97ad;
}
.cid-t9hlnTeoxN .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-t9hlnTeoxN .card-img,
  .cid-t9hlnTeoxN .mbr-text,
  .cid-t9hlnTeoxN .mbr-card-title,
  .cid-t9hlnTeoxN .mbr-section-subtitle,
  .cid-t9hlnTeoxN .mbr-section-title,
  .cid-t9hlnTeoxN .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-t9hlnTeoxN .row-item {
    margin-bottom: 2rem;
  }
}
.cid-t9hlnTeoxN .mbr-text {
  color: #232323;
}
.cid-t9hlnTeoxN .mbr-card-title,
.cid-t9hlnTeoxN .card-img {
  color: #232323;
}
.cid-tJYpIbYd4J {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tJYpIbYd4J .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tJYpIbYd4J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJYpIbYd4J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJYpIbYd4J .mbr-section-title {
  text-align: center;
}
.cid-tJYdNqlTl5 {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tJYdNqlTl5 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYdNqlTl5 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYdNqlTl5 .text-content {
  padding-right: 1.5rem;
}
.cid-tJYdNqlTl5 .mbr-text {
  color: #8d97ad;
}
.cid-tJYdNqlTl5 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYdNqlTl5 .counter-container {
  padding-top: 1rem;
}
.cid-tJYdNqlTl5 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYdNqlTl5 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYdNqlTl5 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYdNqlTl5 .main-row {
    margin: 0;
  }
  .cid-tJYdNqlTl5 .mbr-section-title,
  .cid-tJYdNqlTl5 .mbr-text,
  .cid-tJYdNqlTl5 .list,
  .cid-tJYdNqlTl5 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYdNqlTl5 .text-content {
    padding: 0;
  }
}
.cid-tJYdNqlTl5 .mbr-text,
.cid-tJYdNqlTl5 .mbr-section-btn {
  color: #000000;
}
.cid-tJYpEd9QHo {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-tJYpEd9QHo .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYpEd9QHo .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYpEd9QHo .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tJYpEd9QHo .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tJYpEd9QHo .mbr-text {
  color: #8d97ad;
}
.cid-tJYpEd9QHo .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYpEd9QHo .counter-container {
  padding-top: 1rem;
}
.cid-tJYpEd9QHo .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYpEd9QHo .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYpEd9QHo .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYpEd9QHo .main-row {
    margin: 0;
  }
  .cid-tJYpEd9QHo .mbr-section-title,
  .cid-tJYpEd9QHo .mbr-text,
  .cid-tJYpEd9QHo .list,
  .cid-tJYpEd9QHo .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYpEd9QHo .text-content {
    padding: 0;
  }
}
.cid-tJYpEd9QHo .mbr-text,
.cid-tJYpEd9QHo .mbr-section-btn {
  color: #000000;
}
.cid-tJYpEG8qPr {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tJYpEG8qPr .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYpEG8qPr .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYpEG8qPr .text-content {
  padding-right: 1.5rem;
}
.cid-tJYpEG8qPr .mbr-text {
  color: #8d97ad;
}
.cid-tJYpEG8qPr .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYpEG8qPr .counter-container {
  padding-top: 1rem;
}
.cid-tJYpEG8qPr .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYpEG8qPr .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYpEG8qPr .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYpEG8qPr .main-row {
    margin: 0;
  }
  .cid-tJYpEG8qPr .mbr-section-title,
  .cid-tJYpEG8qPr .mbr-text,
  .cid-tJYpEG8qPr .list,
  .cid-tJYpEG8qPr .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYpEG8qPr .text-content {
    padding: 0;
  }
}
.cid-tJYpEG8qPr .mbr-text,
.cid-tJYpEG8qPr .mbr-section-btn {
  color: #000000;
}
.cid-tJYpF51zjC {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tJYpF51zjC .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYpF51zjC .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYpF51zjC .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tJYpF51zjC .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tJYpF51zjC .mbr-text {
  color: #8d97ad;
}
.cid-tJYpF51zjC .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYpF51zjC .counter-container {
  padding-top: 1rem;
}
.cid-tJYpF51zjC .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYpF51zjC .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYpF51zjC .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYpF51zjC .main-row {
    margin: 0;
  }
  .cid-tJYpF51zjC .mbr-section-title,
  .cid-tJYpF51zjC .mbr-text,
  .cid-tJYpF51zjC .list,
  .cid-tJYpF51zjC .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYpF51zjC .text-content {
    padding: 0;
  }
}
.cid-tJYpF51zjC .mbr-text,
.cid-tJYpF51zjC .mbr-section-btn {
  color: #000000;
}
.cid-tJYpFwZjay {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tJYpFwZjay .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYpFwZjay .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYpFwZjay .text-content {
  padding-right: 1.5rem;
}
.cid-tJYpFwZjay .mbr-text {
  color: #8d97ad;
}
.cid-tJYpFwZjay .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYpFwZjay .counter-container {
  padding-top: 1rem;
}
.cid-tJYpFwZjay .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYpFwZjay .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYpFwZjay .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYpFwZjay .main-row {
    margin: 0;
  }
  .cid-tJYpFwZjay .mbr-section-title,
  .cid-tJYpFwZjay .mbr-text,
  .cid-tJYpFwZjay .list,
  .cid-tJYpFwZjay .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYpFwZjay .text-content {
    padding: 0;
  }
}
.cid-tJYpFwZjay .mbr-text,
.cid-tJYpFwZjay .mbr-section-btn {
  color: #000000;
}
.cid-tJYM5mFUw3 {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tJYM5mFUw3 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYM5mFUw3 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYM5mFUw3 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tJYM5mFUw3 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tJYM5mFUw3 .mbr-text {
  color: #8d97ad;
}
.cid-tJYM5mFUw3 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYM5mFUw3 .counter-container {
  padding-top: 1rem;
}
.cid-tJYM5mFUw3 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYM5mFUw3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYM5mFUw3 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYM5mFUw3 .main-row {
    margin: 0;
  }
  .cid-tJYM5mFUw3 .mbr-section-title,
  .cid-tJYM5mFUw3 .mbr-text,
  .cid-tJYM5mFUw3 .list,
  .cid-tJYM5mFUw3 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYM5mFUw3 .text-content {
    padding: 0;
  }
}
.cid-tJYM5mFUw3 .mbr-text,
.cid-tJYM5mFUw3 .mbr-section-btn {
  color: #000000;
}
.cid-tJYM5OD5Ot {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tJYM5OD5Ot .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYM5OD5Ot .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYM5OD5Ot .text-content {
  padding-right: 1.5rem;
}
.cid-tJYM5OD5Ot .mbr-text {
  color: #8d97ad;
}
.cid-tJYM5OD5Ot .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYM5OD5Ot .counter-container {
  padding-top: 1rem;
}
.cid-tJYM5OD5Ot .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYM5OD5Ot .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYM5OD5Ot .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYM5OD5Ot .main-row {
    margin: 0;
  }
  .cid-tJYM5OD5Ot .mbr-section-title,
  .cid-tJYM5OD5Ot .mbr-text,
  .cid-tJYM5OD5Ot .list,
  .cid-tJYM5OD5Ot .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYM5OD5Ot .text-content {
    padding: 0;
  }
}
.cid-tJYM5OD5Ot .mbr-text,
.cid-tJYM5OD5Ot .mbr-section-btn {
  color: #000000;
}
.cid-tJYTH0ruh9 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tJYTH0ruh9 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYTH0ruh9 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYTH0ruh9 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tJYTH0ruh9 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tJYTH0ruh9 .mbr-text {
  color: #8d97ad;
}
.cid-tJYTH0ruh9 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYTH0ruh9 .counter-container {
  padding-top: 1rem;
}
.cid-tJYTH0ruh9 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYTH0ruh9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYTH0ruh9 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYTH0ruh9 .main-row {
    margin: 0;
  }
  .cid-tJYTH0ruh9 .mbr-section-title,
  .cid-tJYTH0ruh9 .mbr-text,
  .cid-tJYTH0ruh9 .list,
  .cid-tJYTH0ruh9 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYTH0ruh9 .text-content {
    padding: 0;
  }
}
.cid-tJYTH0ruh9 .mbr-text,
.cid-tJYTH0ruh9 .mbr-section-btn {
  color: #000000;
}
.cid-tJYTIoHd5K {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tJYTIoHd5K .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tJYTIoHd5K .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tJYTIoHd5K .text-content {
  padding-right: 1.5rem;
}
.cid-tJYTIoHd5K .mbr-text {
  color: #8d97ad;
}
.cid-tJYTIoHd5K .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tJYTIoHd5K .counter-container {
  padding-top: 1rem;
}
.cid-tJYTIoHd5K .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tJYTIoHd5K .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tJYTIoHd5K .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tJYTIoHd5K .main-row {
    margin: 0;
  }
  .cid-tJYTIoHd5K .mbr-section-title,
  .cid-tJYTIoHd5K .mbr-text,
  .cid-tJYTIoHd5K .list,
  .cid-tJYTIoHd5K .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tJYTIoHd5K .text-content {
    padding: 0;
  }
}
.cid-tJYTIoHd5K .mbr-text,
.cid-tJYTIoHd5K .mbr-section-btn {
  color: #000000;
}
.cid-qKSGRMG5wK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qKSGRMG5wK .mbr-text {
  color: #8d97ad;
}
.cid-qKSGRMG5wK .blockquote-quote svg {
  height: 40px;
  width: 40px;
  fill: #8d97ad;
}
.cid-qKSGRMG5wK .signature > span {
  color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-qKSGRMG5wK .blockquote-quote {
    text-align: left;
  }
  .cid-qKSGRMG5wK .signature {
    text-align: left;
  }
}
.cid-qKSGRMG5wK .mbr-text,
.cid-qKSGRMG5wK .blockquote-quote {
  text-align: left;
}
.cid-tJZeMIqTW0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tJZeMIqTW0 .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tJZeMIqTW0 .panel-group {
  width: 100%;
}
.cid-tJZeMIqTW0 .panel-text,
.cid-tJZeMIqTW0 .header-text,
.cid-tJZeMIqTW0 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tJZeMIqTW0 .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-tJZeMIqTW0 .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-tJZeMIqTW0 .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-tJZeMIqTW0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tJZeMIqTW0 .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tJZeMIqTW0 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-tJZeMIqTW0 .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-tJZeMIqTW0 .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-tJZeMIqTW0 .card .panel-body {
  background: #ffffff;
}
.cid-tJZeMIqTW0 .sign {
  color: #232323;
}
.cid-tJZeMIqTW0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZeMIqTW0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJZeMIqTW0 .panel-text {
  color: #232323;
}
.cid-tJZeMIqTW0 .header-text {
  color: #1dc9cb;
}
.cid-tJZMHGD0yn {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tJZMHGD0yn .mbr-overlay {
  background: #232323;
}
.cid-tJZMHGD0yn .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tJZMHGD0yn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZMHGD0yn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tK9e0KxgD4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tK9e0KxgD4 .nav-item,
.cid-tK9e0KxgD4 .nav-link,
.cid-tK9e0KxgD4 .navbar-caption {
  font-weight: normal;
}
.cid-tK9e0KxgD4 .nav-item:focus,
.cid-tK9e0KxgD4 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tK9e0KxgD4 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tK9e0KxgD4 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tK9e0KxgD4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tK9e0KxgD4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tK9e0KxgD4 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tK9e0KxgD4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tK9e0KxgD4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tK9e0KxgD4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tK9e0KxgD4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tK9e0KxgD4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tK9e0KxgD4 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tK9e0KxgD4 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tK9e0KxgD4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tK9e0KxgD4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tK9e0KxgD4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tK9e0KxgD4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tK9e0KxgD4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tK9e0KxgD4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tK9e0KxgD4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tK9e0KxgD4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tK9e0KxgD4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tK9e0KxgD4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tK9e0KxgD4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tK9e0KxgD4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tK9e0KxgD4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tK9e0KxgD4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tK9e0KxgD4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tK9e0KxgD4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tK9e0KxgD4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tK9e0KxgD4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tK9e0KxgD4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tK9e0KxgD4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tK9e0KxgD4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tK9e0KxgD4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tK9e0KxgD4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tK9e0KxgD4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tK9e0KxgD4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tK9e0KxgD4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tK9e0KxgD4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tK9e0KxgD4 .dropdown-item.active,
.cid-tK9e0KxgD4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tK9e0KxgD4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tK9e0KxgD4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tK9e0KxgD4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tK9e0KxgD4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tK9e0KxgD4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tK9e0KxgD4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tK9e0KxgD4 .navbar-buttons {
  text-align: center;
}
.cid-tK9e0KxgD4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tK9e0KxgD4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tK9e0KxgD4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tK9e0KxgD4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tK9e0KxgD4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tK9e0KxgD4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tK9e0KxgD4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tK9e0KxgD4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tK9e0KxgD4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tK9e0KxgD4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tK9e0KxgD4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tK9e0KxgD4 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tK9e0KxgD4 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tK9e0KxgD4 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tK9e0KxgD4 .soc-item {
  margin: .5rem .3rem;
}
.cid-tK9e0KxgD4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tK9e0KxgD4 .navbar {
    height: 77px;
  }
  .cid-tK9e0KxgD4 .navbar.opened {
    height: auto;
  }
  .cid-tK9e0KxgD4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tK9e0KYivJ {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/using-cpmputer.jpg");
}
.cid-tK9e0KYivJ .mbr-overlay {
  background: #08579f;
  background: linear-gradient(90deg, #08579f, #1dc9cb);
}
.cid-tK9e0KYivJ .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tK9e0KYivJ .mbr-section-subtitle,
.cid-tK9e0KYivJ mbr-section-btn {
  color: #f4f8fa;
}
.cid-tK9e0KYivJ B {
  color: #333333;
}
.cid-tK9e0KYivJ H1 {
  color: #ffffff;
}
.cid-tK9e0L9Rad {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tK9e0L9Rad .container {
    max-width: 1400px;
  }
}
.cid-tK9e0L9Rad .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tK9e0L9Rad .card-wrapper {
  margin-top: 3rem;
}
.cid-tK9e0L9Rad .row {
  justify-content: center;
}
.cid-tK9e0L9Rad .mbr-section-title {
  color: #232323;
}
.cid-tKygQ7G7Yp {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKygQ7G7Yp .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKygQ7G7Yp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKygQ7G7Yp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKy3eBE5rH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKy3eBE5rH .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tKy3eBE5rH .mbr-section-title {
  margin: 0;
}
.cid-tKy3eBE5rH .card-img {
  text-align: center;
}
.cid-tKy3eBE5rH .mbr-section-subtitle,
.cid-tKy3eBE5rH .mbr-text {
  color: #8d97ad;
}
.cid-tKy3eBE5rH .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tKy3eBE5rH .card-img,
  .cid-tKy3eBE5rH .mbr-text,
  .cid-tKy3eBE5rH .mbr-card-title,
  .cid-tKy3eBE5rH .mbr-section-subtitle,
  .cid-tKy3eBE5rH .mbr-section-title,
  .cid-tKy3eBE5rH .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tKy3eBE5rH .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tKy3eBE5rH .mbr-text {
  color: #232323;
}
.cid-tKy3eBE5rH .mbr-card-title,
.cid-tKy3eBE5rH .card-img {
  color: #232323;
}
.cid-tKy3gl5CjW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKy3gl5CjW .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tKy3gl5CjW .mbr-section-title {
  margin: 0;
}
.cid-tKy3gl5CjW .card-img {
  text-align: center;
}
.cid-tKy3gl5CjW .mbr-section-subtitle,
.cid-tKy3gl5CjW .mbr-text {
  color: #8d97ad;
}
.cid-tKy3gl5CjW .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tKy3gl5CjW .card-img,
  .cid-tKy3gl5CjW .mbr-text,
  .cid-tKy3gl5CjW .mbr-card-title,
  .cid-tKy3gl5CjW .mbr-section-subtitle,
  .cid-tKy3gl5CjW .mbr-section-title,
  .cid-tKy3gl5CjW .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tKy3gl5CjW .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tKy3gl5CjW .mbr-text {
  color: #232323;
}
.cid-tKy3gl5CjW .mbr-card-title,
.cid-tKy3gl5CjW .card-img {
  color: #232323;
}
.cid-tK9u2IwsIC {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-tK9u2IwsIC .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tK9u2IwsIC .section-text {
  color: #8d97ad;
}
.cid-tK9u2IwsIC .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tK9u2IwsIC .text-block {
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tK9u2IwsIC .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9u2IwsIC .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tK9u2IwsIC .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tK9u2IwsIC .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tK9u2IwsIC .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9u2IwsIC .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9u2IwsIC .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #333333;
}
@media (max-width: 767px) {
  .cid-tK9u2IwsIC .mbr-text {
    text-align: center;
  }
}
.cid-tK9u2IwsIC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tK9u2IwsIC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tK9u2IwsIC .mbr-text {
  color: #232323;
}
.cid-tKeDZWW0gD {
  padding-top: 75px;
  padding-bottom: 45px;
  background: #f4f8fa;
}
.cid-tKeDZWW0gD .mbr-section-subtitle,
.cid-tKeDZWW0gD .caption-text {
  color: #8d97ad;
}
.cid-tKeDZWW0gD .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
}
.cid-tKeDZWW0gD .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-tKeDZWW0gD .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-tKeDZWW0gD .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-tKeDZWW0gD .mbr-section-title {
  text-align: center;
}
.cid-tKeDZWW0gD .mbr-section-subtitle {
  color: #232323;
}
.cid-tKeDZWW0gD .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tK9e0LuOFs {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tK9e0LuOFs .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tK9e0LuOFs .mbr-section-title {
  text-align: center;
}
.cid-tK9e0N5StL {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tK9e0N5StL .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tK9e0N5StL .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9e0N5StL .text-content {
  padding-right: 1.5rem;
}
.cid-tK9e0N5StL .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0N5StL .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tK9e0N5StL .counter-container {
  padding-top: 1rem;
}
.cid-tK9e0N5StL .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0N5StL .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9e0N5StL .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tK9e0N5StL .main-row {
    margin: 0;
  }
  .cid-tK9e0N5StL .mbr-section-title,
  .cid-tK9e0N5StL .mbr-text,
  .cid-tK9e0N5StL .list,
  .cid-tK9e0N5StL .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tK9e0N5StL .text-content {
    padding: 0;
  }
}
.cid-tK9e0N5StL .mbr-text,
.cid-tK9e0N5StL .mbr-section-btn {
  color: #000000;
}
.cid-tK9e0Nwyp9 {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tK9e0Nwyp9 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tK9e0Nwyp9 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9e0Nwyp9 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0Nwyp9 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tK9e0Nwyp9 .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0Nwyp9 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tK9e0Nwyp9 .counter-container {
  padding-top: 1rem;
}
.cid-tK9e0Nwyp9 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0Nwyp9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9e0Nwyp9 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tK9e0Nwyp9 .main-row {
    margin: 0;
  }
  .cid-tK9e0Nwyp9 .mbr-section-title,
  .cid-tK9e0Nwyp9 .mbr-text,
  .cid-tK9e0Nwyp9 .list,
  .cid-tK9e0Nwyp9 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tK9e0Nwyp9 .text-content {
    padding: 0;
  }
}
.cid-tK9e0Nwyp9 .mbr-text,
.cid-tK9e0Nwyp9 .mbr-section-btn {
  color: #000000;
}
.cid-tK9e0NJKc3 {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tK9e0NJKc3 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tK9e0NJKc3 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9e0NJKc3 .text-content {
  padding-right: 1.5rem;
}
.cid-tK9e0NJKc3 .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0NJKc3 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tK9e0NJKc3 .counter-container {
  padding-top: 1rem;
}
.cid-tK9e0NJKc3 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0NJKc3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9e0NJKc3 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tK9e0NJKc3 .main-row {
    margin: 0;
  }
  .cid-tK9e0NJKc3 .mbr-section-title,
  .cid-tK9e0NJKc3 .mbr-text,
  .cid-tK9e0NJKc3 .list,
  .cid-tK9e0NJKc3 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tK9e0NJKc3 .text-content {
    padding: 0;
  }
}
.cid-tK9e0NJKc3 .mbr-text,
.cid-tK9e0NJKc3 .mbr-section-btn {
  color: #000000;
}
.cid-tK9e0NkyAK {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tK9e0NkyAK .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tK9e0NkyAK .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9e0NkyAK .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0NkyAK .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tK9e0NkyAK .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0NkyAK .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tK9e0NkyAK .counter-container {
  padding-top: 1rem;
}
.cid-tK9e0NkyAK .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0NkyAK .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9e0NkyAK .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tK9e0NkyAK .main-row {
    margin: 0;
  }
  .cid-tK9e0NkyAK .mbr-section-title,
  .cid-tK9e0NkyAK .mbr-text,
  .cid-tK9e0NkyAK .list,
  .cid-tK9e0NkyAK .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tK9e0NkyAK .text-content {
    padding: 0;
  }
}
.cid-tK9e0NkyAK .mbr-text,
.cid-tK9e0NkyAK .mbr-section-btn {
  color: #000000;
}
.cid-tK9e0NXhXs {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tK9e0NXhXs .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tK9e0NXhXs .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9e0NXhXs .text-content {
  padding-right: 1.5rem;
}
.cid-tK9e0NXhXs .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0NXhXs .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tK9e0NXhXs .counter-container {
  padding-top: 1rem;
}
.cid-tK9e0NXhXs .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0NXhXs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9e0NXhXs .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tK9e0NXhXs .main-row {
    margin: 0;
  }
  .cid-tK9e0NXhXs .mbr-section-title,
  .cid-tK9e0NXhXs .mbr-text,
  .cid-tK9e0NXhXs .list,
  .cid-tK9e0NXhXs .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tK9e0NXhXs .text-content {
    padding: 0;
  }
}
.cid-tK9e0NXhXs .mbr-text,
.cid-tK9e0NXhXs .mbr-section-btn {
  color: #000000;
}
.cid-tK9e0MQ88F {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-tK9e0MQ88F .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tK9e0MQ88F .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9e0MQ88F .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0MQ88F .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tK9e0MQ88F .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0MQ88F .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tK9e0MQ88F .counter-container {
  padding-top: 1rem;
}
.cid-tK9e0MQ88F .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0MQ88F .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9e0MQ88F .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tK9e0MQ88F .main-row {
    margin: 0;
  }
  .cid-tK9e0MQ88F .mbr-section-title,
  .cid-tK9e0MQ88F .mbr-text,
  .cid-tK9e0MQ88F .list,
  .cid-tK9e0MQ88F .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tK9e0MQ88F .text-content {
    padding: 0;
  }
}
.cid-tK9e0MQ88F .mbr-text,
.cid-tK9e0MQ88F .mbr-section-btn {
  color: #000000;
}
.cid-tK9e0MD261 {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tK9e0MD261 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tK9e0MD261 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tK9e0MD261 .text-content {
  padding-right: 1.5rem;
}
.cid-tK9e0MD261 .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0MD261 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tK9e0MD261 .counter-container {
  padding-top: 1rem;
}
.cid-tK9e0MD261 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tK9e0MD261 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tK9e0MD261 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tK9e0MD261 .main-row {
    margin: 0;
  }
  .cid-tK9e0MD261 .mbr-section-title,
  .cid-tK9e0MD261 .mbr-text,
  .cid-tK9e0MD261 .list,
  .cid-tK9e0MD261 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tK9e0MD261 .text-content {
    padding: 0;
  }
}
.cid-tK9e0MD261 .mbr-text,
.cid-tK9e0MD261 .mbr-section-btn {
  color: #000000;
}
.cid-tKaFtAwKzy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tKaFtAwKzy .mbr-text {
  color: #232323;
}
.cid-tKajgk9U13 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-tKajgk9U13 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKajgk9U13 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKajgk9U13 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKajgk9U13 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKajgk9U13 .mbr-text {
  color: #8d97ad;
}
.cid-tKajgk9U13 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKajgk9U13 .counter-container {
  padding-top: 1rem;
}
.cid-tKajgk9U13 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKajgk9U13 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKajgk9U13 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKajgk9U13 .main-row {
    margin: 0;
  }
  .cid-tKajgk9U13 .mbr-section-title,
  .cid-tKajgk9U13 .mbr-text,
  .cid-tKajgk9U13 .list,
  .cid-tKajgk9U13 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKajgk9U13 .text-content {
    padding: 0;
  }
}
.cid-tKajgk9U13 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKajgk9U13 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKajgk9U13 .mbr-text,
.cid-tKajgk9U13 .mbr-section-btn {
  color: #232323;
}
.cid-tKak8qp13p {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tKak8qp13p .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKak8qp13p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKak8qp13p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKak8qp13p .mbr-section-title {
  text-align: center;
}
.cid-tKag86w5HJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKag86w5HJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKag86w5HJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKag86w5HJ .container-fluid {
  padding: 0 56px;
}
@media (max-width: 768px) {
  .cid-tKag86w5HJ .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tKag86w5HJ .container {
    padding: 0 26px;
  }
}
.cid-tKag86w5HJ .row {
  justify-content: center;
}
.cid-tKag86w5HJ .item {
  padding: 0 20px;
  margin-bottom: 50px;
}
.cid-tKag86w5HJ .item:hover .item-wrapper .item-img img {
  transform: scale(1.06);
}
.cid-tKag86w5HJ .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tKag86w5HJ .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-tKag86w5HJ .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-tKag86w5HJ .item .item-wrapper .item-content a:hover .mbr-desc,
.cid-tKag86w5HJ .item .item-wrapper .item-content a:hover .mbr-date {
  opacity: .7;
}
.cid-tKag86w5HJ .item .item-wrapper .item-content a .mbr-desc,
.cid-tKag86w5HJ .item .item-wrapper .item-content a .mbr-date {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tKag86w5HJ .item-title {
  color: #232323;
}
.cid-tKag86w5HJ .mbr-date {
  color: #ff4f7b;
}
.cid-tKag86w5HJ .mbr-desc {
  color: #cacaca;
}
.cid-tKaiE6nZzV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKaiE6nZzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKaiE6nZzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKaiE6nZzV .container-fluid {
  padding: 0 56px;
}
@media (max-width: 768px) {
  .cid-tKaiE6nZzV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tKaiE6nZzV .container {
    padding: 0 26px;
  }
}
.cid-tKaiE6nZzV .row {
  justify-content: center;
}
.cid-tKaiE6nZzV .item {
  padding: 0 20px;
  margin-bottom: 50px;
}
.cid-tKaiE6nZzV .item:hover .item-wrapper .item-img img {
  transform: scale(1.06);
}
.cid-tKaiE6nZzV .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tKaiE6nZzV .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-tKaiE6nZzV .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-tKaiE6nZzV .item .item-wrapper .item-content a:hover .mbr-desc,
.cid-tKaiE6nZzV .item .item-wrapper .item-content a:hover .mbr-date {
  opacity: .7;
}
.cid-tKaiE6nZzV .item .item-wrapper .item-content a .mbr-desc,
.cid-tKaiE6nZzV .item .item-wrapper .item-content a .mbr-date {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tKaiE6nZzV .item-title {
  color: #232323;
}
.cid-tKaiE6nZzV .mbr-date {
  color: #cacaca;
}
.cid-tKaiE6nZzV .mbr-desc {
  color: #cacaca;
}
.cid-tKak9qRuId {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tKak9qRuId .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKak9qRuId .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKak9qRuId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKak9qRuId .mbr-section-title {
  text-align: center;
}
.cid-tKanGqQvSR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKanGqQvSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKanGqQvSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKanGqQvSR .container-fluid {
  padding: 0 56px;
}
@media (max-width: 768px) {
  .cid-tKanGqQvSR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tKanGqQvSR .container {
    padding: 0 26px;
  }
}
.cid-tKanGqQvSR .row {
  justify-content: center;
}
.cid-tKanGqQvSR .item {
  padding: 0 20px;
  margin-bottom: 50px;
}
.cid-tKanGqQvSR .item:hover .item-wrapper .item-img img {
  transform: scale(1.06);
}
.cid-tKanGqQvSR .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tKanGqQvSR .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-tKanGqQvSR .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-tKanGqQvSR .item .item-wrapper .item-content a:hover .mbr-desc,
.cid-tKanGqQvSR .item .item-wrapper .item-content a:hover .mbr-date {
  opacity: .7;
}
.cid-tKanGqQvSR .item .item-wrapper .item-content a .mbr-desc,
.cid-tKanGqQvSR .item .item-wrapper .item-content a .mbr-date {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tKanGqQvSR .item-title {
  color: #232323;
}
.cid-tKanGqQvSR .mbr-date {
  color: #cacaca;
}
.cid-tKanGqQvSR .mbr-desc {
  color: #cacaca;
}
.cid-tKanH75fZm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tKanH75fZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKanH75fZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKanH75fZm .container-fluid {
  padding: 0 56px;
}
@media (max-width: 768px) {
  .cid-tKanH75fZm .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tKanH75fZm .container {
    padding: 0 26px;
  }
}
.cid-tKanH75fZm .row {
  justify-content: center;
}
.cid-tKanH75fZm .item {
  padding: 0 20px;
  margin-bottom: 50px;
}
.cid-tKanH75fZm .item:hover .item-wrapper .item-img img {
  transform: scale(1.06);
}
.cid-tKanH75fZm .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tKanH75fZm .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-tKanH75fZm .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-tKanH75fZm .item .item-wrapper .item-content a:hover .mbr-desc,
.cid-tKanH75fZm .item .item-wrapper .item-content a:hover .mbr-date {
  opacity: .7;
}
.cid-tKanH75fZm .item .item-wrapper .item-content a .mbr-desc,
.cid-tKanH75fZm .item .item-wrapper .item-content a .mbr-date {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tKanH75fZm .item-title {
  color: #232323;
}
.cid-tKanH75fZm .mbr-date {
  color: #ff4f7b;
}
.cid-tKanH75fZm .mbr-desc {
  color: #cacaca;
}
.cid-tK9e0OE3h4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tK9e0OE3h4 .mbr-text {
  color: #8d97ad;
}
.cid-tK9e0OE3h4 .blockquote-quote svg {
  height: 40px;
  width: 40px;
  fill: #8d97ad;
}
.cid-tK9e0OE3h4 .signature > span {
  color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tK9e0OE3h4 .blockquote-quote {
    text-align: left;
  }
  .cid-tK9e0OE3h4 .signature {
    text-align: left;
  }
}
.cid-tK9e0OE3h4 .mbr-text,
.cid-tK9e0OE3h4 .blockquote-quote {
  text-align: left;
  color: #232323;
}
.cid-tK9e0OOArH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tK9e0OOArH .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tK9e0OOArH .panel-group {
  width: 100%;
}
.cid-tK9e0OOArH .panel-text,
.cid-tK9e0OOArH .header-text,
.cid-tK9e0OOArH .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tK9e0OOArH .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-tK9e0OOArH .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-tK9e0OOArH .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-tK9e0OOArH .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tK9e0OOArH .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tK9e0OOArH .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-tK9e0OOArH .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-tK9e0OOArH .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-tK9e0OOArH .card .panel-body {
  background: #ffffff;
}
.cid-tK9e0OOArH .sign {
  color: #232323;
}
.cid-tK9e0OOArH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tK9e0OOArH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tK9e0OOArH .panel-text {
  color: #232323;
}
.cid-tK9e0OOArH .header-text {
  color: #1dc9cb;
}
.cid-tK9e0P7Xpc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tK9e0P7Xpc .mbr-overlay {
  background: #232323;
}
.cid-tK9e0P7Xpc .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tK9e0P7Xpc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tK9e0P7Xpc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tKg63YYtah .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKg63YYtah .nav-item,
.cid-tKg63YYtah .nav-link,
.cid-tKg63YYtah .navbar-caption {
  font-weight: normal;
}
.cid-tKg63YYtah .nav-item:focus,
.cid-tKg63YYtah .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKg63YYtah .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKg63YYtah .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKg63YYtah .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKg63YYtah .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKg63YYtah .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKg63YYtah .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKg63YYtah .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKg63YYtah .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKg63YYtah .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKg63YYtah .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKg63YYtah .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKg63YYtah .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKg63YYtah .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKg63YYtah .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKg63YYtah .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKg63YYtah .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKg63YYtah .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKg63YYtah .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKg63YYtah .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKg63YYtah .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKg63YYtah .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKg63YYtah .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKg63YYtah .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKg63YYtah .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKg63YYtah .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKg63YYtah .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKg63YYtah .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKg63YYtah .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKg63YYtah .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKg63YYtah .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKg63YYtah .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKg63YYtah .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKg63YYtah .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKg63YYtah .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKg63YYtah .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKg63YYtah .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKg63YYtah .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKg63YYtah .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKg63YYtah .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKg63YYtah .dropdown-item.active,
.cid-tKg63YYtah .dropdown-item:active {
  background-color: transparent;
}
.cid-tKg63YYtah .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKg63YYtah .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKg63YYtah .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKg63YYtah .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKg63YYtah .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKg63YYtah ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKg63YYtah .navbar-buttons {
  text-align: center;
}
.cid-tKg63YYtah button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKg63YYtah button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKg63YYtah button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKg63YYtah button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKg63YYtah button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKg63YYtah button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKg63YYtah nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKg63YYtah nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKg63YYtah nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKg63YYtah nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKg63YYtah .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKg63YYtah a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKg63YYtah .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKg63YYtah .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKg63YYtah .soc-item {
  margin: .5rem .3rem;
}
.cid-tKg63YYtah .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKg63YYtah .navbar {
    height: 77px;
  }
  .cid-tKg63YYtah .navbar.opened {
    height: auto;
  }
  .cid-tKg63YYtah .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKg63ZvS0o {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-11.jpg");
}
.cid-tKg63ZvS0o .mbr-overlay {
  background: #000000;
}
.cid-tKg63ZvS0o .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKg63ZvS0o .mbr-section-subtitle,
.cid-tKg63ZvS0o mbr-section-btn {
  color: #232323;
}
.cid-tKg63ZvS0o B {
  color: #333333;
}
.cid-tKg63ZvS0o H1 {
  color: #ffffff;
}
.cid-uuEdOZYaht {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-uuEdOZYaht .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uuEdOZYaht .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uuEdOZYaht .text-content {
  padding-right: 1.5rem;
}
.cid-uuEdOZYaht .mbr-text {
  color: #8d97ad;
}
.cid-uuEdOZYaht .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-uuEdOZYaht .counter-container {
  padding-top: 1rem;
}
.cid-uuEdOZYaht .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-uuEdOZYaht .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-uuEdOZYaht .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-uuEdOZYaht .main-row {
    margin: 0;
  }
  .cid-uuEdOZYaht .mbr-section-title,
  .cid-uuEdOZYaht .mbr-text,
  .cid-uuEdOZYaht .list,
  .cid-uuEdOZYaht .mbr-section-btn {
    text-align: center !important;
  }
  .cid-uuEdOZYaht .text-content {
    padding: 0;
  }
}
.cid-uuEdOZYaht .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuEdOZYaht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuEdOZYaht .mbr-text,
.cid-uuEdOZYaht .mbr-section-btn {
  color: #3c3c3c;
}
.cid-tKg7l4N0Jy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-tKg7l4N0Jy .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tKg7l4N0Jy .panel-group {
  width: 100%;
}
.cid-tKg7l4N0Jy .panel-text,
.cid-tKg7l4N0Jy .header-text,
.cid-tKg7l4N0Jy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKg7l4N0Jy .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-tKg7l4N0Jy .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-tKg7l4N0Jy .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-tKg7l4N0Jy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKg7l4N0Jy .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tKg7l4N0Jy .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-tKg7l4N0Jy .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-tKg7l4N0Jy .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-tKg7l4N0Jy .card .panel-body {
  background: #ffffff;
}
.cid-tKg7l4N0Jy .sign {
  color: #232323;
}
.cid-tKg7l4N0Jy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKg7l4N0Jy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKg7l4N0Jy .panel-text {
  color: #232323;
}
.cid-tKg7l4N0Jy .header-text {
  color: #1dc9cb;
}
.cid-tKkeTxp3of {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKkeTxp3of .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tKkeTxp3of .panel-group {
  width: 100%;
}
.cid-tKkeTxp3of .panel-text,
.cid-tKkeTxp3of .header-text,
.cid-tKkeTxp3of .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKkeTxp3of .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-tKkeTxp3of .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-tKkeTxp3of .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-tKkeTxp3of .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKkeTxp3of .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tKkeTxp3of .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-tKkeTxp3of .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-tKkeTxp3of .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-tKkeTxp3of .card .panel-body {
  background: #ffffff;
}
.cid-tKkeTxp3of .sign {
  color: #232323;
}
.cid-tKkeTxp3of .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKkeTxp3of .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKkeTxp3of .panel-text {
  color: #232323;
}
.cid-tKkeTxp3of .header-text {
  color: #1dc9cb;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tLc9CWxGh1 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/services.jpeg");
}
.cid-tLc9CWxGh1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLc9CWxGh1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLcd013XxV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLcd013XxV .mbr-section-subtitle {
  color: #333333;
  text-align: center;
}
.cid-tLcd013XxV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLcd013XxV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLcd013XxV .mbr-section-title {
  text-align: center;
}
.cid-tLc9jApnjz {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tLc9jApnjz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tLiHY9hFnU {
  background-image: url("../../../assets/images/mbr-2.jpg");
}
.cid-tLiHY9hFnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLiHY9hFnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLiDhGj5le .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLiDhGj5le .nav-item,
.cid-tLiDhGj5le .nav-link,
.cid-tLiDhGj5le .navbar-caption {
  font-weight: normal;
}
.cid-tLiDhGj5le .nav-item:focus,
.cid-tLiDhGj5le .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tLiDhGj5le .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tLiDhGj5le .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLiDhGj5le .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tLiDhGj5le .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tLiDhGj5le .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tLiDhGj5le .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLiDhGj5le .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLiDhGj5le .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLiDhGj5le .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLiDhGj5le .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLiDhGj5le .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLiDhGj5le .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tLiDhGj5le .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLiDhGj5le .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLiDhGj5le .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLiDhGj5le .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tLiDhGj5le .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLiDhGj5le .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLiDhGj5le .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLiDhGj5le .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLiDhGj5le .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLiDhGj5le .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLiDhGj5le .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLiDhGj5le .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLiDhGj5le .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLiDhGj5le .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLiDhGj5le .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLiDhGj5le .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLiDhGj5le .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLiDhGj5le .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tLiDhGj5le .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLiDhGj5le .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLiDhGj5le .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLiDhGj5le .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLiDhGj5le .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLiDhGj5le .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLiDhGj5le .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLiDhGj5le .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLiDhGj5le .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLiDhGj5le .dropdown-item.active,
.cid-tLiDhGj5le .dropdown-item:active {
  background-color: transparent;
}
.cid-tLiDhGj5le .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLiDhGj5le .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLiDhGj5le .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLiDhGj5le .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLiDhGj5le .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLiDhGj5le ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLiDhGj5le .navbar-buttons {
  text-align: center;
}
.cid-tLiDhGj5le button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLiDhGj5le button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tLiDhGj5le button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLiDhGj5le button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLiDhGj5le button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLiDhGj5le button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLiDhGj5le nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLiDhGj5le nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLiDhGj5le nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLiDhGj5le nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLiDhGj5le .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLiDhGj5le a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLiDhGj5le .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tLiDhGj5le .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tLiDhGj5le .soc-item {
  margin: .5rem .3rem;
}
.cid-tLiDhGj5le .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLiDhGj5le .navbar {
    height: 77px;
  }
  .cid-tLiDhGj5le .navbar.opened {
    height: auto;
  }
  .cid-tLiDhGj5le .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLiDhIqMNR {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tLiDhIqMNR .mbr-text {
  color: #444;
}
.cid-tLiDhIqMNR .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tLiDhIqMNR .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tLiDhIqMNR .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLiDhIqMNR .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tLiDhIqMNR .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tLiDhIqMNR .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLiDhIqMNR .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tLiDhIqMNR .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tLiDhIqMNR .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tLiDhIqMNR .links {
  color: #ffffff;
}
.cid-tKby1oztWz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKby1oztWz .nav-item,
.cid-tKby1oztWz .nav-link,
.cid-tKby1oztWz .navbar-caption {
  font-weight: normal;
}
.cid-tKby1oztWz .nav-item:focus,
.cid-tKby1oztWz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKby1oztWz .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKby1oztWz .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKby1oztWz .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKby1oztWz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKby1oztWz .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKby1oztWz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKby1oztWz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKby1oztWz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKby1oztWz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKby1oztWz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKby1oztWz .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKby1oztWz .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKby1oztWz .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKby1oztWz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKby1oztWz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKby1oztWz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKby1oztWz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKby1oztWz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKby1oztWz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKby1oztWz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKby1oztWz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKby1oztWz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKby1oztWz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKby1oztWz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKby1oztWz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKby1oztWz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKby1oztWz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKby1oztWz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKby1oztWz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKby1oztWz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKby1oztWz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKby1oztWz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKby1oztWz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKby1oztWz .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKby1oztWz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKby1oztWz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKby1oztWz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKby1oztWz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKby1oztWz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKby1oztWz .dropdown-item.active,
.cid-tKby1oztWz .dropdown-item:active {
  background-color: transparent;
}
.cid-tKby1oztWz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKby1oztWz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKby1oztWz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKby1oztWz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKby1oztWz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKby1oztWz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKby1oztWz .navbar-buttons {
  text-align: center;
}
.cid-tKby1oztWz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKby1oztWz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKby1oztWz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKby1oztWz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKby1oztWz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKby1oztWz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKby1oztWz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKby1oztWz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKby1oztWz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKby1oztWz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKby1oztWz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKby1oztWz a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKby1oztWz .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKby1oztWz .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKby1oztWz .soc-item {
  margin: .5rem .3rem;
}
.cid-tKby1oztWz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKby1oztWz .navbar {
    height: 77px;
  }
  .cid-tKby1oztWz .navbar.opened {
    height: auto;
  }
  .cid-tKby1oztWz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKby1oYizn {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-tKby1oYizn .mbr-overlay {
  background: #444444;
}
.cid-tKby1oYizn .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKby1oYizn .mbr-section-subtitle,
.cid-tKby1oYizn mbr-section-btn {
  color: #ffffff;
}
.cid-tKby1oYizn B {
  color: #333333;
}
.cid-tKby1oYizn H1 {
  color: #ffffff;
}
.cid-tKePNT8TSY {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-4.jpeg");
}
.cid-tKePNT8TSY .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKePNT8TSY .section-text {
  color: #8d97ad;
}
.cid-tKePNT8TSY .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tKePNT8TSY .text-block {
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKePNT8TSY .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKePNT8TSY .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tKePNT8TSY .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tKePNT8TSY .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tKePNT8TSY .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKePNT8TSY .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tKePNT8TSY .mbr-text {
    text-align: center;
  }
}
.cid-tKePNT8TSY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKePNT8TSY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKePNT8TSY .mbr-text {
  color: #232323;
}
.cid-tKeWX2mPmG {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-2.jpeg");
}
.cid-tKeWX2mPmG .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tKeWX2mPmG .section-text {
  color: #8d97ad;
}
.cid-tKeWX2mPmG .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tKeWX2mPmG .text-block {
  padding-left: 0;
}
.cid-tKeWX2mPmG .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKeWX2mPmG .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tKeWX2mPmG .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tKeWX2mPmG .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tKeWX2mPmG .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKeWX2mPmG .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tKeWX2mPmG .mbr-text {
    text-align: center;
  }
}
.cid-tKeWX2mPmG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKeWX2mPmG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKeWX2mPmG .mbr-text {
  color: #232323;
}
.cid-tKeRqg0RoG {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-3.jpeg");
}
.cid-tKeRqg0RoG .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKeRqg0RoG .section-text {
  color: #8d97ad;
}
.cid-tKeRqg0RoG .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tKeRqg0RoG .text-block {
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKeRqg0RoG .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKeRqg0RoG .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tKeRqg0RoG .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tKeRqg0RoG .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tKeRqg0RoG .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKeRqg0RoG .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tKeRqg0RoG .mbr-text {
    text-align: center;
  }
}
.cid-tKeRqg0RoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKeRqg0RoG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKeRqg0RoG .mbr-text {
  color: #232323;
}
.cid-tKeRqKgS5r {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-5.jpg");
}
.cid-tKeRqKgS5r .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tKeRqKgS5r .section-text {
  color: #8d97ad;
}
.cid-tKeRqKgS5r .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tKeRqKgS5r .text-block {
  padding-left: 0;
}
.cid-tKeRqKgS5r .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKeRqKgS5r .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tKeRqKgS5r .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tKeRqKgS5r .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tKeRqKgS5r .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKeRqKgS5r .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tKeRqKgS5r .mbr-text {
    text-align: center;
  }
}
.cid-tKeRqKgS5r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKeRqKgS5r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKeRqKgS5r .mbr-text {
  color: #232323;
}
.cid-tKeTybcuGV {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-6.jpg");
}
.cid-tKeTybcuGV .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKeTybcuGV .section-text {
  color: #8d97ad;
}
.cid-tKeTybcuGV .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tKeTybcuGV .text-block {
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKeTybcuGV .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKeTybcuGV .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tKeTybcuGV .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tKeTybcuGV .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tKeTybcuGV .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKeTybcuGV .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tKeTybcuGV .mbr-text {
    text-align: center;
  }
}
.cid-tKeTybcuGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKeTybcuGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKeTybcuGV .mbr-text {
  color: #232323;
}
.cid-tKeTz2W9YE {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-7.jpg");
}
.cid-tKeTz2W9YE .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tKeTz2W9YE .section-text {
  color: #8d97ad;
}
.cid-tKeTz2W9YE .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-tKeTz2W9YE .text-block {
  padding-left: 0;
}
.cid-tKeTz2W9YE .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKeTz2W9YE .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-tKeTz2W9YE .mbr-figure .card-text {
  padding: 2rem;
}
.cid-tKeTz2W9YE .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-tKeTz2W9YE .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKeTz2W9YE .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tKeTz2W9YE .mbr-text {
    text-align: center;
  }
}
.cid-tKeTz2W9YE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKeTz2W9YE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKeTz2W9YE .mbr-text {
  color: #232323;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tKaG9Ie8rx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKaG9Ie8rx .nav-item,
.cid-tKaG9Ie8rx .nav-link,
.cid-tKaG9Ie8rx .navbar-caption {
  font-weight: normal;
}
.cid-tKaG9Ie8rx .nav-item:focus,
.cid-tKaG9Ie8rx .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKaG9Ie8rx .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKaG9Ie8rx .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKaG9Ie8rx .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKaG9Ie8rx .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKaG9Ie8rx .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKaG9Ie8rx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKaG9Ie8rx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKaG9Ie8rx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKaG9Ie8rx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKaG9Ie8rx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKaG9Ie8rx .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKaG9Ie8rx .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKaG9Ie8rx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKaG9Ie8rx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKaG9Ie8rx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKaG9Ie8rx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKaG9Ie8rx .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKaG9Ie8rx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKaG9Ie8rx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKaG9Ie8rx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKaG9Ie8rx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKaG9Ie8rx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKaG9Ie8rx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKaG9Ie8rx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKaG9Ie8rx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKaG9Ie8rx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKaG9Ie8rx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKaG9Ie8rx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKaG9Ie8rx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKaG9Ie8rx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKaG9Ie8rx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKaG9Ie8rx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKaG9Ie8rx .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKaG9Ie8rx .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKaG9Ie8rx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKaG9Ie8rx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKaG9Ie8rx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKaG9Ie8rx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKaG9Ie8rx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKaG9Ie8rx .dropdown-item.active,
.cid-tKaG9Ie8rx .dropdown-item:active {
  background-color: transparent;
}
.cid-tKaG9Ie8rx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKaG9Ie8rx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKaG9Ie8rx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKaG9Ie8rx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKaG9Ie8rx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKaG9Ie8rx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKaG9Ie8rx .navbar-buttons {
  text-align: center;
}
.cid-tKaG9Ie8rx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKaG9Ie8rx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKaG9Ie8rx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKaG9Ie8rx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKaG9Ie8rx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKaG9Ie8rx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKaG9Ie8rx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKaG9Ie8rx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKaG9Ie8rx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKaG9Ie8rx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKaG9Ie8rx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKaG9Ie8rx a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKaG9Ie8rx .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKaG9Ie8rx .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKaG9Ie8rx .soc-item {
  margin: .5rem .3rem;
}
.cid-tKaG9Ie8rx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKaG9Ie8rx .navbar {
    height: 77px;
  }
  .cid-tKaG9Ie8rx .navbar.opened {
    height: auto;
  }
  .cid-tKaG9Ie8rx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKaG9IUhBC {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-11.jpeg");
}
.cid-tKaG9IUhBC .mbr-overlay {
  background: #559227;
  background: linear-gradient(90deg, #559227, #a61a3d);
}
.cid-tKaG9IUhBC .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKaG9IUhBC .mbr-section-subtitle,
.cid-tKaG9IUhBC mbr-section-btn {
  color: #ffffff;
}
.cid-tKaG9IUhBC B {
  color: #333333;
}
.cid-tKaG9IUhBC H1 {
  color: #ffffff;
}
.cid-tKaG9JfiWU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tKaG9JfiWU .container {
    max-width: 1400px;
  }
}
.cid-tKaG9JfiWU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tKaG9JfiWU .card-wrapper {
  margin-top: 3rem;
}
.cid-tKaG9JfiWU .row {
  justify-content: center;
}
.cid-tKaG9JfiWU .mbr-section-title {
  color: #232323;
}
.cid-tKaG9Kzsa8 {
  padding-top: 100px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tKaG9Kzsa8 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKaG9Kzsa8 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKaG9Kzsa8 .text-content {
  padding-right: 1.5rem;
}
.cid-tKaG9Kzsa8 .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9Kzsa8 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKaG9Kzsa8 .counter-container {
  padding-top: 1rem;
}
.cid-tKaG9Kzsa8 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9Kzsa8 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKaG9Kzsa8 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKaG9Kzsa8 .main-row {
    margin: 0;
  }
  .cid-tKaG9Kzsa8 .mbr-section-title,
  .cid-tKaG9Kzsa8 .mbr-text,
  .cid-tKaG9Kzsa8 .list,
  .cid-tKaG9Kzsa8 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKaG9Kzsa8 .text-content {
    padding: 0;
  }
}
.cid-tKaG9Kzsa8 .mbr-text,
.cid-tKaG9Kzsa8 .mbr-section-btn {
  color: #000000;
}
.cid-tKaG9KYthg {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKaG9KYthg .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKaG9KYthg .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKaG9KYthg .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9KYthg .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKaG9KYthg .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9KYthg .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKaG9KYthg .counter-container {
  padding-top: 1rem;
}
.cid-tKaG9KYthg .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9KYthg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKaG9KYthg .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKaG9KYthg .main-row {
    margin: 0;
  }
  .cid-tKaG9KYthg .mbr-section-title,
  .cid-tKaG9KYthg .mbr-text,
  .cid-tKaG9KYthg .list,
  .cid-tKaG9KYthg .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKaG9KYthg .text-content {
    padding: 0;
  }
}
.cid-tKaG9KYthg .mbr-text,
.cid-tKaG9KYthg .mbr-section-btn {
  color: #000000;
}
.cid-tKaG9LwDn8 {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKaG9LwDn8 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKaG9LwDn8 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKaG9LwDn8 .text-content {
  padding-right: 1.5rem;
}
.cid-tKaG9LwDn8 .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9LwDn8 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKaG9LwDn8 .counter-container {
  padding-top: 1rem;
}
.cid-tKaG9LwDn8 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9LwDn8 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKaG9LwDn8 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKaG9LwDn8 .main-row {
    margin: 0;
  }
  .cid-tKaG9LwDn8 .mbr-section-title,
  .cid-tKaG9LwDn8 .mbr-text,
  .cid-tKaG9LwDn8 .list,
  .cid-tKaG9LwDn8 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKaG9LwDn8 .text-content {
    padding: 0;
  }
}
.cid-tKaG9LwDn8 .mbr-text,
.cid-tKaG9LwDn8 .mbr-section-btn {
  color: #000000;
}
.cid-tKaG9LN27c {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKaG9LN27c .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKaG9LN27c .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKaG9LN27c .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9LN27c .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKaG9LN27c .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9LN27c .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKaG9LN27c .counter-container {
  padding-top: 1rem;
}
.cid-tKaG9LN27c .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9LN27c .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKaG9LN27c .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKaG9LN27c .main-row {
    margin: 0;
  }
  .cid-tKaG9LN27c .mbr-section-title,
  .cid-tKaG9LN27c .mbr-text,
  .cid-tKaG9LN27c .list,
  .cid-tKaG9LN27c .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKaG9LN27c .text-content {
    padding: 0;
  }
}
.cid-tKaG9LN27c .mbr-text,
.cid-tKaG9LN27c .mbr-section-btn {
  color: #000000;
}
.cid-tKaG9Lhh3v {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tKaG9Lhh3v .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKaG9Lhh3v .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKaG9Lhh3v .text-content {
  padding-right: 1.5rem;
}
.cid-tKaG9Lhh3v .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9Lhh3v .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKaG9Lhh3v .counter-container {
  padding-top: 1rem;
}
.cid-tKaG9Lhh3v .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9Lhh3v .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKaG9Lhh3v .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKaG9Lhh3v .main-row {
    margin: 0;
  }
  .cid-tKaG9Lhh3v .mbr-section-title,
  .cid-tKaG9Lhh3v .mbr-text,
  .cid-tKaG9Lhh3v .list,
  .cid-tKaG9Lhh3v .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKaG9Lhh3v .text-content {
    padding: 0;
  }
}
.cid-tKaG9Lhh3v .mbr-text,
.cid-tKaG9Lhh3v .mbr-section-btn {
  color: #000000;
}
.cid-tKICAwbRD3 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tKICAwbRD3 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKICAwbRD3 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKICAwbRD3 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKICAwbRD3 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKICAwbRD3 .mbr-text {
  color: #8d97ad;
}
.cid-tKICAwbRD3 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKICAwbRD3 .counter-container {
  padding-top: 1rem;
}
.cid-tKICAwbRD3 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKICAwbRD3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKICAwbRD3 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKICAwbRD3 .main-row {
    margin: 0;
  }
  .cid-tKICAwbRD3 .mbr-section-title,
  .cid-tKICAwbRD3 .mbr-text,
  .cid-tKICAwbRD3 .list,
  .cid-tKICAwbRD3 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKICAwbRD3 .text-content {
    padding: 0;
  }
}
.cid-tKICAwbRD3 .mbr-text,
.cid-tKICAwbRD3 .mbr-section-btn {
  color: #000000;
}
.cid-tKaG9M0InH {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-tKaG9M0InH .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKaG9M0InH .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKaG9M0InH .text-content {
  padding-right: 1.5rem;
}
.cid-tKaG9M0InH .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9M0InH .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKaG9M0InH .counter-container {
  padding-top: 1rem;
}
.cid-tKaG9M0InH .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9M0InH .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKaG9M0InH .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKaG9M0InH .main-row {
    margin: 0;
  }
  .cid-tKaG9M0InH .mbr-section-title,
  .cid-tKaG9M0InH .mbr-text,
  .cid-tKaG9M0InH .list,
  .cid-tKaG9M0InH .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKaG9M0InH .text-content {
    padding: 0;
  }
}
.cid-tKaG9M0InH .mbr-text,
.cid-tKaG9M0InH .mbr-section-btn {
  color: #000000;
}
.cid-tKaG9MfYGR {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKaG9MfYGR .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKaG9MfYGR .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKaG9MfYGR .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9MfYGR .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKaG9MfYGR .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9MfYGR .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKaG9MfYGR .counter-container {
  padding-top: 1rem;
}
.cid-tKaG9MfYGR .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKaG9MfYGR .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKaG9MfYGR .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKaG9MfYGR .main-row {
    margin: 0;
  }
  .cid-tKaG9MfYGR .mbr-section-title,
  .cid-tKaG9MfYGR .mbr-text,
  .cid-tKaG9MfYGR .list,
  .cid-tKaG9MfYGR .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKaG9MfYGR .text-content {
    padding: 0;
  }
}
.cid-tKaG9MfYGR .mbr-text,
.cid-tKaG9MfYGR .mbr-section-btn {
  color: #000000;
}
.cid-tKJPTFHTWq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/woman-using-computer-1.jpeg");
}
.cid-tKJPTFHTWq .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tKJPTFHTWq .panel-group {
  width: 100%;
}
.cid-tKJPTFHTWq .panel-text,
.cid-tKJPTFHTWq .header-text,
.cid-tKJPTFHTWq .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKJPTFHTWq .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-tKJPTFHTWq .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-tKJPTFHTWq .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-tKJPTFHTWq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKJPTFHTWq .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tKJPTFHTWq .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-tKJPTFHTWq .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-tKJPTFHTWq .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-tKJPTFHTWq .card .panel-body {
  background: #ffffff;
}
.cid-tKJPTFHTWq .sign {
  color: #232323;
}
.cid-tKJPTFHTWq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKJPTFHTWq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKJPTFHTWq .panel-text {
  color: #232323;
}
.cid-tKJPTFHTWq .header-text {
  color: #232323;
}
.cid-tKaG9Pcz45 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tKaG9Pcz45 .mbr-text {
  color: #8d97ad;
}
.cid-tKaG9Pcz45 .blockquote-quote svg {
  height: 40px;
  width: 40px;
  fill: #8d97ad;
}
.cid-tKaG9Pcz45 .signature > span {
  color: #ff4f7b;
}
@media (max-width: 767px) {
  .cid-tKaG9Pcz45 .blockquote-quote {
    text-align: left;
  }
  .cid-tKaG9Pcz45 .signature {
    text-align: left;
  }
}
.cid-tKaG9Pcz45 .mbr-text,
.cid-tKaG9Pcz45 .blockquote-quote {
  text-align: left;
  color: #232323;
}
.cid-tKaG9ProuG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKaG9ProuG .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tKaG9ProuG .panel-group {
  width: 100%;
}
.cid-tKaG9ProuG .panel-text,
.cid-tKaG9ProuG .header-text,
.cid-tKaG9ProuG .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKaG9ProuG .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-tKaG9ProuG .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-tKaG9ProuG .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-tKaG9ProuG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tKaG9ProuG .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-tKaG9ProuG .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-tKaG9ProuG .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-tKaG9ProuG .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-tKaG9ProuG .card .panel-body {
  background: #ffffff;
}
.cid-tKaG9ProuG .sign {
  color: #232323;
}
.cid-tKaG9ProuG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKaG9ProuG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKaG9ProuG .panel-text {
  color: #232323;
}
.cid-tKaG9ProuG .header-text {
  color: #1dc9cb;
}
.cid-tKaG9PPgCj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tKaG9PPgCj .mbr-overlay {
  background: #232323;
}
.cid-tKaG9PPgCj .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tKaG9PPgCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKaG9PPgCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tKfdh9tkif .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfdh9tkif .nav-item,
.cid-tKfdh9tkif .nav-link,
.cid-tKfdh9tkif .navbar-caption {
  font-weight: normal;
}
.cid-tKfdh9tkif .nav-item:focus,
.cid-tKfdh9tkif .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKfdh9tkif .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKfdh9tkif .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfdh9tkif .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKfdh9tkif .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKfdh9tkif .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKfdh9tkif .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKfdh9tkif .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfdh9tkif .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKfdh9tkif .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKfdh9tkif .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKfdh9tkif .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKfdh9tkif .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKfdh9tkif .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKfdh9tkif .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKfdh9tkif .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKfdh9tkif .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKfdh9tkif .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKfdh9tkif .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKfdh9tkif .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKfdh9tkif .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKfdh9tkif .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKfdh9tkif .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKfdh9tkif .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKfdh9tkif .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKfdh9tkif .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKfdh9tkif .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKfdh9tkif .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKfdh9tkif .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKfdh9tkif .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKfdh9tkif .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKfdh9tkif .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKfdh9tkif .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKfdh9tkif .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKfdh9tkif .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKfdh9tkif .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKfdh9tkif .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKfdh9tkif .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKfdh9tkif .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKfdh9tkif .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKfdh9tkif .dropdown-item.active,
.cid-tKfdh9tkif .dropdown-item:active {
  background-color: transparent;
}
.cid-tKfdh9tkif .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKfdh9tkif .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKfdh9tkif .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKfdh9tkif .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKfdh9tkif .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKfdh9tkif ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKfdh9tkif .navbar-buttons {
  text-align: center;
}
.cid-tKfdh9tkif button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKfdh9tkif button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKfdh9tkif button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKfdh9tkif button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKfdh9tkif button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKfdh9tkif button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKfdh9tkif nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKfdh9tkif nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKfdh9tkif nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKfdh9tkif nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKfdh9tkif .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKfdh9tkif a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKfdh9tkif .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKfdh9tkif .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKfdh9tkif .soc-item {
  margin: .5rem .3rem;
}
.cid-tKfdh9tkif .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKfdh9tkif .navbar {
    height: 77px;
  }
  .cid-tKfdh9tkif .navbar.opened {
    height: auto;
  }
  .cid-tKfdh9tkif .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKfdhan1EE {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-tKfdhan1EE .mbr-overlay {
  background: #444444;
}
.cid-tKfdhan1EE .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKfdhan1EE .mbr-section-subtitle,
.cid-tKfdhan1EE mbr-section-btn {
  color: #ffffff;
}
.cid-tKfdhan1EE B {
  color: #333333;
}
.cid-tKfdhan1EE H1 {
  color: #ffffff;
}
.cid-tKfetU1HpW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tKfetU1HpW .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKfetU1HpW .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-tKfetU1HpW img,
.cid-tKfetU1HpW .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tKfetU1HpW .item:focus,
.cid-tKfetU1HpW span:focus {
  outline: none;
}
.cid-tKfetU1HpW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKfetU1HpW .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tKfetU1HpW img {
  border-radius: 30px;
}
.cid-tKfetU1HpW .item-subtitle {
  color: #ff4f7b;
}
.cid-tKfhfaUGQ9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tKfhfaUGQ9 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tKfhfaUGQ9 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-tKfhfaUGQ9 img,
.cid-tKfhfaUGQ9 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tKfhfaUGQ9 .item:focus,
.cid-tKfhfaUGQ9 span:focus {
  outline: none;
}
.cid-tKfhfaUGQ9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKfhfaUGQ9 .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tKfhfaUGQ9 img {
  border-radius: 30px;
}
.cid-tKfhfaUGQ9 .item-subtitle {
  color: #ff4f7b;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tKfkTUWjas .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfkTUWjas .nav-item,
.cid-tKfkTUWjas .nav-link,
.cid-tKfkTUWjas .navbar-caption {
  font-weight: normal;
}
.cid-tKfkTUWjas .nav-item:focus,
.cid-tKfkTUWjas .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKfkTUWjas .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKfkTUWjas .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfkTUWjas .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKfkTUWjas .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKfkTUWjas .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKfkTUWjas .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKfkTUWjas .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfkTUWjas .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKfkTUWjas .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKfkTUWjas .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKfkTUWjas .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKfkTUWjas .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKfkTUWjas .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKfkTUWjas .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKfkTUWjas .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKfkTUWjas .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKfkTUWjas .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKfkTUWjas .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKfkTUWjas .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKfkTUWjas .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKfkTUWjas .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKfkTUWjas .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKfkTUWjas .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKfkTUWjas .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKfkTUWjas .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKfkTUWjas .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKfkTUWjas .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKfkTUWjas .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKfkTUWjas .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKfkTUWjas .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKfkTUWjas .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKfkTUWjas .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKfkTUWjas .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKfkTUWjas .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKfkTUWjas .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKfkTUWjas .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKfkTUWjas .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKfkTUWjas .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKfkTUWjas .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKfkTUWjas .dropdown-item.active,
.cid-tKfkTUWjas .dropdown-item:active {
  background-color: transparent;
}
.cid-tKfkTUWjas .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKfkTUWjas .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKfkTUWjas .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKfkTUWjas .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKfkTUWjas .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKfkTUWjas ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKfkTUWjas .navbar-buttons {
  text-align: center;
}
.cid-tKfkTUWjas button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKfkTUWjas button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKfkTUWjas button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKfkTUWjas button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKfkTUWjas button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKfkTUWjas button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKfkTUWjas nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKfkTUWjas nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKfkTUWjas nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKfkTUWjas nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKfkTUWjas .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKfkTUWjas a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKfkTUWjas .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKfkTUWjas .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKfkTUWjas .soc-item {
  margin: .5rem .3rem;
}
.cid-tKfkTUWjas .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKfkTUWjas .navbar {
    height: 77px;
  }
  .cid-tKfkTUWjas .navbar.opened {
    height: auto;
  }
  .cid-tKfkTUWjas .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKfkTVjfEm {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-6.jpeg");
}
.cid-tKfkTVjfEm .mbr-overlay {
  background: #ffffff;
}
.cid-tKfkTVjfEm .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKfkTVjfEm .mbr-section-subtitle,
.cid-tKfkTVjfEm mbr-section-btn {
  color: #232323;
}
.cid-tKfkTVjfEm B {
  color: #333333;
}
.cid-tKfkTVjfEm H1 {
  color: #232323;
}
.cid-tKfkTWcS2b {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKfkTWcS2b .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKfkTWcS2b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKfkTWcS2b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKfkTWcS2b .mbr-section-title {
  text-align: center;
}
.cid-tKfpBzvZfZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tKfpBzvZfZ .mbr-overlay {
  background: #efefef;
}
.cid-tKfpBzvZfZ .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tKfpBzvZfZ .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tKfpBzvZfZ .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tKfpBzvZfZ .mbr-text {
  color: #8d97ad;
}
.cid-tKfpBzvZfZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKfpBzvZfZ .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tKfpBzvZfZ .card-title {
    text-align: center;
  }
  .cid-tKfpBzvZfZ p.mbr-text,
  .cid-tKfpBzvZfZ p.date {
    text-align: center;
  }
}
.cid-tKfpBzvZfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKfpBzvZfZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKfpBzvZfZ .mbr-text,
.cid-tKfpBzvZfZ .mbr-section-btn {
  color: #232323;
}
.cid-tKfs4UO2sy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKfs4UO2sy .mbr-overlay {
  background: #efefef;
}
.cid-tKfs4UO2sy .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tKfs4UO2sy .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tKfs4UO2sy .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tKfs4UO2sy .mbr-text {
  color: #8d97ad;
}
.cid-tKfs4UO2sy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKfs4UO2sy .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tKfs4UO2sy .card-title {
    text-align: center;
  }
  .cid-tKfs4UO2sy p.mbr-text,
  .cid-tKfs4UO2sy p.date {
    text-align: center;
  }
}
.cid-tKfs4UO2sy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKfs4UO2sy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKfs4UO2sy .mbr-text,
.cid-tKfs4UO2sy .mbr-section-btn {
  color: #232323;
}
.cid-tKftKiftKT {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tKftKiftKT .mbr-overlay {
  background: #efefef;
}
.cid-tKftKiftKT .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tKftKiftKT .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tKftKiftKT .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tKftKiftKT .mbr-text {
  color: #8d97ad;
}
.cid-tKftKiftKT .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tKftKiftKT .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tKftKiftKT .card-title {
    text-align: center;
  }
  .cid-tKftKiftKT p.mbr-text,
  .cid-tKftKiftKT p.date {
    text-align: center;
  }
}
.cid-tKftKiftKT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKftKiftKT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKftKiftKT .mbr-text,
.cid-tKftKiftKT .mbr-section-btn {
  color: #232323;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tKfBbRleDz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfBbRleDz .nav-item,
.cid-tKfBbRleDz .nav-link,
.cid-tKfBbRleDz .navbar-caption {
  font-weight: normal;
}
.cid-tKfBbRleDz .nav-item:focus,
.cid-tKfBbRleDz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKfBbRleDz .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKfBbRleDz .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfBbRleDz .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKfBbRleDz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKfBbRleDz .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKfBbRleDz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKfBbRleDz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKfBbRleDz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKfBbRleDz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKfBbRleDz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKfBbRleDz .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKfBbRleDz .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKfBbRleDz .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKfBbRleDz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKfBbRleDz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKfBbRleDz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKfBbRleDz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKfBbRleDz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKfBbRleDz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKfBbRleDz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKfBbRleDz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKfBbRleDz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKfBbRleDz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKfBbRleDz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKfBbRleDz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKfBbRleDz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKfBbRleDz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKfBbRleDz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKfBbRleDz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKfBbRleDz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKfBbRleDz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKfBbRleDz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKfBbRleDz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKfBbRleDz .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKfBbRleDz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKfBbRleDz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKfBbRleDz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKfBbRleDz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKfBbRleDz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKfBbRleDz .dropdown-item.active,
.cid-tKfBbRleDz .dropdown-item:active {
  background-color: transparent;
}
.cid-tKfBbRleDz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKfBbRleDz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKfBbRleDz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKfBbRleDz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKfBbRleDz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKfBbRleDz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKfBbRleDz .navbar-buttons {
  text-align: center;
}
.cid-tKfBbRleDz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKfBbRleDz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKfBbRleDz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKfBbRleDz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKfBbRleDz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKfBbRleDz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKfBbRleDz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKfBbRleDz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKfBbRleDz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKfBbRleDz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKfBbRleDz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKfBbRleDz a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKfBbRleDz .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKfBbRleDz .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKfBbRleDz .soc-item {
  margin: .5rem .3rem;
}
.cid-tKfBbRleDz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKfBbRleDz .navbar {
    height: 77px;
  }
  .cid-tKfBbRleDz .navbar.opened {
    height: auto;
  }
  .cid-tKfBbRleDz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKfBbRWwgF {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-12.jpeg");
}
.cid-tKfBbRWwgF .mbr-overlay {
  background: #a61a3d;
  background: linear-gradient(90deg, #a61a3d, #1dc9cb);
}
.cid-tKfBbRWwgF .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKfBbRWwgF .mbr-section-subtitle,
.cid-tKfBbRWwgF mbr-section-btn {
  color: #efefef;
}
.cid-tKfBbRWwgF B {
  color: #333333;
}
.cid-tKfBbRWwgF H1 {
  color: #ffffff;
}
.cid-tKfBbSgHqA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tKfBbSgHqA .container {
    max-width: 1400px;
  }
}
.cid-tKfBbSgHqA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tKfBbSgHqA .card-wrapper {
  margin-top: 3rem;
}
.cid-tKfBbSgHqA .row {
  justify-content: center;
}
.cid-tKfBbSgHqA .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tKfBbTaU0l {
  padding-top: 100px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tKfBbTaU0l .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKfBbTaU0l .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKfBbTaU0l .text-content {
  padding-right: 1.5rem;
}
.cid-tKfBbTaU0l .mbr-text {
  color: #8d97ad;
}
.cid-tKfBbTaU0l .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKfBbTaU0l .counter-container {
  padding-top: 1rem;
}
.cid-tKfBbTaU0l .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbTaU0l .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKfBbTaU0l .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKfBbTaU0l .main-row {
    margin: 0;
  }
  .cid-tKfBbTaU0l .mbr-section-title,
  .cid-tKfBbTaU0l .mbr-text,
  .cid-tKfBbTaU0l .list,
  .cid-tKfBbTaU0l .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKfBbTaU0l .text-content {
    padding: 0;
  }
}
.cid-tKfBbTaU0l .mbr-text,
.cid-tKfBbTaU0l .mbr-section-btn {
  color: #000000;
}
.cid-tKfBbTsWJK {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKfBbTsWJK .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKfBbTsWJK .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKfBbTsWJK .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbTsWJK .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKfBbTsWJK .mbr-text {
  color: #8d97ad;
}
.cid-tKfBbTsWJK .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKfBbTsWJK .counter-container {
  padding-top: 1rem;
}
.cid-tKfBbTsWJK .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbTsWJK .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKfBbTsWJK .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKfBbTsWJK .main-row {
    margin: 0;
  }
  .cid-tKfBbTsWJK .mbr-section-title,
  .cid-tKfBbTsWJK .mbr-text,
  .cid-tKfBbTsWJK .list,
  .cid-tKfBbTsWJK .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKfBbTsWJK .text-content {
    padding: 0;
  }
}
.cid-tKfBbTsWJK .mbr-text,
.cid-tKfBbTsWJK .mbr-section-btn {
  color: #000000;
}
.cid-tKfBbTNJRs {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-tKfBbTNJRs .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKfBbTNJRs .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKfBbTNJRs .text-content {
  padding-right: 1.5rem;
}
.cid-tKfBbTNJRs .mbr-text {
  color: #8d97ad;
}
.cid-tKfBbTNJRs .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKfBbTNJRs .counter-container {
  padding-top: 1rem;
}
.cid-tKfBbTNJRs .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbTNJRs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKfBbTNJRs .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKfBbTNJRs .main-row {
    margin: 0;
  }
  .cid-tKfBbTNJRs .mbr-section-title,
  .cid-tKfBbTNJRs .mbr-text,
  .cid-tKfBbTNJRs .list,
  .cid-tKfBbTNJRs .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKfBbTNJRs .text-content {
    padding: 0;
  }
}
.cid-tKfBbTNJRs .mbr-text,
.cid-tKfBbTNJRs .mbr-section-btn {
  color: #000000;
}
.cid-tKfBbU3AcQ {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKfBbU3AcQ .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKfBbU3AcQ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKfBbU3AcQ .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbU3AcQ .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKfBbU3AcQ .mbr-text {
  color: #8d97ad;
}
.cid-tKfBbU3AcQ .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKfBbU3AcQ .counter-container {
  padding-top: 1rem;
}
.cid-tKfBbU3AcQ .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbU3AcQ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKfBbU3AcQ .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKfBbU3AcQ .main-row {
    margin: 0;
  }
  .cid-tKfBbU3AcQ .mbr-section-title,
  .cid-tKfBbU3AcQ .mbr-text,
  .cid-tKfBbU3AcQ .list,
  .cid-tKfBbU3AcQ .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKfBbU3AcQ .text-content {
    padding: 0;
  }
}
.cid-tKfBbU3AcQ .mbr-text,
.cid-tKfBbU3AcQ .mbr-section-btn {
  color: #000000;
}
.cid-tKfBbUAssL {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f4f8fa;
}
.cid-tKfBbUAssL .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKfBbUAssL .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKfBbUAssL .text-content {
  padding-right: 1.5rem;
}
.cid-tKfBbUAssL .mbr-text {
  color: #8d97ad;
}
.cid-tKfBbUAssL .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKfBbUAssL .counter-container {
  padding-top: 1rem;
}
.cid-tKfBbUAssL .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbUAssL .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKfBbUAssL .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKfBbUAssL .main-row {
    margin: 0;
  }
  .cid-tKfBbUAssL .mbr-section-title,
  .cid-tKfBbUAssL .mbr-text,
  .cid-tKfBbUAssL .list,
  .cid-tKfBbUAssL .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKfBbUAssL .text-content {
    padding: 0;
  }
}
.cid-tKfBbUAssL .mbr-text,
.cid-tKfBbUAssL .mbr-section-btn {
  color: #000000;
}
.cid-tKfBbUQxa8 {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tKfBbUQxa8 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tKfBbUQxa8 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tKfBbUQxa8 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbUQxa8 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tKfBbUQxa8 .mbr-text {
  color: #8d97ad;
}
.cid-tKfBbUQxa8 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tKfBbUQxa8 .counter-container {
  padding-top: 1rem;
}
.cid-tKfBbUQxa8 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tKfBbUQxa8 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tKfBbUQxa8 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tKfBbUQxa8 .main-row {
    margin: 0;
  }
  .cid-tKfBbUQxa8 .mbr-section-title,
  .cid-tKfBbUQxa8 .mbr-text,
  .cid-tKfBbUQxa8 .list,
  .cid-tKfBbUQxa8 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tKfBbUQxa8 .text-content {
    padding: 0;
  }
}
.cid-tKfBbUQxa8 .mbr-text,
.cid-tKfBbUQxa8 .mbr-section-btn {
  color: #000000;
}
.cid-tKfBbVG8e8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tKfBbVG8e8 .mbr-overlay {
  background: #232323;
}
.cid-tKfBbVG8e8 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tKfBbVG8e8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKfBbVG8e8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tKJmICBDIY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKJmICBDIY .nav-item,
.cid-tKJmICBDIY .nav-link,
.cid-tKJmICBDIY .navbar-caption {
  font-weight: normal;
}
.cid-tKJmICBDIY .nav-item:focus,
.cid-tKJmICBDIY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKJmICBDIY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKJmICBDIY .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKJmICBDIY .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKJmICBDIY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKJmICBDIY .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKJmICBDIY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKJmICBDIY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKJmICBDIY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKJmICBDIY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKJmICBDIY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKJmICBDIY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKJmICBDIY .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKJmICBDIY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKJmICBDIY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKJmICBDIY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKJmICBDIY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKJmICBDIY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKJmICBDIY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKJmICBDIY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKJmICBDIY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKJmICBDIY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKJmICBDIY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKJmICBDIY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKJmICBDIY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKJmICBDIY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKJmICBDIY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKJmICBDIY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKJmICBDIY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKJmICBDIY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKJmICBDIY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKJmICBDIY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKJmICBDIY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKJmICBDIY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKJmICBDIY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKJmICBDIY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKJmICBDIY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKJmICBDIY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKJmICBDIY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKJmICBDIY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKJmICBDIY .dropdown-item.active,
.cid-tKJmICBDIY .dropdown-item:active {
  background-color: transparent;
}
.cid-tKJmICBDIY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKJmICBDIY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKJmICBDIY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKJmICBDIY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKJmICBDIY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKJmICBDIY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKJmICBDIY .navbar-buttons {
  text-align: center;
}
.cid-tKJmICBDIY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKJmICBDIY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKJmICBDIY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKJmICBDIY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKJmICBDIY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKJmICBDIY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKJmICBDIY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKJmICBDIY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKJmICBDIY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKJmICBDIY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKJmICBDIY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKJmICBDIY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKJmICBDIY .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKJmICBDIY .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKJmICBDIY .soc-item {
  margin: .5rem .3rem;
}
.cid-tKJmICBDIY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKJmICBDIY .navbar {
    height: 77px;
  }
  .cid-tKJmICBDIY .navbar.opened {
    height: auto;
  }
  .cid-tKJmICBDIY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKJmIDiND1 {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/men-discussing-3.jpeg");
}
.cid-tKJmIDiND1 .mbr-overlay {
  background: #559227;
  background: linear-gradient(90deg, #559227, #51aafa);
}
.cid-tKJmIDiND1 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKJmIDiND1 .mbr-section-subtitle,
.cid-tKJmIDiND1 mbr-section-btn {
  color: #f4f8fa;
}
.cid-tKJmIDiND1 B {
  color: #333333;
}
.cid-tKJmIDiND1 H1 {
  color: #ffffff;
}
.cid-tKJmIE3MPu {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKJmIE3MPu .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-tKJmIE3MPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKJmIE3MPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKJmIE3MPu .mbr-section-title {
  text-align: center;
}
.cid-tKJmIElUgs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKJmIElUgs .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tKJmIElUgs .mbr-section-title {
  margin: 0;
}
.cid-tKJmIElUgs .card-img {
  text-align: center;
}
.cid-tKJmIElUgs .mbr-section-subtitle,
.cid-tKJmIElUgs .mbr-text {
  color: #8d97ad;
}
.cid-tKJmIElUgs .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tKJmIElUgs .card-img,
  .cid-tKJmIElUgs .mbr-text,
  .cid-tKJmIElUgs .mbr-card-title,
  .cid-tKJmIElUgs .mbr-section-subtitle,
  .cid-tKJmIElUgs .mbr-section-title,
  .cid-tKJmIElUgs .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tKJmIElUgs .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tKJmIElUgs .mbr-text {
  color: #232323;
}
.cid-tKJmIElUgs .mbr-card-title,
.cid-tKJmIElUgs .card-img {
  color: #232323;
}
.cid-tKJmIEN1am {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKJmIEN1am .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tKJmIEN1am .mbr-section-title {
  margin: 0;
}
.cid-tKJmIEN1am .card-img {
  text-align: center;
}
.cid-tKJmIEN1am .mbr-section-subtitle,
.cid-tKJmIEN1am .mbr-text {
  color: #8d97ad;
}
.cid-tKJmIEN1am .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tKJmIEN1am .card-img,
  .cid-tKJmIEN1am .mbr-text,
  .cid-tKJmIEN1am .mbr-card-title,
  .cid-tKJmIEN1am .mbr-section-subtitle,
  .cid-tKJmIEN1am .mbr-section-title,
  .cid-tKJmIEN1am .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tKJmIEN1am .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tKJmIEN1am .mbr-text {
  color: #232323;
}
.cid-tKJmIEN1am .mbr-card-title,
.cid-tKJmIEN1am .card-img {
  color: #232323;
}
.cid-tKJmIM8WrU {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tKJmIM8WrU .mbr-overlay {
  background: #232323;
}
.cid-tKJmIM8WrU .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tKJmIM8WrU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKJmIM8WrU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKJmIMtWZt {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKJmIMtWZt .mbr-text {
  color: #444;
}
.cid-tKJmIMtWZt .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKJmIMtWZt .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKJmIMtWZt .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKJmIMtWZt .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKJmIMtWZt .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKJmIMtWZt .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKJmIMtWZt .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKJmIMtWZt .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKJmIMtWZt .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKJmIMtWZt .links {
  color: #ffffff;
}
.cid-tKJCOspyoX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKJCOspyoX .nav-item,
.cid-tKJCOspyoX .nav-link,
.cid-tKJCOspyoX .navbar-caption {
  font-weight: normal;
}
.cid-tKJCOspyoX .nav-item:focus,
.cid-tKJCOspyoX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKJCOspyoX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKJCOspyoX .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKJCOspyoX .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKJCOspyoX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKJCOspyoX .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKJCOspyoX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKJCOspyoX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKJCOspyoX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKJCOspyoX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKJCOspyoX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKJCOspyoX .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKJCOspyoX .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKJCOspyoX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKJCOspyoX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKJCOspyoX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKJCOspyoX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKJCOspyoX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKJCOspyoX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKJCOspyoX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKJCOspyoX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKJCOspyoX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKJCOspyoX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKJCOspyoX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKJCOspyoX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKJCOspyoX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKJCOspyoX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKJCOspyoX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKJCOspyoX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKJCOspyoX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKJCOspyoX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKJCOspyoX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKJCOspyoX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKJCOspyoX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKJCOspyoX .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKJCOspyoX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKJCOspyoX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKJCOspyoX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKJCOspyoX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKJCOspyoX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKJCOspyoX .dropdown-item.active,
.cid-tKJCOspyoX .dropdown-item:active {
  background-color: transparent;
}
.cid-tKJCOspyoX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKJCOspyoX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKJCOspyoX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKJCOspyoX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKJCOspyoX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKJCOspyoX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKJCOspyoX .navbar-buttons {
  text-align: center;
}
.cid-tKJCOspyoX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKJCOspyoX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKJCOspyoX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKJCOspyoX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKJCOspyoX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKJCOspyoX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKJCOspyoX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKJCOspyoX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKJCOspyoX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKJCOspyoX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKJCOspyoX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKJCOspyoX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKJCOspyoX .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKJCOspyoX .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKJCOspyoX .soc-item {
  margin: .5rem .3rem;
}
.cid-tKJCOspyoX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKJCOspyoX .navbar {
    height: 77px;
  }
  .cid-tKJCOspyoX .navbar.opened {
    height: auto;
  }
  .cid-tKJCOspyoX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKJCOt6iPv {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/man-thinking-money-2.png");
}
.cid-tKJCOt6iPv .mbr-overlay {
  background: #a61a3d;
  background: linear-gradient(90deg, #a61a3d, #1dc9cb);
}
.cid-tKJCOt6iPv .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKJCOt6iPv .mbr-section-subtitle,
.cid-tKJCOt6iPv mbr-section-btn {
  color: #f4f8fa;
}
.cid-tKJCOt6iPv B {
  color: #333333;
}
.cid-tKJCOt6iPv H1 {
  color: #ffffff;
}
.cid-tKJCOtykxt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKJCOtykxt .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-tKJCOtykxt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKJCOtykxt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKJCOtykxt .mbr-section-title {
  text-align: center;
}
.cid-tKJCOugHMs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKJCOugHMs .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tKJCOugHMs .mbr-section-title {
  margin: 0;
}
.cid-tKJCOugHMs .card-img {
  text-align: center;
}
.cid-tKJCOugHMs .mbr-section-subtitle,
.cid-tKJCOugHMs .mbr-text {
  color: #8d97ad;
}
.cid-tKJCOugHMs .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tKJCOugHMs .card-img,
  .cid-tKJCOugHMs .mbr-text,
  .cid-tKJCOugHMs .mbr-card-title,
  .cid-tKJCOugHMs .mbr-section-subtitle,
  .cid-tKJCOugHMs .mbr-section-title,
  .cid-tKJCOugHMs .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tKJCOugHMs .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tKJCOugHMs .mbr-text {
  color: #232323;
}
.cid-tKJCOugHMs .mbr-card-title,
.cid-tKJCOugHMs .card-img {
  color: #232323;
}
.cid-tKJCOtOSly {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tKJCOtOSly .mbr-iconfont {
  font-size: 48px;
  transition: color .3s;
  color: #1dc9cb;
}
.cid-tKJCOtOSly .mbr-section-title {
  margin: 0;
}
.cid-tKJCOtOSly .card-img {
  text-align: center;
}
.cid-tKJCOtOSly .mbr-section-subtitle,
.cid-tKJCOtOSly .mbr-text {
  color: #8d97ad;
}
.cid-tKJCOtOSly .row-item {
  border-radius: .25rem;
  background: #ffffff;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 767px) {
  .cid-tKJCOtOSly .card-img,
  .cid-tKJCOtOSly .mbr-text,
  .cid-tKJCOtOSly .mbr-card-title,
  .cid-tKJCOtOSly .mbr-section-subtitle,
  .cid-tKJCOtOSly .mbr-section-title,
  .cid-tKJCOtOSly .underline {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-tKJCOtOSly .row-item {
    margin-bottom: 2rem;
  }
}
.cid-tKJCOtOSly .mbr-text {
  color: #232323;
}
.cid-tKJCOtOSly .mbr-card-title,
.cid-tKJCOtOSly .card-img {
  color: #232323;
}
.cid-tKJCOuImHe {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tKJCOuImHe .mbr-overlay {
  background: #232323;
}
.cid-tKJCOuImHe .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tKJCOuImHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKJCOuImHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKJCOuYYrh {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKJCOuYYrh .mbr-text {
  color: #444;
}
.cid-tKJCOuYYrh .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKJCOuYYrh .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKJCOuYYrh .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKJCOuYYrh .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKJCOuYYrh .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKJCOuYYrh .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKJCOuYYrh .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKJCOuYYrh .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKJCOuYYrh .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKJCOuYYrh .links {
  color: #ffffff;
}
.cid-tKg9X4XGyz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKg9X4XGyz .nav-item,
.cid-tKg9X4XGyz .nav-link,
.cid-tKg9X4XGyz .navbar-caption {
  font-weight: normal;
}
.cid-tKg9X4XGyz .nav-item:focus,
.cid-tKg9X4XGyz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKg9X4XGyz .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKg9X4XGyz .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKg9X4XGyz .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKg9X4XGyz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKg9X4XGyz .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKg9X4XGyz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKg9X4XGyz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKg9X4XGyz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKg9X4XGyz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKg9X4XGyz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKg9X4XGyz .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKg9X4XGyz .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKg9X4XGyz .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKg9X4XGyz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKg9X4XGyz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKg9X4XGyz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKg9X4XGyz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKg9X4XGyz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKg9X4XGyz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKg9X4XGyz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKg9X4XGyz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKg9X4XGyz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKg9X4XGyz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKg9X4XGyz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKg9X4XGyz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKg9X4XGyz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKg9X4XGyz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKg9X4XGyz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKg9X4XGyz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKg9X4XGyz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKg9X4XGyz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKg9X4XGyz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKg9X4XGyz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKg9X4XGyz .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKg9X4XGyz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKg9X4XGyz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKg9X4XGyz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKg9X4XGyz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKg9X4XGyz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKg9X4XGyz .dropdown-item.active,
.cid-tKg9X4XGyz .dropdown-item:active {
  background-color: transparent;
}
.cid-tKg9X4XGyz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKg9X4XGyz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKg9X4XGyz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKg9X4XGyz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKg9X4XGyz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKg9X4XGyz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKg9X4XGyz .navbar-buttons {
  text-align: center;
}
.cid-tKg9X4XGyz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKg9X4XGyz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKg9X4XGyz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKg9X4XGyz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKg9X4XGyz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKg9X4XGyz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKg9X4XGyz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKg9X4XGyz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKg9X4XGyz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKg9X4XGyz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKg9X4XGyz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKg9X4XGyz a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKg9X4XGyz .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKg9X4XGyz .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKg9X4XGyz .soc-item {
  margin: .5rem .3rem;
}
.cid-tKg9X4XGyz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKg9X4XGyz .navbar {
    height: 77px;
  }
  .cid-tKg9X4XGyz .navbar.opened {
    height: auto;
  }
  .cid-tKg9X4XGyz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKg9X5Fvm1 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/j0411715.jpeg");
}
.cid-tKg9X5Fvm1 .mbr-overlay {
  background: #ffffff;
}
.cid-tKg9X5Fvm1 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKg9X5Fvm1 .mbr-section-subtitle,
.cid-tKg9X5Fvm1 mbr-section-btn {
  color: #232323;
}
.cid-tKg9X5Fvm1 B {
  color: #333333;
}
.cid-tKg9X5Fvm1 H1 {
  color: #ffffff;
}
.cid-tKgaDKZK3e {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tKgaDKZK3e .mbr-section-subtitle {
  color: #232323;
}
.cid-tKgaDKZK3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKgaDKZK3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKgaDKZK3e .mbr-section-title {
  color: #232323;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-tLtEcGLXfN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLtEcGLXfN .nav-item,
.cid-tLtEcGLXfN .nav-link,
.cid-tLtEcGLXfN .navbar-caption {
  font-weight: normal;
}
.cid-tLtEcGLXfN .nav-item:focus,
.cid-tLtEcGLXfN .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tLtEcGLXfN .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tLtEcGLXfN .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLtEcGLXfN .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tLtEcGLXfN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tLtEcGLXfN .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tLtEcGLXfN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tLtEcGLXfN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tLtEcGLXfN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLtEcGLXfN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLtEcGLXfN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tLtEcGLXfN .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tLtEcGLXfN .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tLtEcGLXfN .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLtEcGLXfN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLtEcGLXfN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLtEcGLXfN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tLtEcGLXfN .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tLtEcGLXfN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLtEcGLXfN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tLtEcGLXfN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLtEcGLXfN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tLtEcGLXfN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tLtEcGLXfN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLtEcGLXfN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLtEcGLXfN .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tLtEcGLXfN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLtEcGLXfN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tLtEcGLXfN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tLtEcGLXfN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLtEcGLXfN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tLtEcGLXfN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tLtEcGLXfN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tLtEcGLXfN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tLtEcGLXfN .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tLtEcGLXfN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tLtEcGLXfN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tLtEcGLXfN .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLtEcGLXfN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLtEcGLXfN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLtEcGLXfN .dropdown-item.active,
.cid-tLtEcGLXfN .dropdown-item:active {
  background-color: transparent;
}
.cid-tLtEcGLXfN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLtEcGLXfN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLtEcGLXfN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tLtEcGLXfN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLtEcGLXfN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLtEcGLXfN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tLtEcGLXfN .navbar-buttons {
  text-align: center;
}
.cid-tLtEcGLXfN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tLtEcGLXfN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tLtEcGLXfN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tLtEcGLXfN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tLtEcGLXfN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tLtEcGLXfN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tLtEcGLXfN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLtEcGLXfN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tLtEcGLXfN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tLtEcGLXfN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tLtEcGLXfN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tLtEcGLXfN a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tLtEcGLXfN .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tLtEcGLXfN .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tLtEcGLXfN .soc-item {
  margin: .5rem .3rem;
}
.cid-tLtEcGLXfN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLtEcGLXfN .navbar {
    height: 77px;
  }
  .cid-tLtEcGLXfN .navbar.opened {
    height: auto;
  }
  .cid-tLtEcGLXfN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLtEcHoEt1 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/abstract-background-with-low-poly-design.jpeg");
}
.cid-tLtEcHoEt1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLtEcHoEt1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tLtEcHoEt1 .col-content {
    text-align: center;
  }
}
.cid-tLtEcHoEt1 .label-container {
  margin-bottom: 16px;
}
.cid-tLtEcHoEt1 .label-text {
  color: #24262b;
}
.cid-tLtEcHoEt1 .label-text-2 {
  color: #24262b;
}
.cid-tLtEcHoEt1 .mbr-section-title {
  color: #ffffff;
}
.cid-tLtEcHoEt1 .text-container {
  margin-top: 24px;
}
.cid-tLtEcHoEt1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLtEcHoEt1 .mbr-text {
  color: #b79b6c;
}
.cid-tLtEcHoEt1 .mbr-section-btn {
  margin-top: 28px;
}
.cid-tLtEcHJJLe {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLtEcHJJLe .mbr-overlay {
  background: #efefef;
}
.cid-tLtEcHJJLe .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-tLtEcHJJLe .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-tLtEcHJJLe .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tLtEcHJJLe .mbr-text {
  color: #8d97ad;
}
.cid-tLtEcHJJLe .mbr-section-subtitle {
  color: #333333;
}
.cid-tLtEcHJJLe .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-tLtEcHJJLe .card-title {
    text-align: center;
  }
  .cid-tLtEcHJJLe p.mbr-text,
  .cid-tLtEcHJJLe p.date {
    text-align: center;
  }
}
.cid-tLtEcHJJLe .mbr-text,
.cid-tLtEcHJJLe .mbr-section-btn {
  color: #000000;
}
.cid-tLtEcJ7m2M {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-tLtEcJ7m2M .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tLtEcJ7m2M .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tLtEcJ7m2M .text-content {
  padding-right: 1.5rem;
}
.cid-tLtEcJ7m2M .mbr-text {
  color: #8d97ad;
}
.cid-tLtEcJ7m2M .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-tLtEcJ7m2M .counter-container {
  padding-top: 1rem;
}
.cid-tLtEcJ7m2M .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-tLtEcJ7m2M .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLtEcJ7m2M .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-tLtEcJ7m2M .main-row {
    margin: 0;
  }
  .cid-tLtEcJ7m2M .mbr-section-title,
  .cid-tLtEcJ7m2M .mbr-text,
  .cid-tLtEcJ7m2M .list,
  .cid-tLtEcJ7m2M .mbr-section-btn {
    text-align: center !important;
  }
  .cid-tLtEcJ7m2M .text-content {
    padding: 0;
  }
}
.cid-tLtEcJ7m2M .mbr-text,
.cid-tLtEcJ7m2M .mbr-section-btn {
  color: #000000;
}
.cid-tLtEcJLKdB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tLtEcJLKdB .mbr-text {
  color: #444;
}
.cid-tLtEcJLKdB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tLtEcJLKdB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tLtEcJLKdB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLtEcJLKdB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tLtEcJLKdB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tLtEcJLKdB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tLtEcJLKdB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tLtEcJLKdB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tLtEcJLKdB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tLtEcJLKdB .links {
  color: #ffffff;
}
.cid-tKgbY3mFKl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKgbY3mFKl .nav-item,
.cid-tKgbY3mFKl .nav-link,
.cid-tKgbY3mFKl .navbar-caption {
  font-weight: normal;
}
.cid-tKgbY3mFKl .nav-item:focus,
.cid-tKgbY3mFKl .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tKgbY3mFKl .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tKgbY3mFKl .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKgbY3mFKl .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tKgbY3mFKl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tKgbY3mFKl .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tKgbY3mFKl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tKgbY3mFKl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tKgbY3mFKl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKgbY3mFKl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKgbY3mFKl .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tKgbY3mFKl .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tKgbY3mFKl .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tKgbY3mFKl .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKgbY3mFKl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKgbY3mFKl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKgbY3mFKl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tKgbY3mFKl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tKgbY3mFKl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKgbY3mFKl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tKgbY3mFKl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKgbY3mFKl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tKgbY3mFKl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tKgbY3mFKl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKgbY3mFKl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKgbY3mFKl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tKgbY3mFKl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKgbY3mFKl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tKgbY3mFKl .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tKgbY3mFKl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKgbY3mFKl .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tKgbY3mFKl .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tKgbY3mFKl .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tKgbY3mFKl .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tKgbY3mFKl .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tKgbY3mFKl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tKgbY3mFKl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tKgbY3mFKl .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKgbY3mFKl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKgbY3mFKl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKgbY3mFKl .dropdown-item.active,
.cid-tKgbY3mFKl .dropdown-item:active {
  background-color: transparent;
}
.cid-tKgbY3mFKl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKgbY3mFKl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKgbY3mFKl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKgbY3mFKl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKgbY3mFKl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKgbY3mFKl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tKgbY3mFKl .navbar-buttons {
  text-align: center;
}
.cid-tKgbY3mFKl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKgbY3mFKl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-tKgbY3mFKl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKgbY3mFKl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKgbY3mFKl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKgbY3mFKl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKgbY3mFKl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKgbY3mFKl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKgbY3mFKl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKgbY3mFKl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKgbY3mFKl .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tKgbY3mFKl a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tKgbY3mFKl .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tKgbY3mFKl .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tKgbY3mFKl .soc-item {
  margin: .5rem .3rem;
}
.cid-tKgbY3mFKl .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKgbY3mFKl .navbar {
    height: 77px;
  }
  .cid-tKgbY3mFKl .navbar.opened {
    height: auto;
  }
  .cid-tKgbY3mFKl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKgbY465cn {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/light-speed-tunnel.png");
}
.cid-tKgbY465cn .mbr-overlay {
  background: #04367c;
}
.cid-tKgbY465cn .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tKgbY465cn .mbr-section-subtitle,
.cid-tKgbY465cn mbr-section-btn {
  color: #ffffff;
}
.cid-tKgbY465cn B {
  color: #333333;
}
.cid-tKgbY465cn H1 {
  color: #ffffff;
}
.cid-tKIIb08wgI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKIIb08wgI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tKIIb08wgI .form-control,
.cid-tKIIb08wgI .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tKIIb08wgI .form-control::-webkit-input-placeholder,
.cid-tKIIb08wgI .field-input::-webkit-input-placeholder,
.cid-tKIIb08wgI .form-control::-webkit-input-placeholder,
.cid-tKIIb08wgI .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-tKIIb08wgI .form-control:-moz-placeholder,
.cid-tKIIb08wgI .field-input:-moz-placeholder,
.cid-tKIIb08wgI .form-control:-moz-placeholder,
.cid-tKIIb08wgI .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-tKIIb08wgI .form-control:hover,
.cid-tKIIb08wgI .field-input:hover,
.cid-tKIIb08wgI .form-control:focus,
.cid-tKIIb08wgI .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-tKIIb08wgI .form-control:hover::-webkit-input-placeholder,
.cid-tKIIb08wgI .field-input:hover::-webkit-input-placeholder,
.cid-tKIIb08wgI .form-control:focus::-webkit-input-placeholder,
.cid-tKIIb08wgI .field-input:focus::-webkit-input-placeholder,
.cid-tKIIb08wgI .form-control:hover::-webkit-input-placeholder,
.cid-tKIIb08wgI .field-input:hover::-webkit-input-placeholder,
.cid-tKIIb08wgI .form-control:focus::-webkit-input-placeholder,
.cid-tKIIb08wgI .field-input:focus::-webkit-input-placeholder {
  color: #1dc9cb;
}
.cid-tKIIb08wgI .form-control:hover:-moz-placeholder,
.cid-tKIIb08wgI .field-input:hover:-moz-placeholder,
.cid-tKIIb08wgI .form-control:focus:-moz-placeholder,
.cid-tKIIb08wgI .field-input:focus:-moz-placeholder,
.cid-tKIIb08wgI .form-control:hover:-moz-placeholder,
.cid-tKIIb08wgI .field-input:hover:-moz-placeholder,
.cid-tKIIb08wgI .form-control:focus:-moz-placeholder,
.cid-tKIIb08wgI .field-input:focus:-moz-placeholder {
  color: #1dc9cb;
}
.cid-tKIIb08wgI .jq-number__spin:hover,
.cid-tKIIb08wgI .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tKIIb08wgI .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tKIIb08wgI .jq-selectbox li,
.cid-tKIIb08wgI .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tKIIb08wgI .jq-selectbox li:hover,
.cid-tKIIb08wgI .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tKIIb08wgI .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tKIIb08wgI .jq-number__spin.minus:hover:after,
.cid-tKIIb08wgI .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tKIIb08wgI .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tKIIb08wgI .jq-number__spin.minus:after,
.cid-tKIIb08wgI .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tKIIb08wgI input::-webkit-clear-button {
  display: none;
}
.cid-tKIIb08wgI input::-webkit-inner-spin-button {
  display: none;
}
.cid-tKIIb08wgI input::-webkit-outer-spin-button {
  display: none;
}
.cid-tKIIb08wgI input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tKgfeimNs4 {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tKgfeimNs4 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ff4f7b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tKgfeimNs4 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tKgfeimNs4 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tKgfeimNs4 svg {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.5);
  overflow: hidden;
  pointer-events: none;
}
.cid-tKgfeimNs4 #e2_shape {
  fill: #ffffff !important;
}
.cid-tKgfeimNs4 .mbr-section-title {
  text-align: left;
  color: #404040;
}
.cid-tKgfeimNs4 .mbr-section-title.display-1 {
  font-size: 42px;
  line-height: 1.214;
  letter-spacing: 0px;
}
.cid-tKgfeimNs4 .mbr-text {
  color: #404040;
  text-align: left;
}
.cid-tKgfeimNs4 .mbr-text.display-5 {
  font-size: 25px;
  letter-spacing: 0px;
  line-height: 1.36;
}
.cid-tKgfeimNs4 .icon-wrap {
  border-radius: 50%;
  margin: auto;
  text-align: left;
  transition: all 0.3s;
}
.cid-tKgfeimNs4 .mbr-media span {
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 5px;
  display: inline-block;
  opacity: 0.9;
  transition: all 0.25s;
  color: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}
.cid-tKgfeimNs4 .mbr-media span:hover {
  opacity: 1;
  color: #000000 !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
}
.cid-tKgfeimNs4 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tKgfeimNs4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tKgfeimNs4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tKgfeimNs4 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tKgfeimNs4 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tKgfeimNs4 a.close:hover {
  color: #ffffff;
}
.cid-tKgfeimNs4 .play {
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 3.5rem !important;
  text-align: center;
  border-radius: 100%;
  background: #ffffff;
  transition: all 200ms ease-in-out;
  cursor: pointer;
}
.cid-tKgfeimNs4 .play-text {
  margin-bottom: 0 !important;
  padding-left: 10px;
  display: inline-block;
}
.cid-tKgfeimNs4 .play-text.display-4 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .cid-tKgfeimNs4 svg {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-tKgfeimNs4 .show-modal {
    margin-bottom: 20px;
  }
}
.cid-tKgfeimNs4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKgfeimNs4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKgbY4zi2Y {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tKgbY4zi2Y .container {
    max-width: 1400px;
  }
}
.cid-tKgbY4zi2Y .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-tKgbY4zi2Y .card-wrapper {
  margin-top: 3rem;
}
.cid-tKgbY4zi2Y .row {
  justify-content: center;
}
.cid-tKgbY4zi2Y .mbr-section-title {
  color: #232323;
}
.cid-tKgmQtRvRB {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-tKgmQtRvRB .mbr-text {
  color: #444;
}
.cid-tKgmQtRvRB .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tKgmQtRvRB .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-tKgmQtRvRB .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tKgmQtRvRB .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tKgmQtRvRB .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tKgmQtRvRB .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-tKgmQtRvRB .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-tKgmQtRvRB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-tKgmQtRvRB .links {
  color: #ffffff;
}
.cid-u1q619LOpT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u1q619LOpT .nav-item,
.cid-u1q619LOpT .nav-link,
.cid-u1q619LOpT .navbar-caption {
  font-weight: normal;
}
.cid-u1q619LOpT .nav-item:focus,
.cid-u1q619LOpT .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-u1q619LOpT .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-u1q619LOpT .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u1q619LOpT .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-u1q619LOpT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-u1q619LOpT .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-u1q619LOpT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u1q619LOpT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u1q619LOpT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1q619LOpT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1q619LOpT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-u1q619LOpT .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u1q619LOpT .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-u1q619LOpT .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1q619LOpT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1q619LOpT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1q619LOpT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-u1q619LOpT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u1q619LOpT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1q619LOpT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u1q619LOpT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1q619LOpT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u1q619LOpT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u1q619LOpT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1q619LOpT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1q619LOpT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u1q619LOpT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1q619LOpT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u1q619LOpT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u1q619LOpT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1q619LOpT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u1q619LOpT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u1q619LOpT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u1q619LOpT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u1q619LOpT .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u1q619LOpT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u1q619LOpT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u1q619LOpT .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u1q619LOpT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1q619LOpT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1q619LOpT .dropdown-item.active,
.cid-u1q619LOpT .dropdown-item:active {
  background-color: transparent;
}
.cid-u1q619LOpT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1q619LOpT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1q619LOpT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u1q619LOpT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1q619LOpT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1q619LOpT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u1q619LOpT .navbar-buttons {
  text-align: center;
}
.cid-u1q619LOpT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u1q619LOpT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-u1q619LOpT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u1q619LOpT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u1q619LOpT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u1q619LOpT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u1q619LOpT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u1q619LOpT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u1q619LOpT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u1q619LOpT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u1q619LOpT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u1q619LOpT a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u1q619LOpT .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-u1q619LOpT .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-u1q619LOpT .soc-item {
  margin: .5rem .3rem;
}
.cid-u1q619LOpT .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u1q619LOpT .navbar {
    height: 77px;
  }
  .cid-u1q619LOpT .navbar.opened {
    height: auto;
  }
  .cid-u1q619LOpT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1q61adyIK {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(90deg, #2bdc9d, #1dc9cb);
}
.cid-u1q61adyIK .mbr-overlay {
  background: #444444;
}
.cid-u1q61adyIK .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u1q61adyIK .mbr-section-subtitle,
.cid-u1q61adyIK mbr-section-btn {
  color: #ffffff;
}
.cid-u1q61adyIK B {
  color: #333333;
}
.cid-u1q61adyIK H1 {
  color: #ffffff;
}
.cid-u1q6CCXQwJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u1q6CCXQwJ .mbr-text {
  color: #8d97ad;
}
.cid-u1q6CCXQwJ .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-u1q6CCXQwJ .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-u1q61bXOID {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-u1q61bXOID .mbr-text {
  color: #444;
}
.cid-u1q61bXOID .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u1q61bXOID .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-u1q61bXOID .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u1q61bXOID .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u1q61bXOID .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-u1q61bXOID .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u1q61bXOID .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-u1q61bXOID .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-u1q61bXOID .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-u1q61bXOID .links {
  color: #ffffff;
}
.cid-ut8TCJFTP7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ut8TCJFTP7 .nav-item,
.cid-ut8TCJFTP7 .nav-link,
.cid-ut8TCJFTP7 .navbar-caption {
  font-weight: normal;
}
.cid-ut8TCJFTP7 .nav-item:focus,
.cid-ut8TCJFTP7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ut8TCJFTP7 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-ut8TCJFTP7 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ut8TCJFTP7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-ut8TCJFTP7 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-ut8TCJFTP7 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-ut8TCJFTP7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ut8TCJFTP7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-ut8TCJFTP7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ut8TCJFTP7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ut8TCJFTP7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-ut8TCJFTP7 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-ut8TCJFTP7 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-ut8TCJFTP7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ut8TCJFTP7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ut8TCJFTP7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ut8TCJFTP7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-ut8TCJFTP7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ut8TCJFTP7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ut8TCJFTP7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-ut8TCJFTP7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ut8TCJFTP7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ut8TCJFTP7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ut8TCJFTP7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ut8TCJFTP7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ut8TCJFTP7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ut8TCJFTP7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ut8TCJFTP7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-ut8TCJFTP7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ut8TCJFTP7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ut8TCJFTP7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ut8TCJFTP7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ut8TCJFTP7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ut8TCJFTP7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ut8TCJFTP7 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-ut8TCJFTP7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ut8TCJFTP7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ut8TCJFTP7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ut8TCJFTP7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ut8TCJFTP7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ut8TCJFTP7 .dropdown-item.active,
.cid-ut8TCJFTP7 .dropdown-item:active {
  background-color: transparent;
}
.cid-ut8TCJFTP7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ut8TCJFTP7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ut8TCJFTP7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ut8TCJFTP7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ut8TCJFTP7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ut8TCJFTP7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ut8TCJFTP7 .navbar-buttons {
  text-align: center;
}
.cid-ut8TCJFTP7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ut8TCJFTP7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1dc9cb;
}
.cid-ut8TCJFTP7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ut8TCJFTP7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ut8TCJFTP7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ut8TCJFTP7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ut8TCJFTP7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ut8TCJFTP7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ut8TCJFTP7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ut8TCJFTP7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ut8TCJFTP7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ut8TCJFTP7 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ut8TCJFTP7 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-ut8TCJFTP7 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-ut8TCJFTP7 .soc-item {
  margin: .5rem .3rem;
}
.cid-ut8TCJFTP7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ut8TCJFTP7 .navbar {
    height: 77px;
  }
  .cid-ut8TCJFTP7 .navbar.opened {
    height: auto;
  }
  .cid-ut8TCJFTP7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ut8TCK5OyC {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/collaboration01.jpg");
}
.cid-ut8TCK5OyC .mbr-overlay {
  background: #04367c;
  background: linear-gradient(90deg, #04367c, #2bdc9d);
}
.cid-ut8TCK5OyC .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-ut8TCK5OyC .mbr-section-subtitle,
.cid-ut8TCK5OyC mbr-section-btn {
  color: #ffffff;
}
.cid-ut8TCK5OyC B {
  color: #333333;
}
.cid-ut8TCK5OyC H1 {
  color: #ffffff;
}
.cid-ut8TCKjvqP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-ut8TCKjvqP .container {
    max-width: 1400px;
  }
}
.cid-ut8TCKjvqP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-ut8TCKjvqP .card-wrapper {
  margin-top: 3rem;
}
.cid-ut8TCKjvqP .row {
  justify-content: center;
}
.cid-ut8TCKjvqP .mbr-section-title {
  color: #232323;
}
.cid-ut8TCKEUy1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ut8TCKEUy1 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-ut8TCKEUy1 .mbr-section-title {
  text-align: center;
}
.cid-ut8TCLJFpb {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-ut8TCLJFpb .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-ut8TCLJFpb .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-ut8TCLJFpb .text-content {
  padding-right: 1.5rem;
}
.cid-ut8TCLJFpb .mbr-text {
  color: #8d97ad;
}
.cid-ut8TCLJFpb .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-ut8TCLJFpb .counter-container {
  padding-top: 1rem;
}
.cid-ut8TCLJFpb .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-ut8TCLJFpb .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-ut8TCLJFpb .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-ut8TCLJFpb .main-row {
    margin: 0;
  }
  .cid-ut8TCLJFpb .mbr-section-title,
  .cid-ut8TCLJFpb .mbr-text,
  .cid-ut8TCLJFpb .list,
  .cid-ut8TCLJFpb .mbr-section-btn {
    text-align: center !important;
  }
  .cid-ut8TCLJFpb .text-content {
    padding: 0;
  }
}
.cid-ut8TCLJFpb .mbr-text,
.cid-ut8TCLJFpb .mbr-section-btn {
  color: #000000;
}
.cid-ut8TCM0fjy {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-ut8TCM0fjy .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-ut8TCM0fjy .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-ut8TCM0fjy .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-ut8TCM0fjy .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-ut8TCM0fjy .mbr-text {
  color: #8d97ad;
}
.cid-ut8TCM0fjy .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-ut8TCM0fjy .counter-container {
  padding-top: 1rem;
}
.cid-ut8TCM0fjy .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-ut8TCM0fjy .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-ut8TCM0fjy .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-ut8TCM0fjy .main-row {
    margin: 0;
  }
  .cid-ut8TCM0fjy .mbr-section-title,
  .cid-ut8TCM0fjy .mbr-text,
  .cid-ut8TCM0fjy .list,
  .cid-ut8TCM0fjy .mbr-section-btn {
    text-align: center !important;
  }
  .cid-ut8TCM0fjy .text-content {
    padding: 0;
  }
}
.cid-ut8TCM0fjy .mbr-text,
.cid-ut8TCM0fjy .mbr-section-btn {
  color: #000000;
}
.cid-ut8TCMd27V {
  padding-top: 80px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-ut8TCMd27V .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-ut8TCMd27V .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-ut8TCMd27V .text-content {
  padding-right: 1.5rem;
}
.cid-ut8TCMd27V .mbr-text {
  color: #8d97ad;
}
.cid-ut8TCMd27V .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-ut8TCMd27V .counter-container {
  padding-top: 1rem;
}
.cid-ut8TCMd27V .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-ut8TCMd27V .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-ut8TCMd27V .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-ut8TCMd27V .main-row {
    margin: 0;
  }
  .cid-ut8TCMd27V .mbr-section-title,
  .cid-ut8TCMd27V .mbr-text,
  .cid-ut8TCMd27V .list,
  .cid-ut8TCMd27V .mbr-section-btn {
    text-align: center !important;
  }
  .cid-ut8TCMd27V .text-content {
    padding: 0;
  }
}
.cid-ut8TCMd27V .mbr-text,
.cid-ut8TCMd27V .mbr-section-btn {
  color: #000000;
}
.cid-ut8TCMqSpI {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-ut8TCMqSpI .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-ut8TCMqSpI .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-ut8TCMqSpI .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-ut8TCMqSpI .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-ut8TCMqSpI .mbr-text {
  color: #8d97ad;
}
.cid-ut8TCMqSpI .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-ut8TCMqSpI .counter-container {
  padding-top: 1rem;
}
.cid-ut8TCMqSpI .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-ut8TCMqSpI .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-ut8TCMqSpI .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-ut8TCMqSpI .main-row {
    margin: 0;
  }
  .cid-ut8TCMqSpI .mbr-section-title,
  .cid-ut8TCMqSpI .mbr-text,
  .cid-ut8TCMqSpI .list,
  .cid-ut8TCMqSpI .mbr-section-btn {
    text-align: center !important;
  }
  .cid-ut8TCMqSpI .text-content {
    padding: 0;
  }
}
.cid-ut8TCMqSpI .mbr-text,
.cid-ut8TCMqSpI .mbr-section-btn {
  color: #000000;
}
.cid-ut8TCMDFOu {
  padding-top: 20px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-ut8TCMDFOu .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-ut8TCMDFOu .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-ut8TCMDFOu .text-content {
  padding-right: 1.5rem;
}
.cid-ut8TCMDFOu .mbr-text {
  color: #8d97ad;
}
.cid-ut8TCMDFOu .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
}
.cid-ut8TCMDFOu .counter-container {
  padding-top: 1rem;
}
.cid-ut8TCMDFOu .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-ut8TCMDFOu .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-ut8TCMDFOu .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-ut8TCMDFOu .main-row {
    margin: 0;
  }
  .cid-ut8TCMDFOu .mbr-section-title,
  .cid-ut8TCMDFOu .mbr-text,
  .cid-ut8TCMDFOu .list,
  .cid-ut8TCMDFOu .mbr-section-btn {
    text-align: center !important;
  }
  .cid-ut8TCMDFOu .text-content {
    padding: 0;
  }
}
.cid-ut8TCMDFOu .mbr-text,
.cid-ut8TCMDFOu .mbr-section-btn {
  color: #000000;
}
.cid-ut8TCO4MeK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-ut8TCO4MeK .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ut8TCO4MeK .panel-group {
  width: 100%;
}
.cid-ut8TCO4MeK .panel-text,
.cid-ut8TCO4MeK .header-text,
.cid-ut8TCO4MeK .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-ut8TCO4MeK .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-ut8TCO4MeK .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-ut8TCO4MeK .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-ut8TCO4MeK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ut8TCO4MeK .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-ut8TCO4MeK .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-ut8TCO4MeK .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #1dc9cb;
}
.cid-ut8TCO4MeK .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #000000 !important;
}
.cid-ut8TCO4MeK .card .panel-body {
  background: #ffffff;
}
.cid-ut8TCO4MeK .sign {
  color: #232323;
}
.cid-ut8TCO4MeK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8TCO4MeK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8TCO4MeK .panel-text {
  color: #232323;
}
.cid-ut8TCO4MeK .header-text {
  color: #1dc9cb;
}
.cid-ut8TCOopOF {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-ut8TCOopOF .mbr-overlay {
  background: #232323;
}
.cid-ut8TCOopOF .mbr-section-subtitle {
  color: #cccccc;
}
.cid-ut8TCOopOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ut8TCOopOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ut8TCOBLJn {
  padding-top: 105px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/hk-night.jpeg");
}
.cid-ut8TCOBLJn .mbr-text {
  color: #444;
}
.cid-ut8TCOBLJn .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ut8TCOBLJn .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-ut8TCOBLJn .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ut8TCOBLJn .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ut8TCOBLJn .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-ut8TCOBLJn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ut8TCOBLJn .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-ut8TCOBLJn .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-ut8TCOBLJn .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-ut8TCOBLJn .links {
  color: #ffffff;
}
