@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,400,500,600,700,800,900&amp;display=swap);





body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.625rem 0.874rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.3125rem 2.5rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #5aac98 !important;
}
.bg-success {
  background-color: #1e7c3a !important;
}
.bg-info {
  background-color: #74a3c7 !important;
}
.bg-warning {
  background-color: #ffd785 !important;
}
.bg-danger {
  background-color: #ff9685 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5aac98 !important;
  border-color: #5aac98 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #478c7b !important;
  border-color: #478c7b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #478c7b !important;
  border-color: #478c7b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a25dae !important;
  border-color: #a25dae !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #854890 !important;
  border-color: #854890 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #854890 !important;
  border-color: #854890 !important;
}
.btn-info,
.btn-info:active {
  background-color: #74a3c7 !important;
  border-color: #74a3c7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #508bb8 !important;
  border-color: #508bb8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #508bb8 !important;
  border-color: #508bb8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #1e7c3a !important;
  border-color: #1e7c3a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #145327 !important;
  border-color: #145327 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #145327 !important;
  border-color: #145327 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffd785 !important;
  border-color: #ffd785 !important;
  color: #855900 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #523700 !important;
  background-color: #ffc652 !important;
  border-color: #ffc652 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #855900 !important;
  background-color: #ffc652 !important;
  border-color: #ffc652 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9685 !important;
  border-color: #ff9685 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff6a52 !important;
  border-color: #ff6a52 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff6a52 !important;
  border-color: #ff6a52 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-white:hover {
  color: #fafafa !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black {
  color: #fafafa !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black:hover {
  color: #333333 !important;
}
.btn-black:hover,
.btn-black:hover:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover:hover,
.btn-black:hover:focus,
.btn-black:hover.focus,
.btn-black:hover.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover.disabled,
.btn-black:hover:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5aac98;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #478c7b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5aac98 !important;
  border-color: #5aac98 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a25dae;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #854890 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #a25dae !important;
  border-color: #a25dae !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #74a3c7;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #508bb8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #74a3c7 !important;
  border-color: #74a3c7 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1e7c3a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #145327 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1e7c3a !important;
  border-color: #1e7c3a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd785;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffc652 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #855900 !important;
  background-color: #ffd785 !important;
  border-color: #ffd785 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9685;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff6a52 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9685 !important;
  border-color: #ff9685 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #fafafa;
  background-color: transparent;
  border-color: transparent;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: transparent;
  border-color: transparent;
}
.text-primary {
  color: #5aac98 !important;
}
.text-secondary {
  color: #a25dae !important;
}
.text-success {
  color: #1e7c3a !important;
}
.text-info {
  color: #74a3c7 !important;
}
.text-warning {
  color: #ffd785 !important;
}
.text-danger {
  color: #ff9685 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #333333 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #478c7b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #854890 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #145327 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #508bb8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffc652 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff6a52 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #e1e1e1 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #74a3c7;
}
.alert-warning {
  background-color: #ffd785;
}
.alert-danger {
  background-color: #ff9685;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5aac98;
  border-color: #5aac98;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5aac98;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #afd7cd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #47d271;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cfdfec;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #5aac98;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5aac98;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5aac98;
  border-bottom-color: #5aac98;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #5aac98 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #a25dae !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%235aac98' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-s67i70javY {
  z-index: 1000;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 97px;
}
.cid-s67i70javY nav.navbar {
  position: fixed;
}
.cid-s67i70javY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s67i70javY .dropdown-menu {
  padding: 0;
}
.cid-s67i70javY .dropdown-item:active {
  color: #F1C050;
}
.cid-s67i70javY .nav-dropdown .dropdown-menu {
  box-shadow: 0px 10px 30px -11px rgba(0, 0, 0, 0.3);
}
.cid-s67i70javY .nav-dropdown .link {
  transition: color 0.2s ease-in-out;
  padding: 0 !important;
  margin: 1.667em 2em !important;
}
.cid-s67i70javY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s67i70javY .nav-link {
  position: relative;
}
.cid-s67i70javY .nav-link:hover {
  color: #333333 !important;
}
.cid-s67i70javY .container {
  display: flex;
  margin: auto;
}
.cid-s67i70javY .iconfont-wrapper {
  color: #1e7c3a !important;
  font-size: 1.2rem;
}
.cid-s67i70javY .navbar-caption {
  padding-right: 4rem;
}
.cid-s67i70javY .dropdown-menu,
.cid-s67i70javY .navbar.opened {
  background: #ffffff !important;
}
.cid-s67i70javY .nav-item:focus,
.cid-s67i70javY .nav-link:focus {
  outline: none;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s67i70javY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s67i70javY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s67i70javY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: transparent;
  background: #ffffff;
}
.cid-s67i70javY .navbar.opened {
  transition: all .3s;
}
.cid-s67i70javY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s67i70javY .navbar .navbar-logo img {
  width: auto;
}
.cid-s67i70javY .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s67i70javY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s67i70javY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s67i70javY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s67i70javY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s67i70javY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s67i70javY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s67i70javY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s67i70javY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s67i70javY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s67i70javY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s67i70javY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s67i70javY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s67i70javY .navbar.navbar-short {
  min-height: 60px;
}
.cid-s67i70javY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s67i70javY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s67i70javY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s67i70javY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s67i70javY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s67i70javY .dropdown-item.active,
.cid-s67i70javY .dropdown-item:active {
  background-color: transparent;
}
.cid-s67i70javY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s67i70javY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s67i70javY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s67i70javY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s67i70javY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s67i70javY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s67i70javY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s67i70javY ul.navbar-nav .nav-item.open .nav-link {
  color: #f1c050 !important;
}
.cid-s67i70javY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s67i70javY .navbar-buttons .btn {
  width: auto;
  letter-spacing: 1px;
  padding: 10px 30px;
}
.cid-s67i70javY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s67i70javY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s67i70javY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s67i70javY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s67i70javY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s67i70javY .navbar {
    height: 77px;
  }
  .cid-s67i70javY .navbar.opened {
    height: auto;
  }
  .cid-s67i70javY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s6e52VbpUJ {
  background-color: #002661;
  background: linear-gradient(to right top, #002661, #92ffc0);
}
.cid-s6e52VbpUJ .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-s67jg1oEU8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67jg1oEU8 .container-fluid {
  padding: 0;
}
.cid-s67jg1oEU8 .mbr-figure {
  overflow: hidden;
  position: relative;
}
.cid-s67jg1oEU8 figcaption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 50% !important;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  padding: 1.5rem 0px;
  text-align: center;
}
.cid-s67jg1oEU8 figcaption .mbr-text {
  padding: 0 40px;
}
@media (max-width: 768px) {
  .cid-s67jg1oEU8 figcaption {
    display: none;
  }
}
.cid-s67jqhPscS {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s67jmTfMaO {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67jmTfMaO .mbr-figure {
  overflow: hidden;
  position: relative;
}
.cid-s67jmTfMaO figcaption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 50% !important;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  padding: 1.5rem 0px;
  text-align: center;
}
.cid-s67jmTfMaO figcaption .mbr-text {
  padding: 0 40px;
}
@media (max-width: 768px) {
  .cid-s67jmTfMaO figcaption {
    display: none;
  }
}
.cid-s67jOrAXoE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s67jOrAXoE .card-wrapper {
  border-radius: 4px;
}
.cid-s67jOrAXoE .card-subtitle {
  color: #0095ff;
}
.cid-s67jOrAXoE .mbr-text,
.cid-s67jOrAXoE .card-subtitle {
  color: #232323;
}
.cid-s67jOrAXoE img {
  border-radius: 6px;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s67jOrAXoE img {
    margin-bottom: 2rem;
  }
}
.cid-s67jOrAXoE .title .mbr-section-title,
.cid-s67jOrAXoE .title .mbr-section-btn {
  text-align: center;
}
.cid-s67jOrAXoE .card .card-wrapper .text-wrapper .card-subtitle,
.cid-s67jOrAXoE .card .card-wrapper .text-wrapper .mbr-section-btn {
  text-align: center;
}
.cid-s6e72DMk2v {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s6e72DMk2v .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s6e72DMk2v .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s6e72DMk2v .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-s6e72DMk2v .row-copyright p {
  width: 100%;
}
.cid-s67i70javY {
  z-index: 1000;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 97px;
}
.cid-s67i70javY nav.navbar {
  position: fixed;
}
.cid-s67i70javY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s67i70javY .dropdown-menu {
  padding: 0;
}
.cid-s67i70javY .dropdown-item:active {
  color: #F1C050;
}
.cid-s67i70javY .nav-dropdown .dropdown-menu {
  box-shadow: 0px 10px 30px -11px rgba(0, 0, 0, 0.3);
}
.cid-s67i70javY .nav-dropdown .link {
  transition: color 0.2s ease-in-out;
  padding: 0 !important;
  margin: 1.667em 2em !important;
}
.cid-s67i70javY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s67i70javY .nav-link {
  position: relative;
}
.cid-s67i70javY .nav-link:hover {
  color: #333333 !important;
}
.cid-s67i70javY .container {
  display: flex;
  margin: auto;
}
.cid-s67i70javY .iconfont-wrapper {
  color: #1e7c3a !important;
  font-size: 1.2rem;
}
.cid-s67i70javY .navbar-caption {
  padding-right: 4rem;
}
.cid-s67i70javY .dropdown-menu,
.cid-s67i70javY .navbar.opened {
  background: #ffffff !important;
}
.cid-s67i70javY .nav-item:focus,
.cid-s67i70javY .nav-link:focus {
  outline: none;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s67i70javY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s67i70javY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s67i70javY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s67i70javY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: transparent;
  background: #ffffff;
}
.cid-s67i70javY .navbar.opened {
  transition: all .3s;
}
.cid-s67i70javY .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s67i70javY .navbar .navbar-logo img {
  width: auto;
}
.cid-s67i70javY .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s67i70javY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s67i70javY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s67i70javY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s67i70javY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s67i70javY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s67i70javY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s67i70javY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s67i70javY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s67i70javY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s67i70javY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s67i70javY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s67i70javY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s67i70javY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s67i70javY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s67i70javY .navbar.navbar-short {
  min-height: 60px;
}
.cid-s67i70javY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s67i70javY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s67i70javY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s67i70javY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s67i70javY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s67i70javY .dropdown-item.active,
.cid-s67i70javY .dropdown-item:active {
  background-color: transparent;
}
.cid-s67i70javY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s67i70javY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s67i70javY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s67i70javY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s67i70javY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s67i70javY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s67i70javY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s67i70javY ul.navbar-nav .nav-item.open .nav-link {
  color: #f1c050 !important;
}
.cid-s67i70javY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s67i70javY .navbar-buttons .btn {
  width: auto;
  letter-spacing: 1px;
  padding: 10px 30px;
}
.cid-s67i70javY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s67i70javY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s67i70javY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s67i70javY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s67i70javY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s67i70javY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s67i70javY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s67i70javY .navbar {
    height: 77px;
  }
  .cid-s67i70javY .navbar.opened {
    height: auto;
  }
  .cid-s67i70javY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s67pZvzYjw {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s6e6bGSIjA {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("https://mobirise.com/extensions/directm4/assets/images/background3.jpg");
}
.cid-s6e6bGSIjA .row.heading {
  margin-bottom: 72px;
}
.cid-s6e6bGSIjA .card {
  flex-direction: row;
  justify-content: center;
}
.cid-s6e6bGSIjA .card-box {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-s6e6bGSIjA .card-box .card-title {
  color: #ffffff;
}
.cid-s6e6bGSIjA .card-box .mbr-text {
  color: #ffffff;
}
.cid-s6e6bGSIjA .card-box .link .btn {
  margin: 0;
}
.cid-s6e6bGSIjA .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-s6e6bGSIjA .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-s6e6bGSIjA .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-s6e6bGSIjA .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-s6e6bGSIjA .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-s6e6bGSIjA .card .card-box .card-title,
  .cid-s6e6bGSIjA .card .card-box .mbr-text,
  .cid-s6e6bGSIjA .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-s6e6bGSIjA .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-s6e6c7ThUK {
  background-color: #084a6e;
  background: linear-gradient(to right top, #084a6e, #24a383);
}
.cid-s6e6c7ThUK .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-s6e6cANWwA {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #094587;
  background: linear-gradient(to right top, #094587, #3adcdc);
}
.cid-s6e6cANWwA .mbr-text,
.cid-s6e6cANWwA .mbr-section-btn {
  color: #ffffff;
}
.cid-s6e6cANWwA .mbr-section-title {
  color: #ffffff;
}
.cid-s6e6cANWwA .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-s6e6cANWwA * {
    text-align: center;
  }
  .cid-s6e6cANWwA .buttons-wrap {
    justify-content: center;
  }
}
.cid-s6e6d0CHar {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #bf359d;
  background: linear-gradient(20deg, #bf359d, #dc4c35, #fdff81);
}
.cid-s6e6d0CHar .mbr-text,
.cid-s6e6d0CHar .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-s6e6d0CHar .mbr-section-title,
.cid-s6e6d0CHar .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-s6e6d0CHar * {
    text-align: center !important;
  }
  .cid-s6e6d0CHar .buttons-wrap {
    justify-content: center;
  }
}
.cid-s6e6dtb9EZ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #d57df7;
  background: linear-gradient(to right top, #d57df7, #2a1669);
}
.cid-s6e6dtb9EZ .img-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
.cid-s6e6dtb9EZ .img-wrap img {
  width: 80%;
  margin: auto;
}
.cid-s6e6dtb9EZ .mbr-text,
.cid-s6e6dtb9EZ .mbr-section-btn {
  color: #ffffff;
}
.cid-s6e6dtb9EZ .mbr-section-title {
  color: #ffffff;
}
.cid-s6e6dtb9EZ .buttons-wrap .link {
  display: flex;
}
.cid-s6e6dtb9EZ .mbr-arrow {
  bottom: 0;
}
.cid-s6e6e3i8lz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00a8c5;
  background: linear-gradient(to right top, #00a8c5, #ffff7e);
}
.cid-s6e6e3i8lz .mbr-text,
.cid-s6e6e3i8lz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-s6e6e3i8lz .mbr-section-title,
.cid-s6e6e3i8lz .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-s6e6e3i8lz .video-wrapper {
  width: 55%;
  margin: auto;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .cid-s6e6e3i8lz .app-video-wrapper::before {
    font-size: 50px;
    line-height: 1;
    margin-left: -20px;
    margin-top: -25px;
  }
}
.cid-s67qlBLA5U {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s67qlBLA5U .container-fluid {
  padding: 0;
}
.cid-s67qlBLA5U .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s67qlBLA5U .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s67qlBLA5U .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s67qlBLA5U .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s67qlBLA5U .mbr-gallery-item {
  padding: 0px !important;
}
.cid-s67qlBLA5U .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-s67qlBLA5U .mbr-gallery-filter .btn {
  color: #74a3c7 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 5px 12px;
}
.cid-s67qlBLA5U .mbr-gallery-filter ul {
  display: block;
}
.cid-s67qlBLA5U .mbr-gallery-filter ul li {
  position: relative;
  margin: 5px;
}
.cid-s67qlBLA5U .mbr-gallery-filter li.active .btn {
  color: #333333 !important;
  background: transparent;
  border: 1px solid #dddfe0 !important;
}
.cid-s67qlBLA5U .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #333333 !important;
}
.cid-s67qlBLA5U .mbr-gallery-title {
  display: block;
  display: none !important;
  width: 100%;
  margin: 0;
  padding: 1rem 0 1rem 1rem;
  color: #222;
  text-align: left;
}
.cid-s67qlBLA5U .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-s67qlBLA5U .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 47px);
  top: calc(50% - 24px);
}
.cid-s67qlBLA5U .icon-focus:before {
  content: '\e96b';
}
.cid-s67qlBLA5U .icon-focus {
  transition: all .3s;
  font-size: 3rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px padding: 0 8px;
  border-radius: 50%;
  color: #ffffff !important;
}
.cid-s67qlBLA5U .icon-focus::after {
  border: 2px solid #fff;
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
.cid-s67qlBLA5U .mbr-section-title {
  margin: 0;
}
.cid-s6e6jyHyYf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eeeeee;
}
.cid-s6e6jyHyYf .carousel {
  height: 800px;
}
.cid-s6e6jyHyYf .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-s6e6jyHyYf .carousel-item,
.cid-s6e6jyHyYf .carousel-inner {
  height: 100%;
}
.cid-s6e6jyHyYf .mbr-overlay {
  z-index: 1;
}
.cid-s6e6jyHyYf .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: center;
}
.cid-s6e6jyHyYf .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-s6e6jyHyYf .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-s6e6jyHyYf .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-s6e6jyHyYf .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-s6e6jyHyYf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-s6e6jyHyYf .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-s6e6jyHyYf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-s6e6jyHyYf .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-s6e6jyHyYf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s6e6jyHyYf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-s6e6jyHyYf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-s6e6jyHyYf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-s6e6jyHyYf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-s6e6jyHyYf .carousel-indicators li.active {
  background-color: #5aac98;
}
.cid-s6e6jyHyYf .carousel-indicators li.active,
.cid-s6e6jyHyYf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-s6e6jyHyYf .carousel-indicators li::after,
.cid-s6e6jyHyYf .carousel-indicators li::before {
  content: none;
}
.cid-s6e6jyHyYf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-s6e6jyHyYf .carousel-indicators {
    display: none !important;
  }
}
.cid-s6e6jyHyYf .btn.btn-primary-outline {
  border: 1px solid #5aac98;
}
.cid-s6e6jyHyYf .btn.btn-primary-outline:hover {
  background-color: #5aac98 !important;
  color: #ffffff !important;
}
.cid-s6e6jyHyYf .btn.btn-secondary-outline {
  border: 1px solid #a25dae;
}
.cid-s6e6jyHyYf .btn.btn-secondary-outline:hover {
  background-color: #a25dae !important;
  color: #ffffff !important;
}
.cid-s6e6jyHyYf .btn.btn-success-outline {
  border: 1px solid #1e7c3a;
}
.cid-s6e6jyHyYf .btn.btn-success-outline:hover {
  background-color: #1e7c3a !important;
  color: #ffffff !important;
}
.cid-s6e6jyHyYf .btn.btn-info-outline {
  border: 1px solid #74a3c7;
}
.cid-s6e6jyHyYf .btn.btn-info-outline:hover {
  background-color: #74a3c7 !important;
  color: #ffffff !important;
}
.cid-s6e6jyHyYf .btn.btn-warning-outline {
  border: 1px solid #ffd785;
}
.cid-s6e6jyHyYf .btn.btn-warning-outline:hover {
  background-color: #ffd785 !important;
  color: #ffffff !important;
}
.cid-s6e6jyHyYf .btn.btn-danger-outline {
  border: 1px solid #ff9685;
}
.cid-s6e6jyHyYf .btn.btn-danger-outline:hover {
  background-color: #ff9685 !important;
  color: #ffffff !important;
}
.cid-s6e6jyHyYf .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-s6e6jyHyYf .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-s6e6jyHyYf .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-s6e6jyHyYf .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-s6e6jyHyYf .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-s6e6jyHyYf .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-s6e6jyHyYf .carousel-control {
    display: none;
  }
  .cid-s6e6jyHyYf .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .cid-s6e6jyHyYf .buttons-wrap .mbr-section-btn {
    text-align: center;
    margin-bottom: 10px;
  }
}
.cid-s67qmHVoEU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-s67qmHVoEU .google-map {
  height: 30rem;
  position: relative;
}
.cid-s67qmHVoEU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s67qmHVoEU .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s67qmHVoEU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s67qmHVoEU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s67qorXRXA {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qrs1ItH {
  flex-direction: column !important;
  background-color: #ffffff;
}
.cid-s67qrs1ItH .wrap {
  background: url("https://mobirise.com/extensions/directm4/assets/images/msg-box1-card.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 6px;
}
.cid-s67qrs1ItH .wrap .inner-wrap {
  padding: 40px;
  margin: auto;
  width: 50%;
}
.cid-s67qrs1ItH .card {
  flex-direction: row;
  justify-content: center;
}
.cid-s67qrs1ItH .card-box {
  text-align: center;
}
.cid-s67qrs1ItH .card-box .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  border: 2px solid #ffffff;
}
.cid-s67qrs1ItH .card-box .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 35px;
  line-height: 1.88;
  display: inline-block;
}
.cid-s67qrs1ItH .card-box .card-title {
  color: #ffffff;
}
.cid-s67qrs1ItH .card-box .mbr-text {
  color: #ffffff;
}
.cid-s67qrs1ItH .card-box .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-s67qrs1ItH .inner-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-s67qrs1ItH .card {
    flex-direction: column;
  }
  .cid-s67qrs1ItH .card .card-img {
    padding-bottom: 1.5rem;
  }
  .cid-s67qrs1ItH .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-s67qrs1ItH .card .card-box .card-title,
  .cid-s67qrs1ItH .card .card-box .mbr-text,
  .cid-s67qrs1ItH .card .card-box .link {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-s67qrs1ItH .inner-wrap {
    padding: 50px 0 !important;
  }
}
@media (min-width: 768px) {
  .cid-s67qrs1ItH .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-s67qrHMMCC {
  flex-direction: column !important;
  justify-content: center;
  background-color: #ffffff;
}
.cid-s67qrHMMCC .mbr-fullscreen {
  min-height: 0 !important;
}
.cid-s67qrHMMCC .gradient-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ff3424;
  background: linear-gradient(to right top, #ff3424, #ffe541);
  opacity: 1;
  left: 0;
  top: 0;
  border-radius: 6px;
  transition: opacity 1s;
}
.cid-s67qrHMMCC .wrap .inner-wrap {
  padding: 40px;
  margin: auto;
}
.cid-s67qrHMMCC .wrap .content-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-s67qrHMMCC .card {
  flex-direction: row;
  justify-content: center;
}
.cid-s67qrHMMCC .card-box {
  text-align: center;
}
.cid-s67qrHMMCC .card-box .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-s67qrHMMCC .card-box .card-img span {
  border: 2px solid #ffffff;
  padding: 15.5px;
  border-radius: 70px;
  text-align: center;
  color: #ffffff;
  font-size: 35px;
  display: inline-block;
}
.cid-s67qrHMMCC .card-box .card-title {
  color: #ffffff;
}
.cid-s67qrHMMCC .card-box .mbr-text {
  color: #ffffff;
}
.cid-s67qrHMMCC .card-box .btn {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-s67qrHMMCC .card {
    flex-direction: column;
  }
  .cid-s67qrHMMCC .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-s67qrHMMCC .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-s67qrHMMCC .card .card-box .card-title,
  .cid-s67qrHMMCC .card .card-box .mbr-text,
  .cid-s67qrHMMCC .card .card-box .link {
    text-align: center;
  }
}
.cid-s67qs1OHK6 {
  padding-top: 105px;
  padding-bottom: 105px;
  background: #ffffff;
}
.cid-s67qs1OHK6 .carousel-item {
  justify-content: flex-start;
  text-align: center;
}
.cid-s67qs1OHK6 .carousel-item .mbr-section-subtitle {
  color: #232332;
}
.cid-s67qs1OHK6 .carousel-item .btn {
  margin: 0.4rem !important;
  justify-content: space-between;
}
.cid-s67qs1OHK6 .carousel-item .btn.btn-sm {
  padding: 9px 41px;
}
.cid-s67qs1OHK6 .carousel-item img {
  width: 100%;
  height: 50vh;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 2rem;
}
.cid-s67qs1OHK6 .carousel-item.active,
.cid-s67qs1OHK6 .carousel-item-next,
.cid-s67qs1OHK6 .carousel-item-prev {
  display: flex;
}
.cid-s67qs1OHK6 .carousel-controls a {
  transition: opacity .5s;
  width: 5%;
}
.cid-s67qs1OHK6 .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 40px;
  padding: 15px;
  border-radius: 50%;
  color: #000000;
  background: transparent;
}
.cid-s67qs1OHK6 .carousel-controls a:hover span {
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-s67qs1OHK6 .carousel-controls {
    display: none;
  }
}
.cid-s67qs1OHK6 .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  position: relative;
}
.cid-s67qs1OHK6 .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #5aac98;
}
.cid-s67qs1OHK6 .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: opacity .5s;
  background-color: #ffffff;
  font-size: 2rem;
  opacity: .5;
  border: 1px solid #dddfe0;
}
.cid-s67qs1OHK6 .carousel-indicators li:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s67qs1OHK6 * {
    text-align: center;
  }
}
.cid-s67qsiiJo3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s67qsiiJo3 .card-wrapper {
  border-radius: 4px;
}
.cid-s67qsiiJo3 .card-subtitle {
  color: #0095ff;
}
.cid-s67qsiiJo3 .mbr-text,
.cid-s67qsiiJo3 .card-subtitle {
  color: #232323;
}
.cid-s67qsiiJo3 img {
  border-radius: 6px;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-s67qsiiJo3 img {
    margin-bottom: 2rem;
  }
}
.cid-s67qsJD8lc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qsJD8lc .card .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: -1;
  background: linear-gradient(to right top, #5aac98, #8accb8);
}
.cid-s67qsJD8lc .card:hover .card-overlay {
  opacity: 1;
}
.cid-s67qsJD8lc .card:hover .card-wrapper * {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-s67qsJD8lc .card-wrapper {
  background: transparent;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #e5e5e5;
  position: relative;
  z-index: 1;
}
.cid-s67qsJD8lc .card-wrapper .card-box {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 30px;
}
.cid-s67qsJD8lc .card-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-s67qsJD8lc .card-wrapper .card-box .card-subtitle {
  color: #232323;
}
.cid-s67qsJD8lc .card-wrapper .card-box .mbr-text,
.cid-s67qsJD8lc .card-wrapper .card-box .link-wrap {
  color: #555555;
}
.cid-s67qsJD8lc .card-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 2px solid #5aac98;
  border-radius: 50%;
}
.cid-s67qsJD8lc .card-wrapper .img-wrapper .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #5aac98;
}
@media (max-width: 992px) {
  .cid-s67qsJD8lc .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s67qsJD8lc .card-wrapper {
    flex-direction: column;
  }
  .cid-s67qsJD8lc .card-box {
    padding: 0 !important;
    margin-top: 1rem;
    text-align: center !important;
  }
  .cid-s67qsJD8lc .card-box .card-title {
    margin: 0px !important;
    padding: 0px !important;
  }
  .cid-s67qsJD8lc .card-box * {
    text-align: center;
  }
  .cid-s67qsJD8lc .card-box,
  .cid-s67qsJD8lc .img-wrapper {
    width: 100%;
    align-self: center;
  }
  .cid-s67qsJD8lc .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-s67qsJD8lc .mbr-flex {
    flex-direction: column-reverse;
    align-content: center;
  }
}
.cid-s67qsZmcZa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qsZmcZa .card-wrapper {
  border-radius: 4px;
}
.cid-s67qsZmcZa .card-subtitle {
  color: #0095ff;
}
.cid-s67qsZmcZa .mbr-text,
.cid-s67qsZmcZa .card-subtitle {
  color: #232323;
}
.cid-s67qsZmcZa .mbr-iconfont {
  font-size: 90px;
  color: #74a3c7;
}
.cid-s67qsZmcZa .icon {
  text-align: end;
}
@media (max-width: 768px) {
  .cid-s67qsZmcZa .icon {
    margin-bottom: 15px;
  }
  .cid-s67qsZmcZa * {
    text-align: center !important;
  }
}
.cid-s67qtrTwur {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qtrTwur .mbr-section-title,
.cid-s67qtrTwur .mbr-section-subtitle {
  text-align: center;
}
.cid-s67qtrTwur .card {
  margin-bottom: 2rem;
}
.cid-s67qtrTwur .cards-wrap {
  background: #f6f7f8;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 80px;
  padding-bottom: 48px;
}
.cid-s67qtrTwur .cards-wrap .features-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 1em;
}
.cid-s67qtrTwur .cards-wrap .card {
  display: flex;
  flex-direction: row;
}
.cid-s67qtrTwur .cards-wrap .card-img {
  font-size: 40px;
  background: #5aac98;
  line-height: 68px;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.cid-s67qtrTwur .cards-wrap .card .card-wrapper {
  margin-left: 23px;
  border-radius: 4px;
}
.cid-s67qtrTwur .cards-wrap .card .card-wrapper .bottom-line .mbr-text {
  color: #999999;
}
@media (max-width: 767px) {
  .cid-s67qtrTwur .card-wrapper {
    padding: 1rem;
    margin-left: 0 !important;
  }
  .cid-s67qtrTwur .cards-wrap .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .cid-s67qtrTwur .cards-wrap .card .card-img {
    align-self: center;
  }
  .cid-s67qtrTwur * {
    text-align: center;
  }
}
.cid-s67qtRtY7F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qtRtY7F .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-s67qtRtY7F .card-title {
  font-weight: 600;
}
.cid-s67qtRtY7F .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-s67qtRtY7F .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #5aac98;
  background-color: #ffffff;
  border: 2px solid #5aac98;
}
.cid-s67qtRtY7F .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #5aac98;
}
.cid-s67qtRtY7F .card-img .icon span {
  color: #5aac98;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-s67qtRtY7F .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-s67qtRtY7F .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-s67qtRtY7F .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-s67qtRtY7F .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-s67queox2A {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffd785;
  background: linear-gradient(to right top, #ffd785, #1f8068);
}
.cid-s67queox2A .bg-icon {
  z-index: 5;
  position: absolute;
  top: 50%;
  right: 10%;
  margin-top: -20vh;
}
.cid-s67queox2A .bg-icon .mbr-iconfont {
  font-size: 40vh;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.1);
}
.cid-s67queox2A .card-wrapper {
  border-radius: 0;
  padding: 1rem;
}
.cid-s67queox2A .card-wrapper .card-box {
  display: flex;
}
.cid-s67queox2A .card-title {
  font-weight: 600;
}
.cid-s67queox2A .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-right: 30px;
  margin-left: 10px;
  margin-top: 5px;
}
.cid-s67queox2A .card-img .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: inline-block;
  line-height: 61px;
  text-align: center;
  transition: all .3s;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.cid-s67queox2A .card-img .icon .mbr-iconfont {
  font-size: 40px;
  line-height: 61px;
  color: #ffffff;
}
.cid-s67queox2A .card-img .icon span {
  color: #ffffff;
  font-size: 22px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-s67queox2A .card-box {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .cid-s67queox2A .card-box .card-img {
    align-self: center;
    margin: 0;
    margin-bottom: 20px;
  }
  .cid-s67queox2A * {
    text-align: center;
  }
  .cid-s67queox2A .bg-icon {
    display: none;
  }
}
.cid-s67qutJb8Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qutJb8Z .mbr-section-title,
.cid-s67qutJb8Z .mbr-section-subtitle {
  text-align: center;
}
.cid-s67qutJb8Z .cards-wrap {
  background: #f6f7f8;
  padding: 50px;
  padding-bottom: 48px;
  padding-top: 80px;
}
.cid-s67qutJb8Z .cards-wrap .features-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 1em;
}
.cid-s67qutJb8Z .cards-wrap .card {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 2rem;
}
.cid-s67qutJb8Z .cards-wrap .card-img {
  text-align: right;
  border-radius: .25rem;
}
.cid-s67qutJb8Z .cards-wrap .card-img-inner {
  vertical-align: middle;
  margin-top: 5px;
}
.cid-s67qutJb8Z .cards-wrap .card-img-inner .mbr-iconfont {
  background: #5aac98;
  border-color: #5aac98;
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #ffffff;
  border-radius: 18px;
  display: inline-block;
  text-align: center;
  vertical-align: -3px;
  color: #000000;
}
.cid-s67qutJb8Z .cards-wrap .card-img-inner .mbr-iconfont::before {
  position: absolute;
  top: -2px;
  right: -4px;
  font-weight: bold;
}
.cid-s67qutJb8Z .cards-wrap .card .card-wrapper {
  margin-left: 15px;
  border-radius: 4px;
}
.cid-s67qutJb8Z .cards-wrap .card .card-wrapper .bottom-line .mbr-text {
  color: #999999;
}
.cid-s6e6pl9Wr2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-s6e6pl9Wr2 .img-wrap {
  position: relative;
}
.cid-s6e6pl9Wr2 .round-block {
  background: #39937c;
  background: linear-gradient(45deg, #39937c, #5aac98, #7cbdad);
  width: 266px;
  height: 266px;
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 1;
  border-radius: 50%;
  transition: box-shadow 1s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-s6e6pl9Wr2 .round-block .wrapper {
  vertical-align: middle;
}
.cid-s6e6pl9Wr2 .round-block .wrapper .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-s6e6pl9Wr2 .mbr-text,
.cid-s6e6pl9Wr2 .mbr-section-btn {
  color: #232323;
}
.cid-s6e6pl9Wr2 .mbr-section-title {
  color: #232323;
  margin-bottom: 30px;
}
.cid-s6e6pl9Wr2 .buttons-wrap .link {
  display: flex;
}
.cid-s6e6pl9Wr2 .list {
  list-style: none;
}
.cid-s6e6pl9Wr2 .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-s6e6pl9Wr2 .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #5aac98;
}
@media (max-width: 768px) {
  .cid-s6e6pl9Wr2 * {
    text-align: center;
  }
  .cid-s6e6pl9Wr2 .buttons-wrap {
    justify-content: center;
  }
  .cid-s6e6pl9Wr2 .round-block {
    position: relative;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
.cid-s6e6r5bilf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-s6e6r5bilf h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-s6e6r5bilf h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-s6e6r5bilf .media-container-row {
  justify-content: space-between;
}
.cid-s6e6r5bilf .btn.btn-primary-outline {
  border: 1px solid #5aac98;
}
.cid-s6e6r5bilf .btn.btn-primary-outline:hover {
  background-color: #5aac98 !important;
  color: #ffffff !important;
}
.cid-s6e6r5bilf .btn.btn-secondary-outline {
  border: 1px solid #a25dae;
}
.cid-s6e6r5bilf .btn.btn-secondary-outline:hover {
  background-color: #a25dae !important;
  color: #ffffff !important;
}
.cid-s6e6r5bilf .btn.btn-success-outline {
  border: 1px solid #1e7c3a;
}
.cid-s6e6r5bilf .btn.btn-success-outline:hover {
  background-color: #1e7c3a !important;
  color: #ffffff !important;
}
.cid-s6e6r5bilf .btn.btn-info-outline {
  border: 1px solid #74a3c7;
}
.cid-s6e6r5bilf .btn.btn-info-outline:hover {
  background-color: #74a3c7 !important;
  color: #ffffff !important;
}
.cid-s6e6r5bilf .btn.btn-warning-outline {
  border: 1px solid #ffd785;
}
.cid-s6e6r5bilf .btn.btn-warning-outline:hover {
  background-color: #ffd785 !important;
  color: #ffffff !important;
}
.cid-s6e6r5bilf .btn.btn-danger-outline {
  border: 1px solid #ff9685;
}
.cid-s6e6r5bilf .btn.btn-danger-outline:hover {
  background-color: #ff9685 !important;
  color: #ffffff !important;
}
.cid-s6e6r5bilf .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-s6e6r5bilf .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-s6e6r5bilf .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-s6e6r5bilf .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-s6e6r5bilf .form-control {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  height: 66px;
  background: #eef2f7;
  border: 1px solid #eef2f7;
  border-radius: 6px;
  border-collapse: separate;
  color: #333;
  text-align: left;
  cursor: text;
  box-shadow: none;
  font-size: 0.875rem;
  line-height: 1.43;
  min-height: 3.5em;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.cid-s67qvLrss1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qvLrss1 .card-wrapper {
  border-radius: 0;
  border: 1px solid #dddfe0;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.21);
  padding: 2rem;
}
.cid-s67qvLrss1 .card-title {
  font-weight: 600;
}
.cid-s67qvLrss1 .card-img {
  text-align: left;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-s67qvLrss1 .card-img span {
  border: 2px solid #5aac98;
  padding: 15.5px;
  border-radius: 70px;
  text-align: center;
  color: #5aac98;
  font-size: 35px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-s67qvLrss1 .card {
    margin-bottom: 2rem;
  }
}
.cid-s67qvZbNDK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("https://mobirise.com/extensions/directm4/assets/images/background6.jpg");
}
.cid-s67qvZbNDK .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-s67qvZbNDK .card-title {
  font-weight: 600;
}
.cid-s67qvZbNDK .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-s67qvZbNDK .card-img .icon {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  display: inline-block;
  line-height: 70px;
  text-align: center;
  transition: all .3s;
  color: #5aac98;
  border: 1px solid #5aac98;
}
.cid-s67qvZbNDK .card-img .icon span {
  font-size: 24px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-s67qvZbNDK .card {
    margin-bottom: 2rem;
  }
}
.cid-s67qwCLhBd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qwCLhBd .panel-group {
  border: 1px solid #dddfe0;
  border-radius: 5px;
}
.cid-s67qwCLhBd .panel-group .card {
  border-bottom: 1px solid #dddfe0;
  margin-bottom: 0 !important;
}
.cid-s67qwCLhBd .panel-group .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: none;
}
.cid-s67qwCLhBd .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-s67qwCLhBd .panel-group .card .card-header .panel-title .panel-title-edit {
  color: #666666;
  width: 100%;
}
.cid-s67qwCLhBd .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 10px !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-s67qwCLhBd .panel-group .card .panel-body {
  padding: .75rem 1.25rem;
}
.cid-s67qwCLhBd .panel-group .card .panel-body .panel-text {
  color: #232323;
}
.cid-s67qyawXaa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 400px) {
  .cid-s67qyawXaa h2 {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-s67qyawXaa h2 {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}
.cid-s67qyawXaa .media-container-row {
  justify-content: space-between;
}
.cid-s67qyawXaa .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s67qyawXaa .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s67qyawXaa .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s67qyawXaa a:link {
  text-decoration: none;
}
.cid-s67qyawXaa .icon-transition span {
  text-align: center;
  color: #5aac98;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 1px solid #5aac98;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-s67qyawXaa .icon-transition span:hover {
  background-color: rgba(90, 172, 152, 0.1);
  color: #5aac98;
}
.cid-s67qyawXaa .btn {
  min-width: 195px;
}
.cid-s67qyawXaa .btn.btn-primary-outline {
  border: 1px solid #5aac98;
}
.cid-s67qyawXaa .btn.btn-primary-outline:hover {
  background-color: #5aac98 !important;
  color: #ffffff !important;
}
.cid-s67qyawXaa .btn.btn-secondary-outline {
  border: 1px solid #a25dae;
}
.cid-s67qyawXaa .btn.btn-secondary-outline:hover {
  background-color: #a25dae !important;
  color: #ffffff !important;
}
.cid-s67qyawXaa .btn.btn-success-outline {
  border: 1px solid #1e7c3a;
}
.cid-s67qyawXaa .btn.btn-success-outline:hover {
  background-color: #1e7c3a !important;
  color: #ffffff !important;
}
.cid-s67qyawXaa .btn.btn-info-outline {
  border: 1px solid #74a3c7;
}
.cid-s67qyawXaa .btn.btn-info-outline:hover {
  background-color: #74a3c7 !important;
  color: #ffffff !important;
}
.cid-s67qyawXaa .btn.btn-warning-outline {
  border: 1px solid #ffd785;
}
.cid-s67qyawXaa .btn.btn-warning-outline:hover {
  background-color: #ffd785 !important;
  color: #ffffff !important;
}
.cid-s67qyawXaa .btn.btn-danger-outline {
  border: 1px solid #ff9685;
}
.cid-s67qyawXaa .btn.btn-danger-outline:hover {
  background-color: #ff9685 !important;
  color: #ffffff !important;
}
.cid-s67qyawXaa .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-s67qyawXaa .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-s67qyawXaa .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-s67qyawXaa .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
@media (max-width: 992px) {
  .cid-s67qyawXaa .wrap {
    justify-content: center;
  }
}
.cid-s6e6uBslZJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s6e6uBslZJ .nav-tabs .nav-item.open .nav-link:focus,
.cid-s6e6uBslZJ .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-s6e6uBslZJ .nav-tabs {
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-s6e6uBslZJ .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-s6e6uBslZJ .nav-item .nav-link {
  color: #74a3c7;
  border-bottom: 4px solid transparent !important;
}
.cid-s6e6uBslZJ .nav-item .nav-link.active {
  color: #55595c;
  border-bottom: 4px solid #5aac98 !important;
}
.cid-s6e6uBslZJ .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-s6e6uBslZJ .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-s6e6uBslZJ .nav-link,
.cid-s6e6uBslZJ .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-s6e6uBslZJ .mbr-text,
.cid-s6e6uBslZJ .mbr-section-btn {
  color: #232323;
}
.cid-s6e6uBslZJ .mbr-section-title {
  color: #232323;
}
.cid-s6e6uBslZJ .buttons-wrap .link {
  display: flex;
}
.cid-s6e6uBslZJ .list {
  list-style: none;
}
.cid-s6e6uBslZJ .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-s6e6uBslZJ .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #5aac98;
}
@media (max-width: 768px) {
  .cid-s6e6uBslZJ * {
    text-align: center;
  }
  .cid-s6e6uBslZJ .buttons-wrap {
    justify-content: center;
  }
  .cid-s6e6uBslZJ img {
    margin-bottom: 20px;
  }
}
.cid-s67qzNKtr0 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qDlXCLr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qDlXCLr .mbr-figure {
  overflow: hidden;
  position: relative;
}
.cid-s67qDlXCLr figcaption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 50% !important;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  padding: 1.5rem 0px;
  text-align: center;
}
.cid-s67qDlXCLr figcaption .mbr-text {
  padding: 0 40px;
}
@media (max-width: 768px) {
  .cid-s67qDlXCLr figcaption {
    display: none;
  }
}
.cid-s67qC0qq6c {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qCg6CEi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qCw03gh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qCw03gh .line {
  background-color: #5aac98;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s67qCw03gh .mbr-text {
  padding: 20px;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.cid-s67qCPlJdw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qCPlJdw blockquote {
  background-color: rgba(229, 229, 229, 0.2);
  border-color: #5aac98;
  border-width: 3px;
  color: #828282;
}
.cid-s67qD5baSL {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-s67qD5baSL .mbr-text,
.cid-s67qD5baSL .mbr-section-btn {
  color: #000000;
}
.cid-s67qD5baSL .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-s67qD5baSL .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-s67qD5baSL * {
    text-align: center;
  }
  .cid-s67qD5baSL .buttons-wrap {
    justify-content: center;
  }
}
.cid-s67qDLfbUL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qDLfbUL .mbr-figure {
  overflow: hidden;
  position: relative;
}
.cid-s67qDLfbUL figcaption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 50% !important;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  padding: 1.5rem 0px;
  text-align: center;
}
.cid-s67qDLfbUL figcaption .mbr-text {
  padding: 0 40px;
}
@media (max-width: 768px) {
  .cid-s67qDLfbUL figcaption {
    display: none;
  }
}
.cid-s6e6yrEE5h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s6e6yrEE5h .btn.btn-primary-outline {
  border: 1px solid #5aac98;
}
.cid-s6e6yrEE5h .btn.btn-primary-outline:hover {
  background-color: #5aac98 !important;
  color: #ffffff !important;
}
.cid-s6e6yrEE5h .btn.btn-secondary-outline {
  border: 1px solid #a25dae;
}
.cid-s6e6yrEE5h .btn.btn-secondary-outline:hover {
  background-color: #a25dae !important;
  color: #ffffff !important;
}
.cid-s6e6yrEE5h .btn.btn-success-outline {
  border: 1px solid #1e7c3a;
}
.cid-s6e6yrEE5h .btn.btn-success-outline:hover {
  background-color: #1e7c3a !important;
  color: #ffffff !important;
}
.cid-s6e6yrEE5h .btn.btn-info-outline {
  border: 1px solid #74a3c7;
}
.cid-s6e6yrEE5h .btn.btn-info-outline:hover {
  background-color: #74a3c7 !important;
  color: #ffffff !important;
}
.cid-s6e6yrEE5h .btn.btn-warning-outline {
  border: 1px solid #ffd785;
}
.cid-s6e6yrEE5h .btn.btn-warning-outline:hover {
  background-color: #ffd785 !important;
  color: #ffffff !important;
}
.cid-s6e6yrEE5h .btn.btn-danger-outline {
  border: 1px solid #ff9685;
}
.cid-s6e6yrEE5h .btn.btn-danger-outline:hover {
  background-color: #ff9685 !important;
  color: #ffffff !important;
}
.cid-s6e6yrEE5h .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-s6e6yrEE5h .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-s6e6yrEE5h .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-s6e6yrEE5h .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-s6e6BV64eG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s6e6BV64eG .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-primary-outline {
  border: 1px solid #5aac98;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-primary-outline:hover {
  background-color: #5aac98 !important;
  color: #ffffff !important;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-secondary-outline {
  border: 1px solid #a25dae;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-secondary-outline:hover {
  background-color: #a25dae !important;
  color: #ffffff !important;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-success-outline {
  border: 1px solid #1e7c3a;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-success-outline:hover {
  background-color: #1e7c3a !important;
  color: #ffffff !important;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-info-outline {
  border: 1px solid #74a3c7;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-info-outline:hover {
  background-color: #74a3c7 !important;
  color: #ffffff !important;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-warning-outline {
  border: 1px solid #ffd785;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-warning-outline:hover {
  background-color: #ffd785 !important;
  color: #ffffff !important;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-danger-outline {
  border: 1px solid #ff9685;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-danger-outline:hover {
  background-color: #ff9685 !important;
  color: #ffffff !important;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-black-outline {
  border: 1px solid #000000;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-s6e6BV64eG .plan-body .btn-bgr.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-s6e6BV64eG .list-group-item {
  padding: 20px 15px;
}
.cid-s6e6BV64eG .price-term {
  display: block;
  line-height: 1;
}
.cid-s6e6BV64eG .plan-header {
  overflow: hidden;
}
.cid-s6e6BV64eG .plan-header .plan-title {
  background-color: #74a3c7;
  font-weight: 300;
  margin-bottom: 25px;
  padding: 12.5px;
}
.cid-s6e6BV64eG .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #232323;
  border-left: 1px solid #f6f7f8;
}
.cid-s6e6BV64eG .plan:first-child {
  border-left: 1px solid transparent;
}
.cid-s6e6BV64eG .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
}
.cid-s6e6BV64eG .plan:nth-child(2) .plan-title {
  background-color: #62cab1;
}
.cid-s6e6BV64eG .plan:nth-child(2) .plan-header,
.cid-s6e6BV64eG .plan:nth-child(2) .plan-body {
  background-color: #ffffff;
}
.cid-s6e6BV64eG .plan .mbr-section-btn {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
}
.cid-s6e6BV64eG .plan .mbr-section-btn .btn {
  width: 80%;
}
.cid-s6e6BV64eG .plan-header,
.cid-s6e6BV64eG .plan-body {
  background-color: #fafafa;
}
.cid-s6e6BV64eG .price-figure {
  color: #494949;
  margin-right: -10px;
}
.cid-s6e6BV64eG .price-value {
  vertical-align: bottom;
  line-height: 2;
  margin-right: 0.25rem;
  color: #494949;
}
@media (max-width: 768px) {
  .cid-s6e6BV64eG .plan {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 550px) {
  .cid-s6e6BV64eG .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s6e6Cm1e1p {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-primary-outline {
  border: 1px solid #5aac98;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-primary-outline:hover {
  background-color: #5aac98 !important;
  color: #ffffff !important;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-secondary-outline {
  border: 1px solid #a25dae;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-secondary-outline:hover {
  background-color: #a25dae !important;
  color: #ffffff !important;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-success-outline {
  border: 1px solid #1e7c3a;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-success-outline:hover {
  background-color: #1e7c3a !important;
  color: #ffffff !important;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-info-outline {
  border: 1px solid #74a3c7;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-info-outline:hover {
  background-color: #74a3c7 !important;
  color: #ffffff !important;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-warning-outline {
  border: 1px solid #ffd785;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-warning-outline:hover {
  background-color: #ffd785 !important;
  color: #ffffff !important;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-danger-outline {
  border: 1px solid #ff9685;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-danger-outline:hover {
  background-color: #ff9685 !important;
  color: #ffffff !important;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-black-outline {
  border: 1px solid #000000;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-s6e6Cm1e1p .plan-body .btn-bgr.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-s6e6Cm1e1p .plan-header {
  overflow: hidden;
  background-color: #196653;
  margin-left: -24px;
  margin-right: -24px;
  padding: 32px;
  background: linear-gradient(45deg, #196653, #2bb392);
}
.cid-s6e6Cm1e1p .plan-header .plan-price .price-figure {
  color: #ffffff;
  margin-right: -10px;
  display: block;
  width: 100%;
}
.cid-s6e6Cm1e1p .plan-header .plan-price .price-term {
  display: block;
  line-height: 1;
  color: #ffffff;
}
.cid-s6e6Cm1e1p .plan-header .plan-price .price-free {
  color: #ffffff;
  margin-top: 20px;
  display: block;
}
.cid-s6e6Cm1e1p .plan {
  position: relative;
  max-width: 330px;
  padding-right: 15px;
  padding-left: 15px;
  color: #232323;
}
.cid-s6e6Cm1e1p .plan:hover .plan-wrap {
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s;
}
.cid-s6e6Cm1e1p .plan .plan-wrap {
  border: 1px solid #e5e5e5;
  border-radius: .25rem;
  padding-right: 24px;
  padding-left: 24px;
}
.cid-s6e6Cm1e1p .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 1rem 1.25rem;
}
.cid-s6e6Cm1e1p .plan:nth-child(3) .plan-header {
  background: #22366a;
  background: linear-gradient(45deg, #22366a, #3c5fb9);
}
.cid-s6e6Cm1e1p .plan:nth-child(3) .plan-wrap {
  background-color: #ffffff;
}
.cid-s6e6Cm1e1p .plan .mbr-section-btn {
  padding-bottom: 20px;
}
.cid-s6e6Cm1e1p .plan .mbr-section-btn .btn {
  width: 100%;
}
.cid-s6e6Cm1e1p .plan-wrap {
  background-color: #ffffff;
}
@media (max-width: 1199px) {
  .cid-s6e6Cm1e1p .plan .list-group-item {
    padding: 1rem 0rem;
  }
}
@media (max-width: 550px) {
  .cid-s6e6Cm1e1p .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s67qGosF4g {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f6f7f8;
  background: linear-gradient(to right top, #f6f7f8, #fafafa);
}
.cid-s67qGosF4g .card {
  word-wrap: break-word;
  border-radius: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-s67qGosF4g .card.last {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-s67qGosF4g .card .panel-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s67qGosF4g .card .panel-item .mbr-iconfont {
  font-size: 50px;
  color: #232323;
  padding-right: 1rem;
}
.cid-s67qGosF4g .card .panel-item .card-text {
  width: 100%;
}
.cid-s67qGosF4g .card .panel-item .card-text .count {
  text-align: center;
  color: #74a3c7;
}
.cid-s67qGosF4g .card .panel-item .card-text .currency {
  vertical-align: top;
  color: #999999;
  margin-left: -10px;
}
.cid-s67qGosF4g .card .panel-item .card-text .mbr-content-title {
  color: #232323;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-s67qGosF4g .panel-item {
    justify-content: center;
  }
  .cid-s67qGosF4g .card {
    border: none;
  }
  .cid-s67qGosF4g .card.last {
    border: none;
  }
}
.cid-s67qHmro8j {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qKcHsBw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-s67qKcHsBw .carousel-item {
  justify-content: center;
}
.cid-s67qKcHsBw .carousel-item.active,
.cid-s67qKcHsBw .carousel-item-next,
.cid-s67qKcHsBw .carousel-item-prev {
  display: flex;
}
.cid-s67qKcHsBw .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-s67qKcHsBw .carousel-controls {
    display: none;
  }
}
.cid-s67qKcHsBw .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-s67qKcHsBw .author-wrap {
  margin-bottom: 10px;
}
.cid-s67qKcHsBw .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-s67qKcHsBw .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-s67qKcHsBw .author-wrap .user-info {
  margin-top: 9px;
}
.cid-s67qKcHsBw .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-s67qKcHsBw .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-s67qKcHsBw .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-s67qKcHsBw .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-s67qKcHsBw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-s67qKcHsBw .carousel-indicators li.active {
  background-color: #5aac98;
}
.cid-s67qKcHsBw .carousel-indicators li.active,
.cid-s67qKcHsBw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-s67qKcHsBw .carousel-indicators li::after,
.cid-s67qKcHsBw .carousel-indicators li::before {
  content: none;
}
.cid-s67qKcHsBw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-s67qKcHsBw .carousel-indicators {
    display: none !important;
  }
}
.cid-s67qMMV2JL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s67qMMV2JL .mbr-text a {
  color: #74a3c7;
}
.cid-s67qMMV2JL .list {
  padding-left: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s67qMMV2JL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-s67qMMV2JL .list {
    margin-bottom: 0rem;
  }
}
.cid-s67qMMV2JL .list .mbr-link-btn {
  display: inline-block;
}
.cid-s67qMMV2JL .list .mbr-link-btn::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-s67qMMV2JL .list .mbr-link-btn.last::after {
  display: none;
}
@media (max-width: 768px) {
  .cid-s67qMMV2JL .list .mbr-link-btn {
    display: block;
  }
  .cid-s67qMMV2JL .list .mbr-link-btn::after {
    display: none;
  }
}
.cid-s67qMMV2JL .list a {
  padding: 0;
  margin: 0;
}
.cid-s67qMMV2JL .list a:hover {
  text-decoration: underline;
  color: #000000;
}
.cid-s67qMMV2JL .list a::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-s67qMMV2JL .list a:last-child::after {
  display: none;
}
.cid-s67qMMV2JL .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s67qMMV2JL .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .cid-s67qMMV2JL .social-media ul {
    text-align: center;
  }
}
.cid-s67qMMV2JL .social-media ul li {
  padding: 6px;
  display: inline-block;
}
.cid-s67qMMV2JL a:link {
  text-decoration: none;
}
.cid-s67qMMV2JL .icon-transition span {
  text-align: center;
  color: #74a3c7;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 1px solid #74a3c7;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-s67qMMV2JL .icon-transition span:hover {
  background-color: #74a3c7;
  color: #ffffff;
}
.cid-s6e6FPtqOl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s6e6FPtqOl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s6e6FPtqOl .heading-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #5aac98;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
.cid-s6e6FPtqOl .form {
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
}
.cid-s6e6FPtqOl .form form {
  border-radius: 4px;
}
.cid-s6e6FPtqOl .form form > div {
  padding: 2rem 1rem;
}
@media (max-width: 991px) {
  .cid-s6e6FPtqOl .form form {
    padding: 1rem;
  }
}
.cid-s6e6FPtqOl .form form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-s6e6FPtqOl .form form .mbr-section-btn .btn {
  display: inline-block;
}
.cid-s6e6FPtqOl .form form .form-group .form-control {
  background-color: #ffffff;
  font-size: 14px;
  border: 1px solid #dddfe0;
  border-radius: 3px;
  color: #232323;
}
.cid-s6e6FPtqOl .form form .form-group textarea {
  min-height: 170px;
}
.cid-s67qM8jE6a {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s67qM8jE6a .container-fluid {
  padding: 0 3rem;
}
.cid-s67qM8jE6a .mbr-section-subtitle {
  color: #767676;
}
.cid-s67qM8jE6a .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s67qM8jE6a .table-wrapper {
  margin: 0 auto;
}
.cid-s67qM8jE6a table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-s67qM8jE6a table thead tr {
  border: none !important;
}
.cid-s67qM8jE6a table th {
  padding: 1.2rem 1.6rem;
  text-align: left;
  border-color: #e9eced;
  border-top: none;
  color: white;
  vertical-align: middle;
}
.cid-s67qM8jE6a table tr td {
  border-color: #eceeef;
}
.cid-s67qM8jE6a table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  min-width: 120px;
}
.cid-s67qM8jE6a th:after,
.cid-s67qM8jE6a th:before {
  display: none !important;
}
.cid-s67qM8jE6a .dataTables_scrollHeadInner {
  margin-left: auto;
  margin-right: auto;
}
.cid-s67qM8jE6a .dataTables_scrollHeadInner .table {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-s67qM8jE6a table th,
  .cid-s67qM8jE6a table td {
    padding: .75rem;
  }
}
.cid-s67qM8jE6a .body-item {
  text-align: left;
}
.cid-s67qM8jE6a .mbr-text {
  color: #767676;
}
.cid-s67qM8jE6a .head-item {
  color: #232323;
}
.cid-s67qM8jE6a .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.cid-s6e720fqV4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s6e720fqV4 .mbr-text a {
  color: #74a3c7;
}
.cid-s6e720fqV4 .list {
  padding-left: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s6e720fqV4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-s6e720fqV4 .list {
    margin-bottom: 0rem;
  }
}
.cid-s6e720fqV4 .list .mbr-link-btn {
  display: inline-block;
}
.cid-s6e720fqV4 .list .mbr-link-btn::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-s6e720fqV4 .list .mbr-link-btn.last::after {
  display: none;
}
@media (max-width: 768px) {
  .cid-s6e720fqV4 .list .mbr-link-btn {
    display: block;
  }
  .cid-s6e720fqV4 .list .mbr-link-btn::after {
    display: none;
  }
}
.cid-s6e720fqV4 .list a {
  padding: 0;
  margin: 0;
}
.cid-s6e720fqV4 .list a:hover {
  text-decoration: underline;
  color: #000000;
}
.cid-s6e720fqV4 .list a::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-s6e720fqV4 .list a:last-child::after {
  display: none;
}
.cid-s6e720fqV4 .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s6e720fqV4 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .cid-s6e720fqV4 .social-media ul {
    text-align: center;
  }
}
.cid-s6e720fqV4 .social-media ul li {
  padding: 6px;
  display: inline-block;
}
.cid-s6e720fqV4 a:link {
  text-decoration: none;
}
.cid-s6e720fqV4 .icon-transition span {
  text-align: center;
  color: #74a3c7;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 1px solid #74a3c7;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-s6e720fqV4 .icon-transition span:hover {
  background-color: #74a3c7;
  color: #ffffff;
}
.cid-s6e72efibn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s6e72efibn .list {
  padding-left: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s6e72efibn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-s6e72efibn .list {
    margin-bottom: 0rem;
  }
}
.cid-s6e72efibn .list a {
  padding: 0;
  margin: 0;
}
.cid-s6e72efibn .list a:hover {
  text-decoration: underline;
  color: #000000;
}
.cid-s6e72efibn .copyright {
  text-align: center;
}
.cid-s6e72efibn .copyright .btn {
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-s6e72efibn * {
    text-align: center;
  }
}
.cid-s6e72rEFkK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-s6e72rEFkK .mbr-text {
  color: #999999;
}
.cid-s6e72rEFkK .mbr-section-title {
  color: #232323;
}
.cid-s6e72DMk2v {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-s6e72DMk2v .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s6e72DMk2v .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s6e72DMk2v .row-copyright {
  word-break: break-word;
  width: 100%;
}
.cid-s6e72DMk2v .row-copyright p {
  width: 100%;
}
