body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #22a5e5 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !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: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22a5e5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #13709e !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: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #22a5e5 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #116690 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #22a5e5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #22a5e5;
  border-color: #22a5e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #22a5e5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #22a5e5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #22a5e5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #22a5e5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #22a5e5;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #22a5e5;
  border-bottom-color: #22a5e5;
}
.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: #22a5e5 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2322a5e5' %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-upupERPSQN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-upupERPSQN nav.navbar {
  position: fixed;
}
.cid-upupERPSQN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upupERPSQN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-upupERPSQN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upupERPSQN .dropdown-item:hover,
.cid-upupERPSQN .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-upupERPSQN .dropdown-item:hover span {
  color: white;
}
.cid-upupERPSQN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upupERPSQN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upupERPSQN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upupERPSQN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upupERPSQN .nav-link {
  position: relative;
}
.cid-upupERPSQN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upupERPSQN .container {
    flex-wrap: wrap;
  }
}
.cid-upupERPSQN .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upupERPSQN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-upupERPSQN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upupERPSQN .dropdown-menu,
.cid-upupERPSQN .navbar.opened {
  background: #fafafa !important;
}
.cid-upupERPSQN .nav-item:focus,
.cid-upupERPSQN .nav-link:focus {
  outline: none;
}
.cid-upupERPSQN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upupERPSQN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upupERPSQN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upupERPSQN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upupERPSQN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upupERPSQN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upupERPSQN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-upupERPSQN .navbar.opened {
  transition: all 0.3s;
}
.cid-upupERPSQN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upupERPSQN .navbar .navbar-logo img {
  width: auto;
}
.cid-upupERPSQN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upupERPSQN .navbar.collapsed {
  justify-content: center;
}
.cid-upupERPSQN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upupERPSQN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upupERPSQN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upupERPSQN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upupERPSQN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upupERPSQN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upupERPSQN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upupERPSQN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upupERPSQN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upupERPSQN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upupERPSQN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upupERPSQN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upupERPSQN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upupERPSQN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upupERPSQN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upupERPSQN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upupERPSQN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upupERPSQN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upupERPSQN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upupERPSQN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upupERPSQN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upupERPSQN .navbar.navbar-short {
  min-height: 60px;
}
.cid-upupERPSQN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upupERPSQN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upupERPSQN .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-upupERPSQN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upupERPSQN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upupERPSQN .dropdown-item.active,
.cid-upupERPSQN .dropdown-item:active {
  background-color: transparent;
}
.cid-upupERPSQN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upupERPSQN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upupERPSQN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upupERPSQN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-upupERPSQN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upupERPSQN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upupERPSQN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upupERPSQN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upupERPSQN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upupERPSQN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upupERPSQN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upupERPSQN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upupERPSQN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upupERPSQN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upupERPSQN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upupERPSQN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upupERPSQN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upupERPSQN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upupERPSQN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upupERPSQN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upupERPSQN .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-upupERPSQN .navbar {
    height: 70px;
  }
  .cid-upupERPSQN .navbar.opened {
    height: auto;
  }
  .cid-upupERPSQN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upupLH3sAN {
  background-image: linear-gradient(135deg, #fafafa 10%, #22a5e5 100%) !important;
}
.cid-upupLH3sAN .mbr-fallback-image.disabled {
  display: none;
}
.cid-upupLH3sAN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuBc65y4W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuBc65y4W .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuBc65y4W .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-upuBc65y4W .container {
    padding: 0 15px;
  }
}
.cid-upuBc65y4W .row {
  justify-content: center;
}
.cid-upuBc65y4W .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upuBc65y4W .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upuBc65y4W .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-upuBc65y4W .subtitle-wrapper {
    padding: 0;
  }
}
.cid-upuBc65y4W .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upuBc65y4W .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-upuBc65y4W .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-upuBc65y4W .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-upuBc65y4W .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-upuBc65y4W .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upuBc65y4W .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #22a5e5;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-upuBc65y4W .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-upuBc65y4W .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upuBc65y4W .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upuBc65y4W .list {
  color: #ffffff;
}
.cid-upuu8fzDnn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuBJKHe35 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuBJKHe35 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuBJKHe35 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuBJKHe35 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-upuBJKHe35 .mbr-section-subtitle {
  text-align: left;
}
.cid-upuubnRq9T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #22a5e5;
}
.cid-upuubnRq9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuubnRq9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuubnRq9T .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-upuubnRq9T .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-upuubnRq9T .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-upuubnRq9T .wrapper {
  padding: 30px 0;
}
.cid-upuubnRq9T .mbr-section-title {
  color: #fafafa;
}
.cid-upuubnRq9T .mbr-text,
.cid-upuubnRq9T .mbr-section-btn {
  color: #ffffff;
}
.cid-upuBYh0ziO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuBYh0ziO .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuBYh0ziO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuBYh0ziO .card-wrapper {
  background: #22a5e5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upuBYh0ziO .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upuBYh0ziO .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upuBYh0ziO .card-wrapper {
    padding: 4rem;
  }
}
.cid-upuBYh0ziO .mbr-text,
.cid-upuBYh0ziO .mbr-section-btn {
  color: #000000;
}
.cid-upuBYh0ziO .card-title,
.cid-upuBYh0ziO .card-box {
  text-align: left;
  color: #000000;
}
.cid-upuuhfLeDQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuuhfLeDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuuhfLeDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuuhfLeDQ .content-wrapper {
  padding: 80px 90px;
  background-color: #22a5e5;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upuuhfLeDQ .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upuuhfLeDQ .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upuuhfLeDQ .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
.cid-upuuhfLeDQ .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upuuhfLeDQ .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upuuhfLeDQ .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upuuhfLeDQ .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #f7fff7;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upuuhfLeDQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upuuhfLeDQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upuuhfLeDQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upuuhfLeDQ .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upuuhfLeDQ .mbr-section-title {
  color: #050f0f;
}
.cid-upuuhfLeDQ .mbr-text {
  color: #050f0f;
}
.cid-upuuhfLeDQ .item-number {
  color: #f7fff7;
}
.cid-upuuhfLeDQ .item-title {
  color: #050f0f;
}
.cid-upuuhfLeDQ .item-text {
  color: #050f0f;
}
.cid-upuCm4tpXa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuAeyZ8ig {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-upuAeyZ8ig .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuAeyZ8ig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-upuAeyZ8ig .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upuAeyZ8ig img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upuAeyZ8ig .text-wrapper {
    padding: 2rem;
  }
}
.cid-upuuNMggCP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upuuNMggCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuuNMggCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuuNMggCP .content-wrapper {
  padding: 80px 90px;
  background-color: #fafafa;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upuuNMggCP .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upuuNMggCP .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upuuNMggCP .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
  padding-left: 0;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .items-wrapper {
    padding-right: 0;
  }
}
.cid-upuuNMggCP .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upuuNMggCP .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upuuNMggCP .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upuuNMggCP .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #ffffff;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upuuNMggCP .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upuuNMggCP .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upuuNMggCP .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upuuNMggCP .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upuuNMggCP .mbr-section-title {
  color: #050f0f;
}
.cid-upuuNMggCP .mbr-text {
  color: #050f0f;
}
.cid-upuuNMggCP .item-number {
  color: #f7fff7;
}
.cid-upuuNMggCP .item-title {
  color: #050f0f;
}
.cid-upuuNMggCP .item-text {
  color: #050f0f;
}
.cid-upuCL4UuiU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuv74k3xT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upuv74k3xT .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuv74k3xT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuv74k3xT .content-wrap {
  padding: 60px;
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .cid-upuv74k3xT .content-wrap {
    padding: 30px 20px;
  }
}
.cid-upuv74k3xT .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-upuv74k3xT .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upuv74k3xT .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upuv74k3xT .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-upuv74k3xT .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #22a5e5;
}
@media (max-width: 992px) {
  .cid-upuv74k3xT .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-upuv74k3xT .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upuv74k3xT .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upuv74k3xT .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upuv74k3xT .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upuv74k3xT .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-upuv74k3xT .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-upuv74k3xT .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-upuv74k3xT .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-upuv74k3xT .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-upuv74k3xT .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upuv74k3xT .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-upuv74k3xT .mbr-section-title {
  color: #404349;
}
.cid-upuv74k3xT .panel-title-edit {
  color: #404349;
}
.cid-upuv74k3xT .panel-text {
  color: #404349;
}
.cid-upuCVhakGd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upuz8CQUEv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-upuz8CQUEv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuz8CQUEv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuz8CQUEv .google-map {
  height: 30rem;
  position: relative;
}
.cid-upuz8CQUEv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upuz8CQUEv .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-upuz8CQUEv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upuz8CQUEv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-upuzyrft02 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upuzyrft02 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upuzyrft02 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upuzyrft02 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upuzyrft02 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upuzyrft02 a {
  font-weight: 600;
}
.cid-upuzyrft02 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upuzyrft02 .col-lg-3,
  .cid-upuzyrft02 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upuzyrft02 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upuzyrft02 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upuzyrft02 h5 {
  margin: 0;
}
.cid-upuzyrft02 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upuzyrft02 .iconfont-wrapper {
  position: relative;
}
.cid-upuzyrft02 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upuzyrft02 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upuzyrft02 .sociconfont-wrapper {
  display: flex;
}
.cid-upuzyrft02 .card-title,
.cid-upuzyrft02 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-upuzyrft02 .card-text {
  color: #000000;
}
.cid-upuzyrft02 .mbr-section-title {
  color: #000000;
}
.cid-upuzyrft02 .main-title,
.cid-upuzyrft02 .iconfont-wrapper {
  text-align: left;
}
.cid-upuzhxOpfn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-upuzhxOpfn .media-container-row .mbr-text {
  color: #000000;
}
.cid-upxMzuQCsv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-upxMzuQCsv nav.navbar {
  position: fixed;
}
.cid-upxMzuQCsv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxMzuQCsv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-upxMzuQCsv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upxMzuQCsv .dropdown-item:hover,
.cid-upxMzuQCsv .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-upxMzuQCsv .dropdown-item:hover span {
  color: white;
}
.cid-upxMzuQCsv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upxMzuQCsv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upxMzuQCsv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upxMzuQCsv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upxMzuQCsv .nav-link {
  position: relative;
}
.cid-upxMzuQCsv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxMzuQCsv .container {
    flex-wrap: wrap;
  }
}
.cid-upxMzuQCsv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxMzuQCsv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-upxMzuQCsv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upxMzuQCsv .dropdown-menu,
.cid-upxMzuQCsv .navbar.opened {
  background: #fafafa !important;
}
.cid-upxMzuQCsv .nav-item:focus,
.cid-upxMzuQCsv .nav-link:focus {
  outline: none;
}
.cid-upxMzuQCsv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upxMzuQCsv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upxMzuQCsv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upxMzuQCsv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxMzuQCsv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upxMzuQCsv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upxMzuQCsv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-upxMzuQCsv .navbar.opened {
  transition: all 0.3s;
}
.cid-upxMzuQCsv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upxMzuQCsv .navbar .navbar-logo img {
  width: auto;
}
.cid-upxMzuQCsv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upxMzuQCsv .navbar.collapsed {
  justify-content: center;
}
.cid-upxMzuQCsv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upxMzuQCsv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upxMzuQCsv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upxMzuQCsv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upxMzuQCsv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upxMzuQCsv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upxMzuQCsv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upxMzuQCsv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upxMzuQCsv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upxMzuQCsv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upxMzuQCsv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upxMzuQCsv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upxMzuQCsv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upxMzuQCsv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upxMzuQCsv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upxMzuQCsv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upxMzuQCsv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upxMzuQCsv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upxMzuQCsv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upxMzuQCsv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upxMzuQCsv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upxMzuQCsv .navbar.navbar-short {
  min-height: 60px;
}
.cid-upxMzuQCsv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upxMzuQCsv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upxMzuQCsv .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-upxMzuQCsv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upxMzuQCsv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upxMzuQCsv .dropdown-item.active,
.cid-upxMzuQCsv .dropdown-item:active {
  background-color: transparent;
}
.cid-upxMzuQCsv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upxMzuQCsv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upxMzuQCsv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upxMzuQCsv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-upxMzuQCsv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upxMzuQCsv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upxMzuQCsv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upxMzuQCsv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upxMzuQCsv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upxMzuQCsv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upxMzuQCsv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upxMzuQCsv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxMzuQCsv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxMzuQCsv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upxMzuQCsv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxMzuQCsv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upxMzuQCsv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upxMzuQCsv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxMzuQCsv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upxMzuQCsv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upxMzuQCsv .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-upxMzuQCsv .navbar {
    height: 70px;
  }
  .cid-upxMzuQCsv .navbar.opened {
    height: auto;
  }
  .cid-upxMzuQCsv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upxMzvlgE3 {
  background-image: linear-gradient(135deg, #fafafa 10%, #22a5e5 100%) !important;
}
.cid-upxMzvlgE3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzvlgE3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzw1aim {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxMzw1aim .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzw1aim .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-upxMzw1aim .container {
    padding: 0 15px;
  }
}
.cid-upxMzw1aim .row {
  justify-content: center;
}
.cid-upxMzw1aim .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upxMzw1aim .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upxMzw1aim .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-upxMzw1aim .subtitle-wrapper {
    padding: 0;
  }
}
.cid-upxMzw1aim .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxMzw1aim .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-upxMzw1aim .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-upxMzw1aim .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-upxMzw1aim .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-upxMzw1aim .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upxMzw1aim .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #22a5e5;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-upxMzw1aim .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-upxMzw1aim .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upxMzw1aim .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upxMzw1aim .list {
  color: #ffffff;
}
.cid-upxMzwovNK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxMzwLgLf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxMzwLgLf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzwLgLf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzwLgLf .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-upxMzwLgLf .mbr-section-subtitle {
  text-align: left;
}
.cid-upxMzxbKGf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #22a5e5;
}
.cid-upxMzxbKGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzxbKGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzxbKGf .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-upxMzxbKGf .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-upxMzxbKGf .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-upxMzxbKGf .wrapper {
  padding: 30px 0;
}
.cid-upxMzxbKGf .mbr-section-title {
  color: #fafafa;
}
.cid-upxMzxbKGf .mbr-text,
.cid-upxMzxbKGf .mbr-section-btn {
  color: #ffffff;
}
.cid-upxMzy3YNa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxMzy3YNa .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzy3YNa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzy3YNa .card-wrapper {
  background: #22a5e5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upxMzy3YNa .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upxMzy3YNa .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upxMzy3YNa .card-wrapper {
    padding: 4rem;
  }
}
.cid-upxMzy3YNa .mbr-text,
.cid-upxMzy3YNa .mbr-section-btn {
  color: #000000;
}
.cid-upxMzy3YNa .card-title,
.cid-upxMzy3YNa .card-box {
  text-align: left;
  color: #000000;
}
.cid-upxMzyCL1L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxMzyCL1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzyCL1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzyCL1L .content-wrapper {
  padding: 80px 90px;
  background-color: #22a5e5;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upxMzyCL1L .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upxMzyCL1L .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upxMzyCL1L .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
.cid-upxMzyCL1L .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upxMzyCL1L .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upxMzyCL1L .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upxMzyCL1L .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #f7fff7;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upxMzyCL1L .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upxMzyCL1L .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxMzyCL1L .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upxMzyCL1L .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upxMzyCL1L .mbr-section-title {
  color: #050f0f;
}
.cid-upxMzyCL1L .mbr-text {
  color: #050f0f;
}
.cid-upxMzyCL1L .item-number {
  color: #f7fff7;
}
.cid-upxMzyCL1L .item-title {
  color: #050f0f;
}
.cid-upxMzyCL1L .item-text {
  color: #050f0f;
}
.cid-upxMzA60mV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxMzAIRBf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-upxMzAIRBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzAIRBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-upxMzAIRBf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxMzAIRBf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upxMzAIRBf .text-wrapper {
    padding: 2rem;
  }
}
.cid-upxMzBtU19 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upxMzBtU19 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzBtU19 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzBtU19 .content-wrapper {
  padding: 80px 90px;
  background-color: #fafafa;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upxMzBtU19 .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upxMzBtU19 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upxMzBtU19 .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
  padding-left: 0;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .items-wrapper {
    padding-right: 0;
  }
}
.cid-upxMzBtU19 .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upxMzBtU19 .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upxMzBtU19 .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upxMzBtU19 .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #ffffff;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upxMzBtU19 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upxMzBtU19 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxMzBtU19 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upxMzBtU19 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upxMzBtU19 .mbr-section-title {
  color: #050f0f;
}
.cid-upxMzBtU19 .mbr-text {
  color: #050f0f;
}
.cid-upxMzBtU19 .item-number {
  color: #f7fff7;
}
.cid-upxMzBtU19 .item-title {
  color: #050f0f;
}
.cid-upxMzBtU19 .item-text {
  color: #050f0f;
}
.cid-upxMzCR8jB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxMzDGr9E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upxMzDGr9E .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzDGr9E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzDGr9E .content-wrap {
  padding: 60px;
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .cid-upxMzDGr9E .content-wrap {
    padding: 30px 20px;
  }
}
.cid-upxMzDGr9E .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-upxMzDGr9E .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upxMzDGr9E .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxMzDGr9E .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-upxMzDGr9E .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #22a5e5;
}
@media (max-width: 992px) {
  .cid-upxMzDGr9E .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-upxMzDGr9E .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-upxMzDGr9E .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-upxMzDGr9E .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxMzDGr9E .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-upxMzDGr9E .mbr-section-title {
  color: #404349;
}
.cid-upxMzDGr9E .panel-title-edit {
  color: #404349;
}
.cid-upxMzDGr9E .panel-text {
  color: #404349;
}
.cid-upxMzEtms8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upyH6ghDA9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upyH6ghDA9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upyH6ghDA9 .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-upyH6ghDA9 .container {
    padding: 0 30px;
  }
}
.cid-upyH6ghDA9 .row {
  justify-content: center;
}
.cid-upyH6ghDA9 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upyH6ghDA9 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upyH6ghDA9 .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #22a5e5;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-upyH6ghDA9 .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-upyH6ghDA9 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upyH6ghDA9 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upyH6ghDA9 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upyH6ghDA9 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #c7fcb5;
  background-color: #22a5e5;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-upyH6ghDA9 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-upyH6ghDA9 .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-upyH6ghDA9 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upyH6ghDA9 .mbr-section-title {
  color: #000000;
}
.cid-upyH6ghDA9 .panel-title-edit {
  color: #000000;
}
.cid-upyH6ghDA9 .panel-text {
  color: #144031;
}
.cid-upxMzEV5Pv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-upxMzEV5Pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzEV5Pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzEV5Pv .google-map {
  height: 30rem;
  position: relative;
}
.cid-upxMzEV5Pv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upxMzEV5Pv .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-upxMzEV5Pv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upxMzEV5Pv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-upxMzFqO0e {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upxMzFqO0e .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxMzFqO0e .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upxMzFqO0e .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxMzFqO0e .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upxMzFqO0e a {
  font-weight: 600;
}
.cid-upxMzFqO0e a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upxMzFqO0e .col-lg-3,
  .cid-upxMzFqO0e .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upxMzFqO0e .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upxMzFqO0e .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upxMzFqO0e h5 {
  margin: 0;
}
.cid-upxMzFqO0e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxMzFqO0e .iconfont-wrapper {
  position: relative;
}
.cid-upxMzFqO0e .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upxMzFqO0e .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upxMzFqO0e .sociconfont-wrapper {
  display: flex;
}
.cid-upxMzFqO0e .card-title,
.cid-upxMzFqO0e .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-upxMzFqO0e .card-text {
  color: #000000;
}
.cid-upxMzFqO0e .mbr-section-title {
  color: #000000;
}
.cid-upxMzFqO0e .main-title,
.cid-upxMzFqO0e .iconfont-wrapper {
  text-align: left;
}
.cid-upxMzG0yQN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-upxMzG0yQN .media-container-row .mbr-text {
  color: #000000;
}
.cid-upxNcnyxoj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-upxNcnyxoj nav.navbar {
  position: fixed;
}
.cid-upxNcnyxoj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxNcnyxoj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-upxNcnyxoj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upxNcnyxoj .dropdown-item:hover,
.cid-upxNcnyxoj .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-upxNcnyxoj .dropdown-item:hover span {
  color: white;
}
.cid-upxNcnyxoj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upxNcnyxoj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upxNcnyxoj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upxNcnyxoj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upxNcnyxoj .nav-link {
  position: relative;
}
.cid-upxNcnyxoj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxNcnyxoj .container {
    flex-wrap: wrap;
  }
}
.cid-upxNcnyxoj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxNcnyxoj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-upxNcnyxoj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upxNcnyxoj .dropdown-menu,
.cid-upxNcnyxoj .navbar.opened {
  background: #fafafa !important;
}
.cid-upxNcnyxoj .nav-item:focus,
.cid-upxNcnyxoj .nav-link:focus {
  outline: none;
}
.cid-upxNcnyxoj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upxNcnyxoj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upxNcnyxoj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upxNcnyxoj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxNcnyxoj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upxNcnyxoj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upxNcnyxoj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-upxNcnyxoj .navbar.opened {
  transition: all 0.3s;
}
.cid-upxNcnyxoj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upxNcnyxoj .navbar .navbar-logo img {
  width: auto;
}
.cid-upxNcnyxoj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upxNcnyxoj .navbar.collapsed {
  justify-content: center;
}
.cid-upxNcnyxoj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upxNcnyxoj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upxNcnyxoj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upxNcnyxoj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upxNcnyxoj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upxNcnyxoj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upxNcnyxoj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upxNcnyxoj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upxNcnyxoj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upxNcnyxoj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upxNcnyxoj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upxNcnyxoj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upxNcnyxoj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upxNcnyxoj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upxNcnyxoj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upxNcnyxoj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upxNcnyxoj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upxNcnyxoj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upxNcnyxoj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upxNcnyxoj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upxNcnyxoj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upxNcnyxoj .navbar.navbar-short {
  min-height: 60px;
}
.cid-upxNcnyxoj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upxNcnyxoj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upxNcnyxoj .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-upxNcnyxoj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upxNcnyxoj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upxNcnyxoj .dropdown-item.active,
.cid-upxNcnyxoj .dropdown-item:active {
  background-color: transparent;
}
.cid-upxNcnyxoj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upxNcnyxoj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upxNcnyxoj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upxNcnyxoj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-upxNcnyxoj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upxNcnyxoj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upxNcnyxoj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upxNcnyxoj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upxNcnyxoj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upxNcnyxoj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upxNcnyxoj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upxNcnyxoj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxNcnyxoj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxNcnyxoj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upxNcnyxoj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxNcnyxoj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upxNcnyxoj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upxNcnyxoj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxNcnyxoj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upxNcnyxoj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upxNcnyxoj .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-upxNcnyxoj .navbar {
    height: 70px;
  }
  .cid-upxNcnyxoj .navbar.opened {
    height: auto;
  }
  .cid-upxNcnyxoj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upxNco3NGq {
  background-image: linear-gradient(135deg, #fafafa 10%, #22a5e5 100%) !important;
}
.cid-upxNco3NGq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNco3NGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcowd5Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxNcowd5Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcowd5Q .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-upxNcowd5Q .container {
    padding: 0 15px;
  }
}
.cid-upxNcowd5Q .row {
  justify-content: center;
}
.cid-upxNcowd5Q .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upxNcowd5Q .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upxNcowd5Q .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-upxNcowd5Q .subtitle-wrapper {
    padding: 0;
  }
}
.cid-upxNcowd5Q .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxNcowd5Q .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-upxNcowd5Q .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-upxNcowd5Q .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-upxNcowd5Q .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-upxNcowd5Q .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upxNcowd5Q .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #22a5e5;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-upxNcowd5Q .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-upxNcowd5Q .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upxNcowd5Q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upxNcowd5Q .list {
  color: #ffffff;
}
.cid-upxNcoQ30o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxNcpdsLZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxNcpdsLZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcpdsLZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcpdsLZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-upxNcpdsLZ .mbr-section-subtitle {
  text-align: left;
}
.cid-upxNcpz3Dq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #22a5e5;
}
.cid-upxNcpz3Dq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcpz3Dq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcpz3Dq .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-upxNcpz3Dq .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-upxNcpz3Dq .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-upxNcpz3Dq .wrapper {
  padding: 30px 0;
}
.cid-upxNcpz3Dq .mbr-section-title {
  color: #fafafa;
}
.cid-upxNcpz3Dq .mbr-text,
.cid-upxNcpz3Dq .mbr-section-btn {
  color: #ffffff;
}
.cid-upxNcq1341 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxNcq1341 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcq1341 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcq1341 .card-wrapper {
  background: #22a5e5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upxNcq1341 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upxNcq1341 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upxNcq1341 .card-wrapper {
    padding: 4rem;
  }
}
.cid-upxNcq1341 .mbr-text,
.cid-upxNcq1341 .mbr-section-btn {
  color: #000000;
}
.cid-upxNcq1341 .card-title,
.cid-upxNcq1341 .card-box {
  text-align: left;
  color: #000000;
}
.cid-upxNcqs5Dk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxNcqs5Dk .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcqs5Dk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcqs5Dk .content-wrapper {
  padding: 80px 90px;
  background-color: #22a5e5;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upxNcqs5Dk .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upxNcqs5Dk .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upxNcqs5Dk .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
.cid-upxNcqs5Dk .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upxNcqs5Dk .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upxNcqs5Dk .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upxNcqs5Dk .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #f7fff7;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upxNcqs5Dk .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upxNcqs5Dk .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxNcqs5Dk .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upxNcqs5Dk .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upxNcqs5Dk .mbr-section-title {
  color: #050f0f;
}
.cid-upxNcqs5Dk .mbr-text {
  color: #050f0f;
}
.cid-upxNcqs5Dk .item-number {
  color: #f7fff7;
}
.cid-upxNcqs5Dk .item-title {
  color: #050f0f;
}
.cid-upxNcqs5Dk .item-text {
  color: #050f0f;
}
.cid-upxNcr9n6F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxNcrwgLq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-upxNcrwgLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcrwgLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-upxNcrwgLq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxNcrwgLq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upxNcrwgLq .text-wrapper {
    padding: 2rem;
  }
}
.cid-upxNcrS2qF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upxNcrS2qF .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcrS2qF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcrS2qF .content-wrapper {
  padding: 80px 90px;
  background-color: #fafafa;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upxNcrS2qF .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upxNcrS2qF .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upxNcrS2qF .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
  padding-left: 0;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .items-wrapper {
    padding-right: 0;
  }
}
.cid-upxNcrS2qF .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upxNcrS2qF .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upxNcrS2qF .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upxNcrS2qF .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #ffffff;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upxNcrS2qF .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upxNcrS2qF .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxNcrS2qF .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upxNcrS2qF .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upxNcrS2qF .mbr-section-title {
  color: #050f0f;
}
.cid-upxNcrS2qF .mbr-text {
  color: #050f0f;
}
.cid-upxNcrS2qF .item-number {
  color: #f7fff7;
}
.cid-upxNcrS2qF .item-title {
  color: #050f0f;
}
.cid-upxNcrS2qF .item-text {
  color: #050f0f;
}
.cid-upxNcslP2X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxNcsEby0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upxNcsEby0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcsEby0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcsEby0 .content-wrap {
  padding: 60px;
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .cid-upxNcsEby0 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-upxNcsEby0 .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-upxNcsEby0 .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upxNcsEby0 .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxNcsEby0 .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-upxNcsEby0 .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #22a5e5;
}
@media (max-width: 992px) {
  .cid-upxNcsEby0 .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-upxNcsEby0 .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-upxNcsEby0 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-upxNcsEby0 .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxNcsEby0 .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-upxNcsEby0 .mbr-section-title {
  color: #404349;
}
.cid-upxNcsEby0 .panel-title-edit {
  color: #404349;
}
.cid-upxNcsEby0 .panel-text {
  color: #404349;
}
.cid-upxNctgUtc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upyHEWtIcK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upyHEWtIcK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upyHEWtIcK .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-upyHEWtIcK .container {
    padding: 0 30px;
  }
}
.cid-upyHEWtIcK .row {
  justify-content: center;
}
.cid-upyHEWtIcK .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upyHEWtIcK .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upyHEWtIcK .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #22a5e5;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-upyHEWtIcK .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-upyHEWtIcK .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upyHEWtIcK .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upyHEWtIcK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upyHEWtIcK .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #c7fcb5;
  background-color: #22a5e5;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-upyHEWtIcK .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-upyHEWtIcK .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-upyHEWtIcK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upyHEWtIcK .mbr-section-title {
  color: #22654E;
}
.cid-upyHEWtIcK .panel-title-edit {
  color: #22654E;
}
.cid-upyHEWtIcK .panel-text {
  color: #144031;
}
.cid-upxNctJC7g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-upxNctJC7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNctJC7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNctJC7g .google-map {
  height: 30rem;
  position: relative;
}
.cid-upxNctJC7g .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upxNctJC7g .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-upxNctJC7g .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upxNctJC7g .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-upxNcuf6uf {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upxNcuf6uf .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxNcuf6uf .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upxNcuf6uf .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxNcuf6uf .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upxNcuf6uf a {
  font-weight: 600;
}
.cid-upxNcuf6uf a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upxNcuf6uf .col-lg-3,
  .cid-upxNcuf6uf .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upxNcuf6uf .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upxNcuf6uf .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upxNcuf6uf h5 {
  margin: 0;
}
.cid-upxNcuf6uf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxNcuf6uf .iconfont-wrapper {
  position: relative;
}
.cid-upxNcuf6uf .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upxNcuf6uf .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upxNcuf6uf .sociconfont-wrapper {
  display: flex;
}
.cid-upxNcuf6uf .card-title,
.cid-upxNcuf6uf .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-upxNcuf6uf .card-text {
  color: #000000;
}
.cid-upxNcuf6uf .mbr-section-title {
  color: #000000;
}
.cid-upxNcuf6uf .main-title,
.cid-upxNcuf6uf .iconfont-wrapper {
  text-align: left;
}
.cid-upxNcuK4wV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-upxNcuK4wV .media-container-row .mbr-text {
  color: #000000;
}
.cid-upxLSaPbOu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-upxLSaPbOu nav.navbar {
  position: fixed;
}
.cid-upxLSaPbOu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxLSaPbOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-upxLSaPbOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upxLSaPbOu .dropdown-item:hover,
.cid-upxLSaPbOu .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-upxLSaPbOu .dropdown-item:hover span {
  color: white;
}
.cid-upxLSaPbOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upxLSaPbOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upxLSaPbOu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upxLSaPbOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upxLSaPbOu .nav-link {
  position: relative;
}
.cid-upxLSaPbOu .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxLSaPbOu .container {
    flex-wrap: wrap;
  }
}
.cid-upxLSaPbOu .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxLSaPbOu .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-upxLSaPbOu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upxLSaPbOu .dropdown-menu,
.cid-upxLSaPbOu .navbar.opened {
  background: #fafafa !important;
}
.cid-upxLSaPbOu .nav-item:focus,
.cid-upxLSaPbOu .nav-link:focus {
  outline: none;
}
.cid-upxLSaPbOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upxLSaPbOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upxLSaPbOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upxLSaPbOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxLSaPbOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upxLSaPbOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upxLSaPbOu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-upxLSaPbOu .navbar.opened {
  transition: all 0.3s;
}
.cid-upxLSaPbOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upxLSaPbOu .navbar .navbar-logo img {
  width: auto;
}
.cid-upxLSaPbOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upxLSaPbOu .navbar.collapsed {
  justify-content: center;
}
.cid-upxLSaPbOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upxLSaPbOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upxLSaPbOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upxLSaPbOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upxLSaPbOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upxLSaPbOu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upxLSaPbOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upxLSaPbOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upxLSaPbOu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upxLSaPbOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upxLSaPbOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upxLSaPbOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upxLSaPbOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upxLSaPbOu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upxLSaPbOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upxLSaPbOu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upxLSaPbOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upxLSaPbOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upxLSaPbOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upxLSaPbOu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upxLSaPbOu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upxLSaPbOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-upxLSaPbOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upxLSaPbOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upxLSaPbOu .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-upxLSaPbOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upxLSaPbOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upxLSaPbOu .dropdown-item.active,
.cid-upxLSaPbOu .dropdown-item:active {
  background-color: transparent;
}
.cid-upxLSaPbOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upxLSaPbOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upxLSaPbOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upxLSaPbOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-upxLSaPbOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upxLSaPbOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upxLSaPbOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upxLSaPbOu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upxLSaPbOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upxLSaPbOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upxLSaPbOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upxLSaPbOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxLSaPbOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxLSaPbOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upxLSaPbOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxLSaPbOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upxLSaPbOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upxLSaPbOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxLSaPbOu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upxLSaPbOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upxLSaPbOu .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-upxLSaPbOu .navbar {
    height: 70px;
  }
  .cid-upxLSaPbOu .navbar.opened {
    height: auto;
  }
  .cid-upxLSaPbOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upxLSbsAaD {
  background-image: linear-gradient(135deg, #fafafa 10%, #22a5e5 100%) !important;
}
.cid-upxLSbsAaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSbsAaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLSc0rZc {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-upxLSc0rZc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSc0rZc .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-upxLSc0rZc .container {
    padding: 0 15px;
  }
}
.cid-upxLSc0rZc .row {
  justify-content: center;
}
.cid-upxLSc0rZc .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upxLSc0rZc .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upxLSc0rZc .subtitle-wrapper {
  padding-right: 28px;
}
@media (max-width: 992px) {
  .cid-upxLSc0rZc .subtitle-wrapper {
    padding: 0;
  }
}
.cid-upxLSc0rZc .subtitle-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxLSc0rZc .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-upxLSc0rZc .lists-wrapper .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-upxLSc0rZc .lists-wrapper .list {
    padding-left: 36px;
  }
}
.cid-upxLSc0rZc .lists-wrapper .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-upxLSc0rZc .lists-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-upxLSc0rZc .lists-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -50px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #22a5e5;
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 992px) {
  .cid-upxLSc0rZc .lists-wrapper .list .item-wrap::before {
    margin-left: -36px;
  }
}
.cid-upxLSc0rZc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upxLSc0rZc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upxLSc0rZc .list {
  color: #ffffff;
}
.cid-upxLScmRS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxLScD4dc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxLScD4dc .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLScD4dc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLScD4dc .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-upxLScD4dc .mbr-section-subtitle {
  text-align: left;
}
.cid-upxLSdbLht {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #22a5e5;
}
.cid-upxLSdbLht .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSdbLht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLSdbLht .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-upxLSdbLht .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-upxLSdbLht .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-upxLSdbLht .wrapper {
  padding: 30px 0;
}
.cid-upxLSdbLht .mbr-section-title {
  color: #fafafa;
}
.cid-upxLSdbLht .mbr-text,
.cid-upxLSdbLht .mbr-section-btn {
  color: #ffffff;
}
.cid-upxLSdCUrH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxLSdCUrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSdCUrH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLSdCUrH .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-upxLSdCUrH .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upxLSdCUrH .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upxLSdCUrH .card-wrapper {
    padding: 4rem;
  }
}
.cid-upxLSdCUrH .mbr-text,
.cid-upxLSdCUrH .mbr-section-btn {
  color: #000000;
}
.cid-upxLSdCUrH .card-title,
.cid-upxLSdCUrH .card-box {
  text-align: left;
  color: #000000;
}
.cid-upxLSdVmsh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxLSdVmsh .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSdVmsh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLSdVmsh .content-wrapper {
  padding: 80px 90px;
  background-color: #22a5e5;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upxLSdVmsh .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upxLSdVmsh .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upxLSdVmsh .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
.cid-upxLSdVmsh .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upxLSdVmsh .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upxLSdVmsh .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upxLSdVmsh .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #f7fff7;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upxLSdVmsh .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upxLSdVmsh .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxLSdVmsh .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upxLSdVmsh .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upxLSdVmsh .mbr-section-title {
  color: #050f0f;
}
.cid-upxLSdVmsh .mbr-text {
  color: #050f0f;
}
.cid-upxLSdVmsh .item-number {
  color: #f7fff7;
}
.cid-upxLSdVmsh .item-title {
  color: #050f0f;
}
.cid-upxLSdVmsh .item-text {
  color: #050f0f;
}
.cid-upxLSeyZzS {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-upxLSeS55h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-upxLSeS55h .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSeS55h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-upxLSeS55h .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxLSeS55h img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-upxLSeS55h .text-wrapper {
    padding: 2rem;
  }
}
.cid-upxLSfmL14 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upxLSfmL14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSfmL14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLSfmL14 .content-wrapper {
  padding: 80px 90px;
  background-color: #fafafa;
  display: flex;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-upxLSfmL14 .content-wrapper .content-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .content-wrap {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper {
  position: sticky;
  top: 32px;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper {
    position: static;
    padding: 0;
  }
}
.cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  width: 100%;
  position: absolute;
  left: -30px;
  top: -30px;
}
.cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  color: #90ee90;
  font-size: 250px;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-upxLSfmL14 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-upxLSfmL14 .content-wrapper .items-wrapper {
  padding-left: 32px;
  width: 50%;
  padding-left: 0;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .items-wrapper {
    padding-left: 0;
    width: 100%;
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .items-wrapper {
    padding-right: 0;
  }
}
.cid-upxLSfmL14 .content-wrapper .items-wrapper .item {
  margin-bottom: 24px;
}
.cid-upxLSfmL14 .content-wrapper .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-upxLSfmL14 .content-wrapper .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-upxLSfmL14 .content-wrapper .items-wrapper .item .item-wrapper {
  position: relative;
  background-color: #ffffff;
  padding: 32px;
  border: 3px solid #050f0f;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .items-wrapper .item .item-wrapper {
    padding: 32px 16px;
  }
}
.cid-upxLSfmL14 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-number {
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #050f0f;
  text-shadow: 4px 4px 0 #050f0f;
}
.cid-upxLSfmL14 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-upxLSfmL14 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-title {
    margin-bottom: 24px;
  }
}
.cid-upxLSfmL14 .content-wrapper .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-upxLSfmL14 .mbr-section-title {
  color: #050f0f;
}
.cid-upxLSfmL14 .mbr-text {
  color: #050f0f;
}
.cid-upxLSfmL14 .item-number {
  color: #f7fff7;
}
.cid-upxLSfmL14 .item-title {
  color: #050f0f;
}
.cid-upxLSfmL14 .item-text {
  color: #050f0f;
}
.cid-upxLSfMljZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxLSg9px7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-upxLSg9px7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSg9px7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLSg9px7 .content-wrap {
  padding: 60px;
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .cid-upxLSg9px7 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-upxLSg9px7 .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-upxLSg9px7 .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-upxLSg9px7 .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxLSg9px7 .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-upxLSg9px7 .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #22a5e5;
}
@media (max-width: 992px) {
  .cid-upxLSg9px7 .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-upxLSg9px7 .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-upxLSg9px7 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-upxLSg9px7 .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-upxLSg9px7 .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-upxLSg9px7 .mbr-section-title {
  color: #404349;
}
.cid-upxLSg9px7 .panel-title-edit {
  color: #404349;
}
.cid-upxLSg9px7 .panel-text {
  color: #404349;
}
.cid-upyBxYSUON {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upyBxYSUON .mbr-fallback-image.disabled {
  display: none;
}
.cid-upyBxYSUON .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upyBxYSUON .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-upyBxYSUON .container-fluid {
    padding: 0 12px;
  }
}
.cid-upyBxYSUON .container-fluid .row {
  padding: 0;
}
.cid-upyBxYSUON .row {
  border: 3px solid #ffffff;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-upyBxYSUON .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-upyBxYSUON .card {
    padding: 48px 20px;
  }
}
.cid-upyBxYSUON .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-upyBxYSUON .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upyBxYSUON .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #ffffff;
}
.cid-upyBxYSUON .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-upyBxYSUON .mbr-section-title {
  color: #1b577a;
  text-align: center;
}
.cid-upxLSgFjPd {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-upyFRTBa9o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upyFRTBa9o .mbr-fallback-image.disabled {
  display: none;
}
.cid-upyFRTBa9o .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-upyFRTBa9o .container {
    padding: 0 30px;
  }
}
.cid-upyFRTBa9o .row {
  justify-content: center;
}
.cid-upyFRTBa9o .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upyFRTBa9o .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-upyFRTBa9o .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #22a5e5;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-upyFRTBa9o .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-upyFRTBa9o .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-upyFRTBa9o .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-upyFRTBa9o .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-upyFRTBa9o .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #c7fcb5;
  background-color: #22a5e5;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-upyFRTBa9o .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-upyFRTBa9o .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-upyFRTBa9o .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-upyFRTBa9o .mbr-section-title {
  color: #000000;
}
.cid-upyFRTBa9o .panel-title-edit {
  color: #000000;
}
.cid-upyFRTBa9o .panel-text {
  color: #000000;
}
.cid-upxLSh1nXz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-upxLSh1nXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLSh1nXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLSh1nXz .google-map {
  height: 30rem;
  position: relative;
}
.cid-upxLSh1nXz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upxLSh1nXz .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-upxLSh1nXz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upxLSh1nXz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-upxLShr04a {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upxLShr04a .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxLShr04a .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upxLShr04a .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxLShr04a .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upxLShr04a a {
  font-weight: 600;
}
.cid-upxLShr04a a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upxLShr04a .col-lg-3,
  .cid-upxLShr04a .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upxLShr04a .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upxLShr04a .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upxLShr04a h5 {
  margin: 0;
}
.cid-upxLShr04a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxLShr04a .iconfont-wrapper {
  position: relative;
}
.cid-upxLShr04a .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upxLShr04a .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upxLShr04a .sociconfont-wrapper {
  display: flex;
}
.cid-upxLShr04a .card-title,
.cid-upxLShr04a .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-upxLShr04a .card-text {
  color: #000000;
}
.cid-upxLShr04a .mbr-section-title {
  color: #000000;
}
.cid-upxLShr04a .main-title,
.cid-upxLShr04a .iconfont-wrapper {
  text-align: left;
}
.cid-upxLSi14K1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-upxLSi14K1 .media-container-row .mbr-text {
  color: #000000;
}
.cid-upxOcUp9ai {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-upxOcUp9ai nav.navbar {
  position: fixed;
}
.cid-upxOcUp9ai .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxOcUp9ai .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-upxOcUp9ai .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upxOcUp9ai .dropdown-item:hover,
.cid-upxOcUp9ai .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-upxOcUp9ai .dropdown-item:hover span {
  color: white;
}
.cid-upxOcUp9ai .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upxOcUp9ai .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upxOcUp9ai .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upxOcUp9ai .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upxOcUp9ai .nav-link {
  position: relative;
}
.cid-upxOcUp9ai .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxOcUp9ai .container {
    flex-wrap: wrap;
  }
}
.cid-upxOcUp9ai .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxOcUp9ai .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-upxOcUp9ai .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upxOcUp9ai .dropdown-menu,
.cid-upxOcUp9ai .navbar.opened {
  background: #fafafa !important;
}
.cid-upxOcUp9ai .nav-item:focus,
.cid-upxOcUp9ai .nav-link:focus {
  outline: none;
}
.cid-upxOcUp9ai .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upxOcUp9ai .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upxOcUp9ai .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upxOcUp9ai .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxOcUp9ai .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upxOcUp9ai .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upxOcUp9ai .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-upxOcUp9ai .navbar.opened {
  transition: all 0.3s;
}
.cid-upxOcUp9ai .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upxOcUp9ai .navbar .navbar-logo img {
  width: auto;
}
.cid-upxOcUp9ai .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upxOcUp9ai .navbar.collapsed {
  justify-content: center;
}
.cid-upxOcUp9ai .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upxOcUp9ai .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upxOcUp9ai .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upxOcUp9ai .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upxOcUp9ai .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upxOcUp9ai .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upxOcUp9ai .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upxOcUp9ai .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upxOcUp9ai .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upxOcUp9ai .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upxOcUp9ai .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upxOcUp9ai .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upxOcUp9ai .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upxOcUp9ai .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upxOcUp9ai .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upxOcUp9ai .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upxOcUp9ai .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upxOcUp9ai .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upxOcUp9ai .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upxOcUp9ai .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upxOcUp9ai .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upxOcUp9ai .navbar.navbar-short {
  min-height: 60px;
}
.cid-upxOcUp9ai .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upxOcUp9ai .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upxOcUp9ai .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-upxOcUp9ai .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upxOcUp9ai .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upxOcUp9ai .dropdown-item.active,
.cid-upxOcUp9ai .dropdown-item:active {
  background-color: transparent;
}
.cid-upxOcUp9ai .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upxOcUp9ai .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upxOcUp9ai .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upxOcUp9ai .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-upxOcUp9ai .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upxOcUp9ai .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upxOcUp9ai ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upxOcUp9ai .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upxOcUp9ai button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upxOcUp9ai button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upxOcUp9ai button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upxOcUp9ai button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxOcUp9ai button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxOcUp9ai button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upxOcUp9ai nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxOcUp9ai nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upxOcUp9ai nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upxOcUp9ai nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxOcUp9ai .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upxOcUp9ai a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upxOcUp9ai .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-upxOcUp9ai .navbar {
    height: 70px;
  }
  .cid-upxOcUp9ai .navbar.opened {
    height: auto;
  }
  .cid-upxOcUp9ai .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upxOcUUB0b {
  background-image: linear-gradient(135deg, #fafafa 10%, #22a5e5 100%) !important;
}
.cid-upxOcUUB0b .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxOcUUB0b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxOcW38yY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxOd1VcAR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-upxOd1VcAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxOd1VcAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxOd1VcAR .google-map {
  height: 30rem;
  position: relative;
}
.cid-upxOd1VcAR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upxOd1VcAR .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-upxOd1VcAR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upxOd1VcAR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-upxOd2QKQ5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upxOd2QKQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxOd2QKQ5 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upxOd2QKQ5 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxOd2QKQ5 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upxOd2QKQ5 a {
  font-weight: 600;
}
.cid-upxOd2QKQ5 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upxOd2QKQ5 .col-lg-3,
  .cid-upxOd2QKQ5 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upxOd2QKQ5 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upxOd2QKQ5 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upxOd2QKQ5 h5 {
  margin: 0;
}
.cid-upxOd2QKQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxOd2QKQ5 .iconfont-wrapper {
  position: relative;
}
.cid-upxOd2QKQ5 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upxOd2QKQ5 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upxOd2QKQ5 .sociconfont-wrapper {
  display: flex;
}
.cid-upxOd2QKQ5 .card-title,
.cid-upxOd2QKQ5 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-upxOd2QKQ5 .card-text {
  color: #000000;
}
.cid-upxOd2QKQ5 .mbr-section-title {
  color: #000000;
}
.cid-upxOd2QKQ5 .main-title,
.cid-upxOd2QKQ5 .iconfont-wrapper {
  text-align: left;
}
.cid-upxOd4ihAS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-upxOd4ihAS .media-container-row .mbr-text {
  color: #000000;
}
.cid-upxOWs3wQv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-upxOWs3wQv nav.navbar {
  position: fixed;
}
.cid-upxOWs3wQv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxOWs3wQv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-upxOWs3wQv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-upxOWs3wQv .dropdown-item:hover,
.cid-upxOWs3wQv .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-upxOWs3wQv .dropdown-item:hover span {
  color: white;
}
.cid-upxOWs3wQv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-upxOWs3wQv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-upxOWs3wQv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-upxOWs3wQv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-upxOWs3wQv .nav-link {
  position: relative;
}
.cid-upxOWs3wQv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxOWs3wQv .container {
    flex-wrap: wrap;
  }
}
.cid-upxOWs3wQv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-upxOWs3wQv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-upxOWs3wQv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-upxOWs3wQv .dropdown-menu,
.cid-upxOWs3wQv .navbar.opened {
  background: #fafafa !important;
}
.cid-upxOWs3wQv .nav-item:focus,
.cid-upxOWs3wQv .nav-link:focus {
  outline: none;
}
.cid-upxOWs3wQv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-upxOWs3wQv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-upxOWs3wQv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-upxOWs3wQv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-upxOWs3wQv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-upxOWs3wQv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-upxOWs3wQv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-upxOWs3wQv .navbar.opened {
  transition: all 0.3s;
}
.cid-upxOWs3wQv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-upxOWs3wQv .navbar .navbar-logo img {
  width: auto;
}
.cid-upxOWs3wQv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-upxOWs3wQv .navbar.collapsed {
  justify-content: center;
}
.cid-upxOWs3wQv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-upxOWs3wQv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-upxOWs3wQv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-upxOWs3wQv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-upxOWs3wQv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-upxOWs3wQv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-upxOWs3wQv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-upxOWs3wQv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-upxOWs3wQv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-upxOWs3wQv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-upxOWs3wQv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-upxOWs3wQv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-upxOWs3wQv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-upxOWs3wQv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-upxOWs3wQv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-upxOWs3wQv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-upxOWs3wQv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-upxOWs3wQv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-upxOWs3wQv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-upxOWs3wQv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-upxOWs3wQv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-upxOWs3wQv .navbar.navbar-short {
  min-height: 60px;
}
.cid-upxOWs3wQv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-upxOWs3wQv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-upxOWs3wQv .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-upxOWs3wQv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-upxOWs3wQv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-upxOWs3wQv .dropdown-item.active,
.cid-upxOWs3wQv .dropdown-item:active {
  background-color: transparent;
}
.cid-upxOWs3wQv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-upxOWs3wQv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-upxOWs3wQv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-upxOWs3wQv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-upxOWs3wQv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-upxOWs3wQv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-upxOWs3wQv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-upxOWs3wQv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-upxOWs3wQv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-upxOWs3wQv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-upxOWs3wQv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-upxOWs3wQv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxOWs3wQv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-upxOWs3wQv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-upxOWs3wQv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxOWs3wQv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-upxOWs3wQv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-upxOWs3wQv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-upxOWs3wQv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-upxOWs3wQv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-upxOWs3wQv .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-upxOWs3wQv .navbar {
    height: 70px;
  }
  .cid-upxOWs3wQv .navbar.opened {
    height: auto;
  }
  .cid-upxOWs3wQv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-upxOWsT1s9 {
  background-image: linear-gradient(135deg, #fafafa 10%, #22a5e5 100%) !important;
}
.cid-upxOWsT1s9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxOWsT1s9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxOWtDP65 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-upxOWtTMuX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-upxOWtTMuX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxOWtTMuX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxOWtTMuX .google-map {
  height: 30rem;
  position: relative;
}
.cid-upxOWtTMuX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-upxOWtTMuX .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-upxOWtTMuX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-upxOWtTMuX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-upxOWujJmz {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upxOWujJmz .mbr-fallback-image.disabled {
  display: none;
}
.cid-upxOWujJmz .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upxOWujJmz .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upxOWujJmz .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upxOWujJmz a {
  font-weight: 600;
}
.cid-upxOWujJmz a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upxOWujJmz .col-lg-3,
  .cid-upxOWujJmz .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upxOWujJmz .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upxOWujJmz .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upxOWujJmz h5 {
  margin: 0;
}
.cid-upxOWujJmz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upxOWujJmz .iconfont-wrapper {
  position: relative;
}
.cid-upxOWujJmz .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upxOWujJmz .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upxOWujJmz .sociconfont-wrapper {
  display: flex;
}
.cid-upxOWujJmz .card-title,
.cid-upxOWujJmz .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-upxOWujJmz .card-text {
  color: #000000;
}
.cid-upxOWujJmz .mbr-section-title {
  color: #000000;
}
.cid-upxOWujJmz .main-title,
.cid-upxOWujJmz .iconfont-wrapper {
  text-align: left;
}
.cid-upxOWuHyPX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-upxOWuHyPX .media-container-row .mbr-text {
  color: #000000;
}
