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-uSh7cWeEhN {
  background-color: transparent;
}
.cid-uSh7cWeEhN .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uSh7cWeEhN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uSh7cWeEhN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSh7cWeEhN .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uSh7cWeEhN .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uSh7cWeEhN .menu_box .navbar.opened,
  .cid-uSh7cWeEhN .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uSh7cWeEhN .navbar-dropdown {
  position: relative !important;
}
.cid-uSh7cWeEhN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uSh7cWeEhN .btn:hover {
  box-shadow: none;
}
.cid-uSh7cWeEhN .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uSh7cWeEhN .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uSh7cWeEhN .nav-item {
    margin: 0 !important;
  }
}
.cid-uSh7cWeEhN .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uSh7cWeEhN .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uSh7cWeEhN .nav-item .nav-link:hover::before,
.cid-uSh7cWeEhN .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uSh7cWeEhN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uSh7cWeEhN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uSh7cWeEhN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uSh7cWeEhN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uSh7cWeEhN .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uSh7cWeEhN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uSh7cWeEhN .offcanvas_box {
    display: none;
  }
}
.cid-uSh7cWeEhN .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uSh7cWeEhN .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uSh7cWeEhN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uSh7cWeEhN .container {
  display: flex;
  margin: auto;
}
.cid-uSh7cWeEhN .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uSh7cWeEhN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uSh7cWeEhN .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uSh7cWeEhN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uSh7cWeEhN .navbar-nav {
    margin: 0;
  }
}
.cid-uSh7cWeEhN .dropdown-menu,
.cid-uSh7cWeEhN .navbar.opened {
  background-color: false !important;
}
.cid-uSh7cWeEhN .nav-item:focus,
.cid-uSh7cWeEhN .nav-link:focus {
  outline: none;
}
.cid-uSh7cWeEhN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSh7cWeEhN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSh7cWeEhN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSh7cWeEhN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSh7cWeEhN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSh7cWeEhN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSh7cWeEhN .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uSh7cWeEhN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uSh7cWeEhN .navbar.opened {
  transition: all 0.3s;
}
.cid-uSh7cWeEhN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uSh7cWeEhN .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uSh7cWeEhN .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSh7cWeEhN .navbar.collapsed {
  justify-content: center;
}
.cid-uSh7cWeEhN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSh7cWeEhN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uSh7cWeEhN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSh7cWeEhN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSh7cWeEhN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSh7cWeEhN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uSh7cWeEhN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSh7cWeEhN .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uSh7cWeEhN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uSh7cWeEhN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSh7cWeEhN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSh7cWeEhN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uSh7cWeEhN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSh7cWeEhN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uSh7cWeEhN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSh7cWeEhN .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uSh7cWeEhN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uSh7cWeEhN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uSh7cWeEhN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uSh7cWeEhN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSh7cWeEhN .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uSh7cWeEhN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSh7cWeEhN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSh7cWeEhN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSh7cWeEhN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSh7cWeEhN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uSh7cWeEhN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSh7cWeEhN .dropdown-item.active,
.cid-uSh7cWeEhN .dropdown-item:active {
  background-color: transparent;
}
.cid-uSh7cWeEhN .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uSh7cWeEhN .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uSh7cWeEhN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSh7cWeEhN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSh7cWeEhN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSh7cWeEhN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uSh7cWeEhN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSh7cWeEhN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff5753;
}
.cid-uSh7cWeEhN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSh7cWeEhN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSh7cWeEhN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSh7cWeEhN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSh7cWeEhN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSh7cWeEhN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSh7cWeEhN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSh7cWeEhN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSh7cWeEhN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSh7cWeEhN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uSh7cWeEhN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSh7cWeEhN .navbar {
    height: 70px;
  }
  .cid-uSh7cWeEhN .navbar.opened {
    height: auto;
  }
  .cid-uSh7cWeEhN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSh7cWeEhN .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uSh7cWeEhN .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uSh7cWeEhN .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uSh7cWeEhN .navbar-caption:hover {
  color: #5aac98;
}
@media (min-width: 992px) {
  .cid-uSh7cWeEhN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uSh7cWeEhN .text_widget {
  margin-bottom: 32px;
}
.cid-uSh7cWeEhN .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uSh7cWeEhN .text_widget a:hover,
.cid-uSh7cWeEhN .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uSh7cWeEhN .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uSh7cWeEhN .icons-menu-main {
  display: flex;
}
.cid-uSh7cWeEhN .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSh7cWeEhN .navbar-caption {
  color: #000000;
}
.cid-uSh7cWeEhN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uSh7cWeEhN .mbr-section-subtitle,
.cid-uSh7cWeEhN .text_widget,
.cid-uSh7cWeEhN .mbr-section-btn {
  text-align: center;
}
.cid-uSh7cWeEhN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uSh7doIhG3 {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/screenshot-290.png-1338x649.png");
}
.cid-uSh7doIhG3 .row.heading {
  margin-bottom: 72px;
}
.cid-uSh7doIhG3 .card {
  flex-direction: row;
  justify-content: center;
}
.cid-uSh7doIhG3 .card-box {
  display: flex;
  flex-direction: column;
}
.cid-uSh7doIhG3 .card-box .card-title {
  color: #ffffff;
}
.cid-uSh7doIhG3 .card-box .mbr-text {
  color: #ffffff;
}
.cid-uSh7doIhG3 .card-box .link .btn {
  margin: 0;
}
.cid-uSh7doIhG3 .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-uSh7doIhG3 .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
.cid-uSh7doIhG3 .card-title {
  margin: 0;
}
.cid-uSh7doIhG3 .card-img,
.cid-uSh7doIhG3 .card-box {
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uSh7doIhG3 .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-uSh7doIhG3 .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-uSh7doIhG3 .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uSh7doIhG3 .card .card-box .card-title,
  .cid-uSh7doIhG3 .card .card-box .mbr-text,
  .cid-uSh7doIhG3 .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uSh7doIhG3 .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uSh7doIhG3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7doIhG3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSh7edJ5qO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSh7edJ5qO .card-wrapper {
  border-radius: 4px;
}
.cid-uSh7edJ5qO .card-subtitle {
  color: #0095ff;
}
.cid-uSh7edJ5qO .mbr-text,
.cid-uSh7edJ5qO .card-subtitle {
  color: #232323;
}
.cid-uSh7edJ5qO .mbr-iconfont {
  font-size: 90px;
  color: #24a383;
}
.cid-uSh7edJ5qO .icon {
  text-align: end;
}
@media (max-width: 768px) {
  .cid-uSh7edJ5qO .icon {
    margin-bottom: 15px;
  }
  .cid-uSh7edJ5qO * {
    text-align: center !important;
  }
}
.cid-uSh7edJ5qO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7edJ5qO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSh7fh8fOl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/screenshot-291.png-1268x709.png");
}
.cid-uSh7fh8fOl .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-uSh7fh8fOl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7fh8fOl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSh7fFiKK4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSh7fFiKK4 .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-uSh7fFiKK4 .card-title {
  font-weight: 600;
}
.cid-uSh7fFiKK4 .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-uSh7fFiKK4 .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-uSh7fFiKK4 .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #5aac98;
}
.cid-uSh7fFiKK4 .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-uSh7fFiKK4 .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uSh7fFiKK4 .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-uSh7fFiKK4 .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-uSh7fFiKK4 .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-uSh7fFiKK4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7fFiKK4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSh7g1bCZN {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uSh7g1bCZN .mbr-text,
.cid-uSh7g1bCZN .mbr-section-btn {
  color: #333333;
}
.cid-uSh7g1bCZN .mbr-section-title {
  color: #24a383;
}
.cid-uSh7g1bCZN .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uSh7g1bCZN * {
    text-align: center;
  }
  .cid-uSh7g1bCZN .buttons-wrap {
    justify-content: center;
  }
}
.cid-uSh7g1bCZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7g1bCZN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSh7iCz959 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSh7iCz959 .row {
  row-gap: 40px;
}
.cid-uSh7iCz959 .mbr-section-head {
  padding-bottom: 50px;
}
.cid-uSh7iCz959 .mbr-section-title {
  color: #24a383;
}
.cid-uSh7iCz959 .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-uSh7iCz959 .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-uSh7iCz959 .item-img img {
  width: 100%;
  aspect-ratio: calc(37 / (11 * 3));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-uSh7iCz959 .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uSh7iCz959 .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-uSh7iCz959 .item-content {
  flex-grow: 1;
  padding: 31px 42px 43px;
  background-color: #f6f6f6;
}
.cid-uSh7iCz959 .item-title {
  color: #303030;
}
.cid-uSh7iCz959 .mbr-text {
  margin-bottom: 4px;
  color: #303030;
  text-decoration: underline;
}
.cid-uSh7iCz959 .icons-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 12px;
}
.cid-uSh7iCz959 .iconfont-wrapper {
  padding: 11px;
  border-radius: 50%;
  transition: opacity 0.2s ease-out;
}
.cid-uSh7iCz959 .iconfont-wrapper .mbr-iconfont {
  font-size: 14px;
  color: #303030;
  transition: all 0.2s ease-out;
}
.cid-uSh7iCz959 .iconfont-wrapper:hover {
  background-color: #efe6f7;
}
.cid-uSh7iCz959 .iconfont-wrapper:hover .mbr-iconfont {
  color: #9b8db7;
}
.cid-uSh7iCz959 .mbr-section-btn {
  margin-top: 10px;
}
.cid-uSh7lHCSLi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-uSh7lHCSLi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7lHCSLi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSh7lHCSLi .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSh7lHCSLi .title-wrapper {
    padding-left: 0;
  }
}
.cid-uSh7lHCSLi .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uSh7lHCSLi .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSh7lHCSLi .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uSh7lHCSLi .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-uSh7lHCSLi .mbr-section-btn .btn::after,
.cid-uSh7lHCSLi .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uSh7lHCSLi .mbr-section-btn .btn:hover,
.cid-uSh7lHCSLi .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uSh7lHCSLi .mbr-section-btn .btn:hover::after,
.cid-uSh7lHCSLi .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uSh7lHCSLi .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #adadad;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uSh7lHCSLi .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uSh7lHCSLi .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uSh7lHCSLi .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-uSh7lHCSLi .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSh7lHCSLi .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-uSh7lHCSLi .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSh7lHCSLi .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-uSh7lHCSLi .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #adadad 50%);
  transition: all .3s ease;
}
.cid-uSh7lHCSLi .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #adadad 50%);
}
.cid-uSh7lHCSLi .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uSh7lHCSLi .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-uSh7lHCSLi .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-uSh7lHCSLi .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-uSh7lHCSLi .mbr-section-title {
  color: #ffffff;
}
.cid-uSh7lHCSLi .mbr-tag {
  color: #adadad;
}
.cid-uSh7lHCSLi .panel-number {
  color: #ffffff;
}
.cid-uSh7lHCSLi .panel-title-edit {
  color: #ffffff;
}
.cid-uSh7lHCSLi .panel-text {
  color: #c7c7c7;
}
.cid-uSh7nySmYi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSh7nySmYi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7nySmYi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSh7nySmYi .container {
    padding: 0 30px;
  }
}
.cid-uSh7nySmYi .items .item {
  margin-bottom: 60px;
}
.cid-uSh7nySmYi .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uSh7nySmYi .items .item {
    margin-bottom: 30px;
  }
}
.cid-uSh7nySmYi .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-uSh7nySmYi .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uSh7nySmYi .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-uSh7nySmYi .dragArea.row {
  margin: 0;
}
.cid-uSh7nySmYi .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-uSh7nySmYi .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uSh7nySmYi .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-uSh7nySmYi .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-uSh7nySmYi .dragArea.row .form-group .form-control:hover,
.cid-uSh7nySmYi .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-uSh7nySmYi .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-uSh7nySmYi .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-uSh7nySmYi .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uSh7nySmYi .mbr-section-title {
  color: #000000;
}
.cid-uSh7nySmYi .card-title {
  color: #000000;
}
.cid-uSh7nySmYi .list {
  color: #000000;
}
.cid-uSh7nySmYi .mbr-text {
  color: #000000;
}
.cid-uSh7nySmYi label {
  color: #000000;
}
.cid-uSh7o3CjfP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #131313;
}
.cid-uSh7o3CjfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSh7o3CjfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSh7o3CjfP .container-fluid {
  padding: 0;
}
@media (max-width: 1440px) {
  .cid-uSh7o3CjfP .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSh7o3CjfP .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSh7o3CjfP .container {
    padding: 0 30px;
  }
}
.cid-uSh7o3CjfP .google-map {
  border-top: 2px solid #9c9c9c;
  border-bottom: 2px solid #9c9c9c;
}
.cid-uSh7o3CjfP .google-map iframe {
  border-radius: 0 !important;
  height: 500px;
  filter: grayscale(100%);
}
.cid-uSh7qPNDLq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uSh7qPNDLq .media-container-row .mbr-text {
  color: #fdfde1;
}
.cid-uShaZ1zHxx {
  background-color: transparent;
}
.cid-uShaZ1zHxx .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uShaZ1zHxx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uShaZ1zHxx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uShaZ1zHxx .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uShaZ1zHxx .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uShaZ1zHxx .menu_box .navbar.opened,
  .cid-uShaZ1zHxx .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uShaZ1zHxx .navbar-dropdown {
  position: relative !important;
}
.cid-uShaZ1zHxx .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uShaZ1zHxx .btn:hover {
  box-shadow: none;
}
.cid-uShaZ1zHxx .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uShaZ1zHxx .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uShaZ1zHxx .nav-item {
    margin: 0 !important;
  }
}
.cid-uShaZ1zHxx .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uShaZ1zHxx .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uShaZ1zHxx .nav-item .nav-link:hover::before,
.cid-uShaZ1zHxx .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uShaZ1zHxx .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uShaZ1zHxx .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uShaZ1zHxx .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uShaZ1zHxx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uShaZ1zHxx .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uShaZ1zHxx .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uShaZ1zHxx .offcanvas_box {
    display: none;
  }
}
.cid-uShaZ1zHxx .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uShaZ1zHxx .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uShaZ1zHxx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uShaZ1zHxx .container {
  display: flex;
  margin: auto;
}
.cid-uShaZ1zHxx .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uShaZ1zHxx .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uShaZ1zHxx .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uShaZ1zHxx .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uShaZ1zHxx .navbar-nav {
    margin: 0;
  }
}
.cid-uShaZ1zHxx .dropdown-menu,
.cid-uShaZ1zHxx .navbar.opened {
  background-color: false !important;
}
.cid-uShaZ1zHxx .nav-item:focus,
.cid-uShaZ1zHxx .nav-link:focus {
  outline: none;
}
.cid-uShaZ1zHxx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uShaZ1zHxx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uShaZ1zHxx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uShaZ1zHxx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uShaZ1zHxx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uShaZ1zHxx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uShaZ1zHxx .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uShaZ1zHxx .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uShaZ1zHxx .navbar.opened {
  transition: all 0.3s;
}
.cid-uShaZ1zHxx .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uShaZ1zHxx .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uShaZ1zHxx .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uShaZ1zHxx .navbar.collapsed {
  justify-content: center;
}
.cid-uShaZ1zHxx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uShaZ1zHxx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uShaZ1zHxx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uShaZ1zHxx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uShaZ1zHxx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uShaZ1zHxx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uShaZ1zHxx .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uShaZ1zHxx .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uShaZ1zHxx .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uShaZ1zHxx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uShaZ1zHxx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uShaZ1zHxx .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uShaZ1zHxx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uShaZ1zHxx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uShaZ1zHxx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uShaZ1zHxx .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uShaZ1zHxx .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uShaZ1zHxx .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uShaZ1zHxx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uShaZ1zHxx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uShaZ1zHxx .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uShaZ1zHxx .navbar.navbar-short {
  min-height: 60px;
}
.cid-uShaZ1zHxx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uShaZ1zHxx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uShaZ1zHxx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uShaZ1zHxx .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uShaZ1zHxx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uShaZ1zHxx .dropdown-item.active,
.cid-uShaZ1zHxx .dropdown-item:active {
  background-color: transparent;
}
.cid-uShaZ1zHxx .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uShaZ1zHxx .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uShaZ1zHxx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uShaZ1zHxx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uShaZ1zHxx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uShaZ1zHxx ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uShaZ1zHxx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uShaZ1zHxx button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff5753;
}
.cid-uShaZ1zHxx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uShaZ1zHxx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uShaZ1zHxx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uShaZ1zHxx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uShaZ1zHxx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uShaZ1zHxx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uShaZ1zHxx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uShaZ1zHxx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uShaZ1zHxx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uShaZ1zHxx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uShaZ1zHxx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uShaZ1zHxx .navbar {
    height: 70px;
  }
  .cid-uShaZ1zHxx .navbar.opened {
    height: auto;
  }
  .cid-uShaZ1zHxx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uShaZ1zHxx .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uShaZ1zHxx .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uShaZ1zHxx .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uShaZ1zHxx .navbar-caption:hover {
  color: #5aac98;
}
@media (min-width: 992px) {
  .cid-uShaZ1zHxx .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uShaZ1zHxx .text_widget {
  margin-bottom: 32px;
}
.cid-uShaZ1zHxx .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uShaZ1zHxx .text_widget a:hover,
.cid-uShaZ1zHxx .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uShaZ1zHxx .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uShaZ1zHxx .icons-menu-main {
  display: flex;
}
.cid-uShaZ1zHxx .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uShaZ1zHxx .navbar-caption {
  color: #000000;
}
.cid-uShaZ1zHxx .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uShaZ1zHxx .mbr-section-subtitle,
.cid-uShaZ1zHxx .text_widget,
.cid-uShaZ1zHxx .mbr-section-btn {
  text-align: center;
}
.cid-uShaZ1zHxx a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uShb3g2KmQ {
  display: flex;
  padding-top: 75px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-uShb3g2KmQ {
    align-items: center;
  }
  .cid-uShb3g2KmQ .row {
    justify-content: center;
  }
}
.cid-uShb3g2KmQ p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uShb3g2KmQ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uShb3g2KmQ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uShb3g2KmQ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uShb3g2KmQ .content-wrap {
    width: 100%;
  }
}
.cid-uShb3g2KmQ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uShb3g2KmQ .mbr-text,
.cid-uShb3g2KmQ .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uShb3g2KmQ .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uShaZ6Drh7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uShaZ6Drh7 .media-container-row .mbr-text {
  color: #fdfde1;
}
