body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.875rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.76rem;
    font-size: calc( 2.295rem + (4.7 - 2.295) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.295rem + (4.7 - 2.295) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #4479d9 !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: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fa4529 !important;
  border-color: #fa4529 !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: #c81f05 !important;
  border-color: #c81f05 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c81f05 !important;
  border-color: #c81f05 !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: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !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: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fa4529;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c81f05 !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: #fa4529 !important;
  border-color: #fa4529 !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: #4479d9 !important;
}
.text-secondary {
  color: #fa4529 !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: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b91c04 !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: #4479d9;
}
.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: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.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: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #4479d9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fa4529 !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='%234479d9' %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-sLNCrJe5Kq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sLNCrJe5Kq nav.navbar {
  position: fixed;
}
.cid-sLNCrJe5Kq .container,
.cid-sLNCrJe5Kq .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .container,
  .cid-sLNCrJe5Kq .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-sLNCrJe5Kq .dropdown-item:hover,
.cid-sLNCrJe5Kq .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-sLNCrJe5Kq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sLNCrJe5Kq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sLNCrJe5Kq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sLNCrJe5Kq .nav-link {
  position: relative;
}
.cid-sLNCrJe5Kq .nav-link:hover {
  color: #ffffff !important;
}
.cid-sLNCrJe5Kq .nav-link:hover:before {
  opacity: 1;
}
.cid-sLNCrJe5Kq .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLNCrJe5Kq .container {
  display: flex;
  margin: auto;
}
.cid-sLNCrJe5Kq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLNCrJe5Kq .nav-item:focus,
.cid-sLNCrJe5Kq .nav-link:focus {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLNCrJe5Kq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLNCrJe5Kq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLNCrJe5Kq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLNCrJe5Kq .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.opened {
  transition: all 0.3s;
}
.cid-sLNCrJe5Kq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLNCrJe5Kq .navbar .navbar-logo img {
  width: auto;
}
.cid-sLNCrJe5Kq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLNCrJe5Kq .navbar.collapsed {
  justify-content: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLNCrJe5Kq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLNCrJe5Kq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLNCrJe5Kq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLNCrJe5Kq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLNCrJe5Kq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLNCrJe5Kq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLNCrJe5Kq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLNCrJe5Kq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLNCrJe5Kq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLNCrJe5Kq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLNCrJe5Kq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLNCrJe5Kq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLNCrJe5Kq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLNCrJe5Kq .dropdown-item.active,
.cid-sLNCrJe5Kq .dropdown-item:active {
  background-color: transparent;
}
.cid-sLNCrJe5Kq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLNCrJe5Kq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-sLNCrJe5Kq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLNCrJe5Kq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLNCrJe5Kq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sLNCrJe5Kq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLNCrJe5Kq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLNCrJe5Kq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLNCrJe5Kq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLNCrJe5Kq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sLNCrJe5Kq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLNCrJe5Kq .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-sLNCrJe5Kq .navbar {
    height: 70px;
  }
  .cid-sLNCrJe5Kq .navbar.opened {
    height: auto;
  }
  .cid-sLNCrJe5Kq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-sLNCrJe5Kq .icons-menu {
    padding-right: 0;
  }
  .cid-sLNCrJe5Kq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sLNBUE89nf {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mark-paton-8kw-tx1ndp4-unsplash.jpg-2000x1413.jpg");
}
.cid-sLNBUE89nf .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sLNBUE89nf .mbr-section-title a {
  font-weight: 600;
}
.cid-sLNBUE89nf .mbr-section-title a:hover {
  background: none !important;
}
.cid-sLNBUE89nf .mbr-text,
.cid-sLNBUE89nf .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uWhoPts7fK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhoPts7fK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhoPts7fK .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-uWhoPts7fK .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uWhoPts7fK .container {
    padding: 0 12px;
  }
}
.cid-uWhoPts7fK .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uWhoPts7fK .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uWhoPts7fK .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uWhoPts7fK .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4479d9;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uWhoPts7fK .mbr-section-title {
  color: #222222;
}
.cid-uWhtfxYynR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhtfxYynR .mbr-text {
  color: #000000;
}
.cid-uWhtfxYynR .list {
  color: #666666;
}
.cid-uWhtfxYynR ul {
  list-style-position: inside;
  padding: 0;
}
.cid-uWhtfxYynR li {
  padding-bottom: 0.5rem;
}
.cid-sLNQpX7qAb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sLNQpX7qAb ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-sLNQpX7qAb ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-sLNQpX7qAb ul li:hover a {
  color: #4479d9 !important;
  background: none !important;
}
.cid-sLNQpX7qAb h4 {
  padding-bottom: 2rem;
}
.cid-sLNQpX7qAb .mbr-title {
  color: #000000;
}
.cid-sLNQpX7qAb .mbr-text,
.cid-sLNQpX7qAb .mbr-section-btn {
  color: #666666;
}
.cid-sLNQpX7qAb .mbr-section-title {
  color: #000000;
}
.cid-sLNQpX7qAb .mbr-text {
  color: #000000;
}
.cid-sLNQpX7qAb .text {
  color: #000000;
}
.cid-sLNQFtI2EA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLNQFtI2EA .item-subtitle {
  color: #000000;
}
.cid-sLNQFtI2EA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sLNQFtI2EA .item:hover img {
  transform: scale(1.05);
}
.cid-sLNQFtI2EA .item-img {
  overflow: hidden;
}
.cid-sLNQFtI2EA img,
.cid-sLNQFtI2EA .item-img {
  width: 100%;
  transition: all 1s;
}
.cid-sLNQFtI2EA .item:focus,
.cid-sLNQFtI2EA span:focus {
  outline: none;
}
.cid-sLNQFtI2EA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sLNQFtI2EA .item-content {
  padding-top: 2rem;
}
.cid-sLNQFtI2EA .mbr-section-title {
  color: #232323;
}
.cid-sLNQFtI2EA .item-title {
  color: #666666;
}
.cid-sLNQFtI2EA .mbr-section-subtitle {
  text-align: left;
}
.cid-uWhpX11LTy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWhpX11LTy .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uWhpX11LTy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWhpX11LTy img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uWhpX11LTy img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uWhpX11LTy img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uWhpX11LTy .text-wrapper {
    padding: 2rem;
  }
}
.cid-uWhpX11LTy .mbr-section-subtitle {
  color: #fa4529;
}
.cid-uWhpX11LTy .mbr-text {
  color: #000000;
}
.cid-sLNQ3LjSsA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLNQ3LjSsA .mbr-text {
  color: #767676;
}
.cid-sLNQ3LjSsA .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sLNQ3LjSsA .card-box {
    flex-direction: column;
  }
}
.cid-sLNQ3LjSsA .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-sLNQ3LjSsA .mbr-section-subtitle {
  color: #767676;
}
.cid-sLNQ3LjSsA .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-sLNQ3LjSsA .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-sLNQ3LjSsA .title .card-title {
  z-index: 1;
}
.cid-sLNQ3LjSsA h4 {
  margin: 0;
}
.cid-sLNQ3LjSsA .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-sLNQ3LjSsA .card {
    margin-bottom: 1.5rem;
  }
}
.cid-sLNQ3LjSsA .card-title,
.cid-sLNQ3LjSsA .card-img {
  color: #000000;
}
.cid-sLNQ3LjSsA .num,
.cid-sLNQ3LjSsA .line {
  color: #000000;
}
.cid-sLNQRb2bpP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sLNQRb2bpP .img-wrapper {
  text-align: center;
}
.cid-sLNQRb2bpP img {
  margin: auto;
  width: 100%;
  max-width: 140px;
  padding-bottom: 1.5rem;
}
.cid-sLNQRb2bpP .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-sLNQRb2bpP .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-sLNQRb2bpP .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-sLNQRb2bpP .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sLNQRb2bpP .card-title {
  color: #666666;
}
.cid-sLNQRb2bpP .text {
  color: #000000;
}
.cid-uWhqeQBXAd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhqeQBXAd .card-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uWhqeQBXAd .card {
  display: flex;
  justify-content: center;
  border-radius: 0px;
  padding: 2rem 0;
}
.cid-uWhqeQBXAd .card-title a {
  font-weight: 700;
  transition: all 0.3s;
  color: #000000;
}
.cid-uWhqeQBXAd .card-title a:hover {
  color: #4479d9 !important;
  background: none !important;
}
.cid-uWhqeQBXAd img {
  width: 150px;
}
.cid-uWhqeQBXAd .item-border {
  border-bottom: 2px solid #000000;
  margin-bottom: 1rem;
  justify-content: space-between;
  margin: 0;
}
.cid-uWhqeQBXAd .item-border:hover .mbr-iconfont2 {
  color: #4479d9;
  transform: translateX(5px);
}
.cid-uWhqeQBXAd h5 {
  margin: 0;
}
.cid-uWhqeQBXAd .mbr-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uWhqeQBXAd .card-wrapper,
  .cid-uWhqeQBXAd .mbr-flex {
    flex-direction: column;
  }
  .cid-uWhqeQBXAd .card {
    padding: 1rem 0;
  }
}
.cid-uWhqeQBXAd .card-text {
  color: #666666;
}
.cid-uWhqeQBXAd .card-link {
  color: #666666;
}
.cid-uWhqeQBXAd .card-title,
.cid-uWhqeQBXAd .item-border {
  color: #121212;
}
.cid-uWhqeQBXAd .card-subtitle {
  color: #000000;
}
.cid-uWhqeQBXAd .main-title {
  color: #fa4529;
}
.cid-uWhu7VR3vE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhu7VR3vE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhu7VR3vE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhu7VR3vE .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhu7VR3vE .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhu7VR3vE .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhu7VR3vE .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhu7VR3vE .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhu7VR3vE .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhu7VR3vE .mbr-section-title {
  color: #111111;
}
.cid-uWhu7VR3vE .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhu7VR3vE .mbr-text,
.cid-uWhu7VR3vE .text-wrapper {
  color: #000000;
}
.cid-uWho8xzEYC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWho8xzEYC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWho8xzEYC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWho8xzEYC .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWho8xzEYC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWho8xzEYC .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-uWho8xzEYC .panel-body,
.cid-uWho8xzEYC .card-header {
  padding: 1rem 0;
}
.cid-uWho8xzEYC .panel-title-edit {
  color: #000000;
}
.cid-uWhuhQj8Ya {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuhQj8Ya .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhuhQj8Ya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhuhQj8Ya .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhuhQj8Ya .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhuhQj8Ya .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhuhQj8Ya .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhuhQj8Ya .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhuhQj8Ya .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhuhQj8Ya .mbr-section-title {
  color: #111111;
}
.cid-uWhuhQj8Ya .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhuhQj8Ya .mbr-text,
.cid-uWhuhQj8Ya .text-wrapper {
  color: #000000;
}
.cid-sLNQOHbt38 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sLNQOHbt38 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sLNQOHbt38 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sLNQOHbt38 .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-sLNQOHbt38 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sLNQOHbt38 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uWhoRifLKB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uWhoRifLKB .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uWhoRifLKB .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uWhoRifLKB .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uWhoRifLKB .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uWhoRifLKB a {
  background-image: none !important;
}
.cid-uWhoRifLKB .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uWhoRifLKB .container {
  padding: 5rem 1rem;
}
.cid-uWhoRifLKB p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uWhoRifLKB p {
    text-align: center !important;
  }
}
.cid-uWhoRifLKB .media-container-row .mbr-text2,
.cid-uWhoRifLKB .line {
  color: #232323;
  text-align: left;
}
.cid-sLNQ5e7KZu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-sLNQ5e7KZu .media-container-row .mbr-text {
  color: #000000;
}
.cid-uWhwjCuDIc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWhwjCuDIc nav.navbar {
  position: fixed;
}
.cid-uWhwjCuDIc .container,
.cid-uWhwjCuDIc .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uWhwjCuDIc .container,
  .cid-uWhwjCuDIc .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uWhwjCuDIc .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-uWhwjCuDIc .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-uWhwjCuDIc .dropdown-item:hover,
.cid-uWhwjCuDIc .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-uWhwjCuDIc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWhwjCuDIc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWhwjCuDIc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWhwjCuDIc .nav-link {
  position: relative;
}
.cid-uWhwjCuDIc .nav-link:hover {
  color: #ffffff !important;
}
.cid-uWhwjCuDIc .nav-link:hover:before {
  opacity: 1;
}
.cid-uWhwjCuDIc .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uWhwjCuDIc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWhwjCuDIc .container {
  display: flex;
  margin: auto;
}
.cid-uWhwjCuDIc .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWhwjCuDIc .nav-item:focus,
.cid-uWhwjCuDIc .nav-link:focus {
  outline: none;
}
.cid-uWhwjCuDIc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWhwjCuDIc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWhwjCuDIc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWhwjCuDIc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWhwjCuDIc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWhwjCuDIc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWhwjCuDIc .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uWhwjCuDIc .navbar.opened {
  transition: all 0.3s;
}
.cid-uWhwjCuDIc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWhwjCuDIc .navbar .navbar-logo img {
  width: auto;
}
.cid-uWhwjCuDIc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWhwjCuDIc .navbar.collapsed {
  justify-content: center;
}
.cid-uWhwjCuDIc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWhwjCuDIc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWhwjCuDIc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWhwjCuDIc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWhwjCuDIc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWhwjCuDIc .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-uWhwjCuDIc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWhwjCuDIc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWhwjCuDIc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWhwjCuDIc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWhwjCuDIc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWhwjCuDIc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWhwjCuDIc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWhwjCuDIc .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-uWhwjCuDIc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWhwjCuDIc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWhwjCuDIc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWhwjCuDIc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWhwjCuDIc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWhwjCuDIc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWhwjCuDIc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWhwjCuDIc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWhwjCuDIc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWhwjCuDIc .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-uWhwjCuDIc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWhwjCuDIc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWhwjCuDIc .dropdown-item.active,
.cid-uWhwjCuDIc .dropdown-item:active {
  background-color: transparent;
}
.cid-uWhwjCuDIc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWhwjCuDIc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWhwjCuDIc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWhwjCuDIc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uWhwjCuDIc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWhwjCuDIc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWhwjCuDIc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWhwjCuDIc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWhwjCuDIc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWhwjCuDIc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWhwjCuDIc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWhwjCuDIc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhwjCuDIc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhwjCuDIc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWhwjCuDIc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhwjCuDIc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWhwjCuDIc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWhwjCuDIc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhwjCuDIc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWhwjCuDIc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWhwjCuDIc .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-uWhwjCuDIc .navbar {
    height: 70px;
  }
  .cid-uWhwjCuDIc .navbar.opened {
    height: auto;
  }
  .cid-uWhwjCuDIc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWhwjCuDIc .icons-menu {
    padding-right: 0;
  }
  .cid-uWhwjCuDIc .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uWhwjDNPCU {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/hearing-aids-evolv-ai.png-1400x800.png");
}
.cid-uWhwjDNPCU .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uWhwjDNPCU .mbr-section-title a {
  font-weight: 600;
}
.cid-uWhwjDNPCU .mbr-section-title a:hover {
  background: none !important;
}
.cid-uWhwjDNPCU .mbr-text,
.cid-uWhwjDNPCU .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uWhwjFx65v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhwjFx65v .mbr-text {
  color: #000000;
}
.cid-uWhwjFx65v .list {
  color: #666666;
}
.cid-uWhwjFx65v ul {
  list-style-position: inside;
  padding: 0;
}
.cid-uWhwjFx65v li {
  padding-bottom: 0.5rem;
}
.cid-uWhwjUqkJm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uWhwjUqkJm .google-map {
  height: 30rem;
  position: relative;
}
.cid-uWhwjUqkJm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uWhwjUqkJm .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-uWhwjUqkJm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uWhwjUqkJm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uWhwk0758S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uWhwk0758S .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uWhwk0758S .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uWhwk0758S .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uWhwk0758S .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uWhwk0758S a {
  background-image: none !important;
}
.cid-uWhwk0758S .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uWhwk0758S .container {
  padding: 5rem 1rem;
}
.cid-uWhwk0758S p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uWhwk0758S p {
    text-align: center !important;
  }
}
.cid-uWhwk0758S .media-container-row .mbr-text2,
.cid-uWhwk0758S .line {
  color: #232323;
  text-align: left;
}
.cid-uWhwk0MXdj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uWhwk0MXdj .media-container-row .mbr-text {
  color: #000000;
}
.cid-uWhwDA6D7h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWhwDA6D7h nav.navbar {
  position: fixed;
}
.cid-uWhwDA6D7h .container,
.cid-uWhwDA6D7h .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uWhwDA6D7h .container,
  .cid-uWhwDA6D7h .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uWhwDA6D7h .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-uWhwDA6D7h .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-uWhwDA6D7h .dropdown-item:hover,
.cid-uWhwDA6D7h .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-uWhwDA6D7h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWhwDA6D7h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWhwDA6D7h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWhwDA6D7h .nav-link {
  position: relative;
}
.cid-uWhwDA6D7h .nav-link:hover {
  color: #ffffff !important;
}
.cid-uWhwDA6D7h .nav-link:hover:before {
  opacity: 1;
}
.cid-uWhwDA6D7h .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uWhwDA6D7h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWhwDA6D7h .container {
  display: flex;
  margin: auto;
}
.cid-uWhwDA6D7h .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWhwDA6D7h .nav-item:focus,
.cid-uWhwDA6D7h .nav-link:focus {
  outline: none;
}
.cid-uWhwDA6D7h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWhwDA6D7h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWhwDA6D7h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWhwDA6D7h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWhwDA6D7h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWhwDA6D7h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWhwDA6D7h .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uWhwDA6D7h .navbar.opened {
  transition: all 0.3s;
}
.cid-uWhwDA6D7h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWhwDA6D7h .navbar .navbar-logo img {
  width: auto;
}
.cid-uWhwDA6D7h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWhwDA6D7h .navbar.collapsed {
  justify-content: center;
}
.cid-uWhwDA6D7h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWhwDA6D7h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWhwDA6D7h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWhwDA6D7h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWhwDA6D7h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWhwDA6D7h .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-uWhwDA6D7h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWhwDA6D7h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWhwDA6D7h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWhwDA6D7h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWhwDA6D7h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWhwDA6D7h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWhwDA6D7h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWhwDA6D7h .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-uWhwDA6D7h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWhwDA6D7h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWhwDA6D7h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWhwDA6D7h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWhwDA6D7h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWhwDA6D7h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWhwDA6D7h .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWhwDA6D7h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWhwDA6D7h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWhwDA6D7h .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-uWhwDA6D7h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWhwDA6D7h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWhwDA6D7h .dropdown-item.active,
.cid-uWhwDA6D7h .dropdown-item:active {
  background-color: transparent;
}
.cid-uWhwDA6D7h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWhwDA6D7h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWhwDA6D7h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWhwDA6D7h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uWhwDA6D7h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWhwDA6D7h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWhwDA6D7h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWhwDA6D7h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWhwDA6D7h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWhwDA6D7h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWhwDA6D7h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWhwDA6D7h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhwDA6D7h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhwDA6D7h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWhwDA6D7h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhwDA6D7h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWhwDA6D7h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWhwDA6D7h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhwDA6D7h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWhwDA6D7h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWhwDA6D7h .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-uWhwDA6D7h .navbar {
    height: 70px;
  }
  .cid-uWhwDA6D7h .navbar.opened {
    height: auto;
  }
  .cid-uWhwDA6D7h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWhwDA6D7h .icons-menu {
    padding-right: 0;
  }
  .cid-uWhwDA6D7h .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uWhwDBJE29 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/screenshot-iic.jpg-1920x1074.jpg");
}
.cid-uWhwDBJE29 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uWhwDBJE29 .mbr-section-title a {
  font-weight: 600;
}
.cid-uWhwDBJE29 .mbr-section-title a:hover {
  background: none !important;
}
.cid-uWhwDBJE29 .mbr-text,
.cid-uWhwDBJE29 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uWhwDCcLl4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhwDCcLl4 .mbr-text {
  color: #000000;
}
.cid-uWhwDCcLl4 .list {
  color: #666666;
}
.cid-uWhwDCcLl4 ul {
  list-style-position: inside;
  padding: 0;
}
.cid-uWhwDCcLl4 li {
  padding-bottom: 0.5rem;
}
.cid-uWhwDCBotz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uWhwDCBotz .google-map {
  height: 30rem;
  position: relative;
}
.cid-uWhwDCBotz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uWhwDCBotz .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-uWhwDCBotz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uWhwDCBotz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uWhwDDaqBm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uWhwDDaqBm .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uWhwDDaqBm .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uWhwDDaqBm .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uWhwDDaqBm .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uWhwDDaqBm a {
  background-image: none !important;
}
.cid-uWhwDDaqBm .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uWhwDDaqBm .container {
  padding: 5rem 1rem;
}
.cid-uWhwDDaqBm p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uWhwDDaqBm p {
    text-align: center !important;
  }
}
.cid-uWhwDDaqBm .media-container-row .mbr-text2,
.cid-uWhwDDaqBm .line {
  color: #232323;
  text-align: left;
}
.cid-uWhwDDt7hT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uWhwDDt7hT .media-container-row .mbr-text {
  color: #000000;
}
.cid-uWhuxCfgbE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWhuxCfgbE nav.navbar {
  position: fixed;
}
.cid-uWhuxCfgbE .container,
.cid-uWhuxCfgbE .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uWhuxCfgbE .container,
  .cid-uWhuxCfgbE .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uWhuxCfgbE .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-uWhuxCfgbE .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-uWhuxCfgbE .dropdown-item:hover,
.cid-uWhuxCfgbE .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-uWhuxCfgbE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWhuxCfgbE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWhuxCfgbE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWhuxCfgbE .nav-link {
  position: relative;
}
.cid-uWhuxCfgbE .nav-link:hover {
  color: #ffffff !important;
}
.cid-uWhuxCfgbE .nav-link:hover:before {
  opacity: 1;
}
.cid-uWhuxCfgbE .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uWhuxCfgbE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWhuxCfgbE .container {
  display: flex;
  margin: auto;
}
.cid-uWhuxCfgbE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWhuxCfgbE .nav-item:focus,
.cid-uWhuxCfgbE .nav-link:focus {
  outline: none;
}
.cid-uWhuxCfgbE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWhuxCfgbE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWhuxCfgbE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWhuxCfgbE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWhuxCfgbE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWhuxCfgbE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWhuxCfgbE .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uWhuxCfgbE .navbar.opened {
  transition: all 0.3s;
}
.cid-uWhuxCfgbE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWhuxCfgbE .navbar .navbar-logo img {
  width: auto;
}
.cid-uWhuxCfgbE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWhuxCfgbE .navbar.collapsed {
  justify-content: center;
}
.cid-uWhuxCfgbE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWhuxCfgbE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWhuxCfgbE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWhuxCfgbE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWhuxCfgbE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWhuxCfgbE .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-uWhuxCfgbE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWhuxCfgbE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWhuxCfgbE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWhuxCfgbE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWhuxCfgbE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWhuxCfgbE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWhuxCfgbE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWhuxCfgbE .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-uWhuxCfgbE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWhuxCfgbE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWhuxCfgbE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWhuxCfgbE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWhuxCfgbE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWhuxCfgbE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWhuxCfgbE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWhuxCfgbE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWhuxCfgbE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWhuxCfgbE .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-uWhuxCfgbE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWhuxCfgbE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWhuxCfgbE .dropdown-item.active,
.cid-uWhuxCfgbE .dropdown-item:active {
  background-color: transparent;
}
.cid-uWhuxCfgbE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWhuxCfgbE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWhuxCfgbE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWhuxCfgbE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uWhuxCfgbE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWhuxCfgbE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWhuxCfgbE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWhuxCfgbE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWhuxCfgbE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWhuxCfgbE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWhuxCfgbE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWhuxCfgbE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhuxCfgbE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhuxCfgbE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWhuxCfgbE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhuxCfgbE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWhuxCfgbE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWhuxCfgbE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhuxCfgbE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWhuxCfgbE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWhuxCfgbE .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-uWhuxCfgbE .navbar {
    height: 70px;
  }
  .cid-uWhuxCfgbE .navbar.opened {
    height: auto;
  }
  .cid-uWhuxCfgbE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWhuxCfgbE .icons-menu {
    padding-right: 0;
  }
  .cid-uWhuxCfgbE .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uWhuxCXUmZ {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/hearing-aid-types-shutterstock-1780523660-primary.jpg-1750x984.jpg");
}
.cid-uWhuxCXUmZ .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uWhuxCXUmZ .mbr-section-title a {
  font-weight: 600;
}
.cid-uWhuxCXUmZ .mbr-section-title a:hover {
  background: none !important;
}
.cid-uWhuxCXUmZ .mbr-text,
.cid-uWhuxCXUmZ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uWhuxDtySr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxDtySr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhuxDtySr .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-uWhuxDtySr .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uWhuxDtySr .container {
    padding: 0 12px;
  }
}
.cid-uWhuxDtySr .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uWhuxDtySr .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uWhuxDtySr .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uWhuxDtySr .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4479d9;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uWhuxDtySr .mbr-section-title {
  color: #222222;
}
.cid-uWhuxDZJIq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxDZJIq .mbr-text {
  color: #000000;
}
.cid-uWhuxDZJIq .list {
  color: #666666;
}
.cid-uWhuxDZJIq ul {
  list-style-position: inside;
  padding: 0;
}
.cid-uWhuxDZJIq li {
  padding-bottom: 0.5rem;
}
.cid-uWhuxExDDs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhuxExDDs ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-uWhuxExDDs ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-uWhuxExDDs ul li:hover a {
  color: #4479d9 !important;
  background: none !important;
}
.cid-uWhuxExDDs h4 {
  padding-bottom: 2rem;
}
.cid-uWhuxExDDs .mbr-title {
  color: #000000;
}
.cid-uWhuxExDDs .mbr-text,
.cid-uWhuxExDDs .mbr-section-btn {
  color: #666666;
}
.cid-uWhuxExDDs .mbr-section-title {
  color: #000000;
}
.cid-uWhuxExDDs .mbr-text {
  color: #000000;
}
.cid-uWhuxExDDs .text {
  color: #000000;
}
.cid-uWhuxFGMOA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxFGMOA .item-subtitle {
  color: #000000;
}
.cid-uWhuxFGMOA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWhuxFGMOA .item:hover img {
  transform: scale(1.05);
}
.cid-uWhuxFGMOA .item-img {
  overflow: hidden;
}
.cid-uWhuxFGMOA img,
.cid-uWhuxFGMOA .item-img {
  width: 100%;
  transition: all 1s;
}
.cid-uWhuxFGMOA .item:focus,
.cid-uWhuxFGMOA span:focus {
  outline: none;
}
.cid-uWhuxFGMOA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uWhuxFGMOA .item-content {
  padding-top: 2rem;
}
.cid-uWhuxFGMOA .mbr-section-title {
  color: #232323;
}
.cid-uWhuxFGMOA .item-title {
  color: #666666;
}
.cid-uWhuxFGMOA .mbr-section-subtitle {
  text-align: left;
}
.cid-uWhuxL1J5B {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWhuxL1J5B .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uWhuxL1J5B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWhuxL1J5B img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uWhuxL1J5B img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uWhuxL1J5B img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uWhuxL1J5B .text-wrapper {
    padding: 2rem;
  }
}
.cid-uWhuxL1J5B .mbr-section-subtitle {
  color: #fa4529;
}
.cid-uWhuxL1J5B .mbr-text {
  color: #000000;
}
.cid-uWhuxNpbOd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxNpbOd .mbr-text {
  color: #767676;
}
.cid-uWhuxNpbOd .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uWhuxNpbOd .card-box {
    flex-direction: column;
  }
}
.cid-uWhuxNpbOd .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uWhuxNpbOd .mbr-section-subtitle {
  color: #767676;
}
.cid-uWhuxNpbOd .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uWhuxNpbOd .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uWhuxNpbOd .title .card-title {
  z-index: 1;
}
.cid-uWhuxNpbOd h4 {
  margin: 0;
}
.cid-uWhuxNpbOd .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uWhuxNpbOd .card {
    margin-bottom: 1.5rem;
  }
}
.cid-uWhuxNpbOd .card-title,
.cid-uWhuxNpbOd .card-img {
  color: #000000;
}
.cid-uWhuxNpbOd .num,
.cid-uWhuxNpbOd .line {
  color: #000000;
}
.cid-uWhuxP9PLV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxP9PLV .img-wrapper {
  text-align: center;
}
.cid-uWhuxP9PLV img {
  margin: auto;
  width: 100%;
  max-width: 140px;
  padding-bottom: 1.5rem;
}
.cid-uWhuxP9PLV .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-uWhuxP9PLV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-uWhuxP9PLV .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-uWhuxP9PLV .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uWhuxP9PLV .card-title {
  color: #666666;
}
.cid-uWhuxP9PLV .text {
  color: #000000;
}
.cid-uWhuxSeArv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxSeArv .card-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uWhuxSeArv .card {
  display: flex;
  justify-content: center;
  border-radius: 0px;
  padding: 2rem 0;
}
.cid-uWhuxSeArv .card-title a {
  font-weight: 700;
  transition: all 0.3s;
  color: #000000;
}
.cid-uWhuxSeArv .card-title a:hover {
  color: #4479d9 !important;
  background: none !important;
}
.cid-uWhuxSeArv img {
  width: 150px;
}
.cid-uWhuxSeArv .item-border {
  border-bottom: 2px solid #000000;
  margin-bottom: 1rem;
  justify-content: space-between;
  margin: 0;
}
.cid-uWhuxSeArv .item-border:hover .mbr-iconfont2 {
  color: #4479d9;
  transform: translateX(5px);
}
.cid-uWhuxSeArv h5 {
  margin: 0;
}
.cid-uWhuxSeArv .mbr-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uWhuxSeArv .card-wrapper,
  .cid-uWhuxSeArv .mbr-flex {
    flex-direction: column;
  }
  .cid-uWhuxSeArv .card {
    padding: 1rem 0;
  }
}
.cid-uWhuxSeArv .card-text {
  color: #666666;
}
.cid-uWhuxSeArv .card-link {
  color: #666666;
}
.cid-uWhuxSeArv .card-title,
.cid-uWhuxSeArv .item-border {
  color: #121212;
}
.cid-uWhuxSeArv .card-subtitle {
  color: #000000;
}
.cid-uWhuxSeArv .main-title {
  color: #fa4529;
}
.cid-uWhuxTq5Gg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxTq5Gg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhuxTq5Gg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhuxTq5Gg .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhuxTq5Gg .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhuxTq5Gg .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhuxTq5Gg .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhuxTq5Gg .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhuxTq5Gg .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhuxTq5Gg .mbr-section-title {
  color: #111111;
}
.cid-uWhuxTq5Gg .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhuxTq5Gg .mbr-text,
.cid-uWhuxTq5Gg .text-wrapper {
  color: #000000;
}
.cid-uWhuxUMaUH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhuxUMaUH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhuxUMaUH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhuxUMaUH .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWhuxUMaUH .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWhuxUMaUH .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-uWhuxUMaUH .panel-body,
.cid-uWhuxUMaUH .card-header {
  padding: 1rem 0;
}
.cid-uWhuxUMaUH .panel-title-edit {
  color: #000000;
}
.cid-uWhuxYVhxN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhuxYVhxN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhuxYVhxN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhuxYVhxN .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhuxYVhxN .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhuxYVhxN .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhuxYVhxN .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhuxYVhxN .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhuxYVhxN .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhuxYVhxN .mbr-section-title {
  color: #111111;
}
.cid-uWhuxYVhxN .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhuxYVhxN .mbr-text,
.cid-uWhuxYVhxN .text-wrapper {
  color: #000000;
}
.cid-uWhzUWTFBo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4479d9;
}
.cid-uWhzUWTFBo .content-text {
  max-width: 800px;
}
.cid-uWhzUWTFBo .mbr-section-title {
  color: #fdfde1;
}
.cid-uWhzUWTFBo .mbr-text,
.cid-uWhzUWTFBo .mbr-section-btn {
  color: #fdfde1;
}
.cid-uWhMyJ2acP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhMyJ2acP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhMyJ2acP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhMyJ2acP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWhMyJ2acP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWhMyJ2acP .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-uWhMyJ2acP .panel-body,
.cid-uWhMyJ2acP .card-header {
  padding: 1rem 0;
}
.cid-uWhMyJ2acP .panel-title-edit {
  color: #000000;
}
.cid-uWhuy05OwK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uWhuy05OwK .google-map {
  height: 30rem;
  position: relative;
}
.cid-uWhuy05OwK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uWhuy05OwK .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-uWhuy05OwK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uWhuy05OwK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uWhuy1ldBY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uWhuy1ldBY .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uWhuy1ldBY .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uWhuy1ldBY .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uWhuy1ldBY .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uWhuy1ldBY a {
  background-image: none !important;
}
.cid-uWhuy1ldBY .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uWhuy1ldBY .container {
  padding: 5rem 1rem;
}
.cid-uWhuy1ldBY p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uWhuy1ldBY p {
    text-align: center !important;
  }
}
.cid-uWhuy1ldBY .media-container-row .mbr-text2,
.cid-uWhuy1ldBY .line {
  color: #232323;
  text-align: left;
}
.cid-uWhuy2m0Xi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uWhuy2m0Xi .media-container-row .mbr-text {
  color: #000000;
}
.cid-uWhv2Qlwmr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWhv2Qlwmr nav.navbar {
  position: fixed;
}
.cid-uWhv2Qlwmr .container,
.cid-uWhv2Qlwmr .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uWhv2Qlwmr .container,
  .cid-uWhv2Qlwmr .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uWhv2Qlwmr .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-uWhv2Qlwmr .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-uWhv2Qlwmr .dropdown-item:hover,
.cid-uWhv2Qlwmr .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-uWhv2Qlwmr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWhv2Qlwmr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWhv2Qlwmr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWhv2Qlwmr .nav-link {
  position: relative;
}
.cid-uWhv2Qlwmr .nav-link:hover {
  color: #ffffff !important;
}
.cid-uWhv2Qlwmr .nav-link:hover:before {
  opacity: 1;
}
.cid-uWhv2Qlwmr .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uWhv2Qlwmr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWhv2Qlwmr .container {
  display: flex;
  margin: auto;
}
.cid-uWhv2Qlwmr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWhv2Qlwmr .nav-item:focus,
.cid-uWhv2Qlwmr .nav-link:focus {
  outline: none;
}
.cid-uWhv2Qlwmr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWhv2Qlwmr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWhv2Qlwmr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWhv2Qlwmr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWhv2Qlwmr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWhv2Qlwmr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWhv2Qlwmr .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uWhv2Qlwmr .navbar.opened {
  transition: all 0.3s;
}
.cid-uWhv2Qlwmr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWhv2Qlwmr .navbar .navbar-logo img {
  width: auto;
}
.cid-uWhv2Qlwmr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWhv2Qlwmr .navbar.collapsed {
  justify-content: center;
}
.cid-uWhv2Qlwmr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWhv2Qlwmr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWhv2Qlwmr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWhv2Qlwmr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWhv2Qlwmr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWhv2Qlwmr .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-uWhv2Qlwmr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWhv2Qlwmr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWhv2Qlwmr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWhv2Qlwmr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWhv2Qlwmr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWhv2Qlwmr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWhv2Qlwmr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWhv2Qlwmr .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-uWhv2Qlwmr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWhv2Qlwmr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWhv2Qlwmr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWhv2Qlwmr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWhv2Qlwmr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWhv2Qlwmr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWhv2Qlwmr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWhv2Qlwmr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWhv2Qlwmr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWhv2Qlwmr .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-uWhv2Qlwmr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWhv2Qlwmr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWhv2Qlwmr .dropdown-item.active,
.cid-uWhv2Qlwmr .dropdown-item:active {
  background-color: transparent;
}
.cid-uWhv2Qlwmr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWhv2Qlwmr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWhv2Qlwmr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWhv2Qlwmr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uWhv2Qlwmr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWhv2Qlwmr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWhv2Qlwmr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWhv2Qlwmr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWhv2Qlwmr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWhv2Qlwmr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWhv2Qlwmr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWhv2Qlwmr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhv2Qlwmr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhv2Qlwmr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWhv2Qlwmr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhv2Qlwmr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWhv2Qlwmr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWhv2Qlwmr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhv2Qlwmr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWhv2Qlwmr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWhv2Qlwmr .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-uWhv2Qlwmr .navbar {
    height: 70px;
  }
  .cid-uWhv2Qlwmr .navbar.opened {
    height: auto;
  }
  .cid-uWhv2Qlwmr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWhv2Qlwmr .icons-menu {
    padding-right: 0;
  }
  .cid-uWhv2Qlwmr .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uWhv2RmbEr {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/gn-group-wf7y8v4zqfa-unsplash.jpg-2000x1333.jpg");
}
.cid-uWhv2RmbEr .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uWhv2RmbEr .mbr-section-title a {
  font-weight: 600;
}
.cid-uWhv2RmbEr .mbr-section-title a:hover {
  background: none !important;
}
.cid-uWhv2RmbEr .mbr-text,
.cid-uWhv2RmbEr .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uWhv2SfSv8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv2SfSv8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhv2SfSv8 .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-uWhv2SfSv8 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uWhv2SfSv8 .container {
    padding: 0 12px;
  }
}
.cid-uWhv2SfSv8 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uWhv2SfSv8 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uWhv2SfSv8 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uWhv2SfSv8 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4479d9;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uWhv2SfSv8 .mbr-section-title {
  color: #222222;
}
.cid-uWhv2SSB4P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv2SSB4P .mbr-text {
  color: #000000;
}
.cid-uWhv2SSB4P .list {
  color: #666666;
}
.cid-uWhv2SSB4P ul {
  list-style-position: inside;
  padding: 0;
}
.cid-uWhv2SSB4P li {
  padding-bottom: 0.5rem;
}
.cid-uWhv2TrzJc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhv2TrzJc ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-uWhv2TrzJc ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-uWhv2TrzJc ul li:hover a {
  color: #4479d9 !important;
  background: none !important;
}
.cid-uWhv2TrzJc h4 {
  padding-bottom: 2rem;
}
.cid-uWhv2TrzJc .mbr-title {
  color: #000000;
}
.cid-uWhv2TrzJc .mbr-text,
.cid-uWhv2TrzJc .mbr-section-btn {
  color: #666666;
}
.cid-uWhv2TrzJc .mbr-section-title {
  color: #000000;
}
.cid-uWhv2TrzJc .mbr-text {
  color: #000000;
}
.cid-uWhv2TrzJc .text {
  color: #000000;
}
.cid-uWhv2UhPug {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv2UhPug .item-subtitle {
  color: #000000;
}
.cid-uWhv2UhPug .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWhv2UhPug .item:hover img {
  transform: scale(1.05);
}
.cid-uWhv2UhPug .item-img {
  overflow: hidden;
}
.cid-uWhv2UhPug img,
.cid-uWhv2UhPug .item-img {
  width: 100%;
  transition: all 1s;
}
.cid-uWhv2UhPug .item:focus,
.cid-uWhv2UhPug span:focus {
  outline: none;
}
.cid-uWhv2UhPug .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uWhv2UhPug .item-content {
  padding-top: 2rem;
}
.cid-uWhv2UhPug .mbr-section-title {
  color: #232323;
}
.cid-uWhv2UhPug .item-title {
  color: #666666;
}
.cid-uWhv2UhPug .mbr-section-subtitle {
  text-align: left;
}
.cid-uWhv2W3Ro3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWhv2W3Ro3 .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uWhv2W3Ro3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWhv2W3Ro3 img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uWhv2W3Ro3 img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uWhv2W3Ro3 img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uWhv2W3Ro3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uWhv2W3Ro3 .mbr-section-subtitle {
  color: #fa4529;
}
.cid-uWhv2W3Ro3 .mbr-text {
  color: #000000;
}
.cid-uWhv2WMdpV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv2WMdpV .mbr-text {
  color: #767676;
}
.cid-uWhv2WMdpV .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uWhv2WMdpV .card-box {
    flex-direction: column;
  }
}
.cid-uWhv2WMdpV .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uWhv2WMdpV .mbr-section-subtitle {
  color: #767676;
}
.cid-uWhv2WMdpV .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uWhv2WMdpV .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uWhv2WMdpV .title .card-title {
  z-index: 1;
}
.cid-uWhv2WMdpV h4 {
  margin: 0;
}
.cid-uWhv2WMdpV .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uWhv2WMdpV .card {
    margin-bottom: 1.5rem;
  }
}
.cid-uWhv2WMdpV .card-title,
.cid-uWhv2WMdpV .card-img {
  color: #000000;
}
.cid-uWhv2WMdpV .num,
.cid-uWhv2WMdpV .line {
  color: #000000;
}
.cid-uWhv2XDknd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv2XDknd .img-wrapper {
  text-align: center;
}
.cid-uWhv2XDknd img {
  margin: auto;
  width: 100%;
  max-width: 140px;
  padding-bottom: 1.5rem;
}
.cid-uWhv2XDknd .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-uWhv2XDknd .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-uWhv2XDknd .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-uWhv2XDknd .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uWhv2XDknd .card-title {
  color: #666666;
}
.cid-uWhv2XDknd .text {
  color: #000000;
}
.cid-uWhv2YsgnM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv2YsgnM .card-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uWhv2YsgnM .card {
  display: flex;
  justify-content: center;
  border-radius: 0px;
  padding: 2rem 0;
}
.cid-uWhv2YsgnM .card-title a {
  font-weight: 700;
  transition: all 0.3s;
  color: #000000;
}
.cid-uWhv2YsgnM .card-title a:hover {
  color: #4479d9 !important;
  background: none !important;
}
.cid-uWhv2YsgnM img {
  width: 150px;
}
.cid-uWhv2YsgnM .item-border {
  border-bottom: 2px solid #000000;
  margin-bottom: 1rem;
  justify-content: space-between;
  margin: 0;
}
.cid-uWhv2YsgnM .item-border:hover .mbr-iconfont2 {
  color: #4479d9;
  transform: translateX(5px);
}
.cid-uWhv2YsgnM h5 {
  margin: 0;
}
.cid-uWhv2YsgnM .mbr-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uWhv2YsgnM .card-wrapper,
  .cid-uWhv2YsgnM .mbr-flex {
    flex-direction: column;
  }
  .cid-uWhv2YsgnM .card {
    padding: 1rem 0;
  }
}
.cid-uWhv2YsgnM .card-text {
  color: #666666;
}
.cid-uWhv2YsgnM .card-link {
  color: #666666;
}
.cid-uWhv2YsgnM .card-title,
.cid-uWhv2YsgnM .item-border {
  color: #121212;
}
.cid-uWhv2YsgnM .card-subtitle {
  color: #000000;
}
.cid-uWhv2YsgnM .main-title {
  color: #fa4529;
}
.cid-uWhv2ZWgOb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv2ZWgOb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhv2ZWgOb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhv2ZWgOb .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhv2ZWgOb .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhv2ZWgOb .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhv2ZWgOb .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhv2ZWgOb .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhv2ZWgOb .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhv2ZWgOb .mbr-section-title {
  color: #111111;
}
.cid-uWhv2ZWgOb .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhv2ZWgOb .mbr-text,
.cid-uWhv2ZWgOb .text-wrapper {
  color: #000000;
}
.cid-uWhv31Tr8j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhv31Tr8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhv31Tr8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhv31Tr8j .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWhv31Tr8j .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWhv31Tr8j .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-uWhv31Tr8j .panel-body,
.cid-uWhv31Tr8j .card-header {
  padding: 1rem 0;
}
.cid-uWhv31Tr8j .panel-title-edit {
  color: #000000;
}
.cid-uWhv357VJn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhv357VJn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhv357VJn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhv357VJn .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhv357VJn .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhv357VJn .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhv357VJn .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhv357VJn .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhv357VJn .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhv357VJn .mbr-section-title {
  color: #111111;
}
.cid-uWhv357VJn .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhv357VJn .mbr-text,
.cid-uWhv357VJn .text-wrapper {
  color: #000000;
}
.cid-uWhOAKa0tR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhOAKa0tR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhOAKa0tR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhOAKa0tR .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWhOAKa0tR .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWhOAKa0tR .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-uWhOAKa0tR .panel-body,
.cid-uWhOAKa0tR .card-header {
  padding: 1rem 0;
}
.cid-uWhOAKa0tR .panel-title-edit {
  color: #000000;
}
.cid-uWhv36oqVQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uWhv36oqVQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uWhv36oqVQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uWhv36oqVQ .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-uWhv36oqVQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uWhv36oqVQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uWhv37XZ8w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uWhv37XZ8w .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uWhv37XZ8w .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uWhv37XZ8w .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uWhv37XZ8w .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uWhv37XZ8w a {
  background-image: none !important;
}
.cid-uWhv37XZ8w .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uWhv37XZ8w .container {
  padding: 5rem 1rem;
}
.cid-uWhv37XZ8w p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uWhv37XZ8w p {
    text-align: center !important;
  }
}
.cid-uWhv37XZ8w .media-container-row .mbr-text2,
.cid-uWhv37XZ8w .line {
  color: #232323;
  text-align: left;
}
.cid-uWhv3dLT4I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uWhv3dLT4I .media-container-row .mbr-text {
  color: #000000;
}
.cid-uWhvE9Nf2P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWhvE9Nf2P nav.navbar {
  position: fixed;
}
.cid-uWhvE9Nf2P .container,
.cid-uWhvE9Nf2P .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uWhvE9Nf2P .container,
  .cid-uWhvE9Nf2P .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uWhvE9Nf2P .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-uWhvE9Nf2P .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #ffffff !important;
}
.cid-uWhvE9Nf2P .dropdown-item:hover,
.cid-uWhvE9Nf2P .dropdown-item:focus {
  color: #4479d9 !important;
}
.cid-uWhvE9Nf2P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWhvE9Nf2P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWhvE9Nf2P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWhvE9Nf2P .nav-link {
  position: relative;
}
.cid-uWhvE9Nf2P .nav-link:hover {
  color: #ffffff !important;
}
.cid-uWhvE9Nf2P .nav-link:hover:before {
  opacity: 1;
}
.cid-uWhvE9Nf2P .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uWhvE9Nf2P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWhvE9Nf2P .container {
  display: flex;
  margin: auto;
}
.cid-uWhvE9Nf2P .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWhvE9Nf2P .nav-item:focus,
.cid-uWhvE9Nf2P .nav-link:focus {
  outline: none;
}
.cid-uWhvE9Nf2P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWhvE9Nf2P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWhvE9Nf2P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWhvE9Nf2P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWhvE9Nf2P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWhvE9Nf2P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWhvE9Nf2P .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #000000;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4479d9;
}
.cid-uWhvE9Nf2P .navbar.opened {
  transition: all 0.3s;
}
.cid-uWhvE9Nf2P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWhvE9Nf2P .navbar .navbar-logo img {
  width: auto;
}
.cid-uWhvE9Nf2P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWhvE9Nf2P .navbar.collapsed {
  justify-content: center;
}
.cid-uWhvE9Nf2P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWhvE9Nf2P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWhvE9Nf2P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWhvE9Nf2P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWhvE9Nf2P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWhvE9Nf2P .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-uWhvE9Nf2P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWhvE9Nf2P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWhvE9Nf2P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWhvE9Nf2P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWhvE9Nf2P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWhvE9Nf2P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWhvE9Nf2P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWhvE9Nf2P .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-uWhvE9Nf2P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWhvE9Nf2P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWhvE9Nf2P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWhvE9Nf2P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWhvE9Nf2P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWhvE9Nf2P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWhvE9Nf2P .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWhvE9Nf2P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWhvE9Nf2P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWhvE9Nf2P .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-uWhvE9Nf2P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWhvE9Nf2P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWhvE9Nf2P .dropdown-item.active,
.cid-uWhvE9Nf2P .dropdown-item:active {
  background-color: transparent;
}
.cid-uWhvE9Nf2P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWhvE9Nf2P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWhvE9Nf2P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWhvE9Nf2P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4479d9;
}
.cid-uWhvE9Nf2P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWhvE9Nf2P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWhvE9Nf2P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWhvE9Nf2P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWhvE9Nf2P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWhvE9Nf2P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWhvE9Nf2P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWhvE9Nf2P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhvE9Nf2P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhvE9Nf2P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWhvE9Nf2P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhvE9Nf2P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWhvE9Nf2P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWhvE9Nf2P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhvE9Nf2P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWhvE9Nf2P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWhvE9Nf2P .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-uWhvE9Nf2P .navbar {
    height: 70px;
  }
  .cid-uWhvE9Nf2P .navbar.opened {
    height: auto;
  }
  .cid-uWhvE9Nf2P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWhvE9Nf2P .icons-menu {
    padding-right: 0;
  }
  .cid-uWhvE9Nf2P .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uWhvEb5Nzu {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/smallest-invisible-hearing-aid.png-1521x688.png");
}
.cid-uWhvEb5Nzu .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uWhvEb5Nzu .mbr-section-title a {
  font-weight: 600;
}
.cid-uWhvEb5Nzu .mbr-section-title a:hover {
  background: none !important;
}
.cid-uWhvEb5Nzu .mbr-text,
.cid-uWhvEb5Nzu .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uWhvEbC6nS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEbC6nS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhvEbC6nS .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-uWhvEbC6nS .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uWhvEbC6nS .container {
    padding: 0 12px;
  }
}
.cid-uWhvEbC6nS .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uWhvEbC6nS .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uWhvEbC6nS .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uWhvEbC6nS .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4479d9;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uWhvEbC6nS .mbr-section-title {
  color: #222222;
}
.cid-uWhvEc8zlS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEc8zlS .mbr-text {
  color: #000000;
}
.cid-uWhvEc8zlS .list {
  color: #666666;
}
.cid-uWhvEc8zlS ul {
  list-style-position: inside;
  padding: 0;
}
.cid-uWhvEc8zlS li {
  padding-bottom: 0.5rem;
}
.cid-uWhvEcGzyU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhvEcGzyU ul {
  margin: 0;
  list-style: none;
  padding-left: 0rem;
}
.cid-uWhvEcGzyU ul li {
  transition: all 0.3s;
  padding-bottom: 0.5rem;
}
.cid-uWhvEcGzyU ul li:hover a {
  color: #4479d9 !important;
  background: none !important;
}
.cid-uWhvEcGzyU h4 {
  padding-bottom: 2rem;
}
.cid-uWhvEcGzyU .mbr-title {
  color: #000000;
}
.cid-uWhvEcGzyU .mbr-text,
.cid-uWhvEcGzyU .mbr-section-btn {
  color: #666666;
}
.cid-uWhvEcGzyU .mbr-section-title {
  color: #000000;
}
.cid-uWhvEcGzyU .mbr-text {
  color: #000000;
}
.cid-uWhvEcGzyU .text {
  color: #000000;
}
.cid-uWhvEdFins {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEdFins .item-subtitle {
  color: #000000;
}
.cid-uWhvEdFins .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWhvEdFins .item:hover img {
  transform: scale(1.05);
}
.cid-uWhvEdFins .item-img {
  overflow: hidden;
}
.cid-uWhvEdFins img,
.cid-uWhvEdFins .item-img {
  width: 100%;
  transition: all 1s;
}
.cid-uWhvEdFins .item:focus,
.cid-uWhvEdFins span:focus {
  outline: none;
}
.cid-uWhvEdFins .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uWhvEdFins .item-content {
  padding-top: 2rem;
}
.cid-uWhvEdFins .mbr-section-title {
  color: #232323;
}
.cid-uWhvEdFins .item-title {
  color: #666666;
}
.cid-uWhvEdFins .mbr-section-subtitle {
  text-align: left;
}
.cid-uWhvEeOz0u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWhvEeOz0u .text-wrapper {
  padding: 2rem;
  max-width: 650px;
}
@media (max-width: 991px) {
  .cid-uWhvEeOz0u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWhvEeOz0u img {
  width: 130%;
}
@media (max-width: 1400px) {
  .cid-uWhvEeOz0u img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uWhvEeOz0u img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-uWhvEeOz0u .text-wrapper {
    padding: 2rem;
  }
}
.cid-uWhvEeOz0u .mbr-section-subtitle {
  color: #fa4529;
}
.cid-uWhvEeOz0u .mbr-text {
  color: #000000;
}
.cid-uWhvEfofiB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEfofiB .mbr-text {
  color: #767676;
}
.cid-uWhvEfofiB .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uWhvEfofiB .card-box {
    flex-direction: column;
  }
}
.cid-uWhvEfofiB .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uWhvEfofiB .mbr-section-subtitle {
  color: #767676;
}
.cid-uWhvEfofiB .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uWhvEfofiB .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-uWhvEfofiB .title .card-title {
  z-index: 1;
}
.cid-uWhvEfofiB h4 {
  margin: 0;
}
.cid-uWhvEfofiB .num {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uWhvEfofiB .card {
    margin-bottom: 1.5rem;
  }
}
.cid-uWhvEfofiB .card-title,
.cid-uWhvEfofiB .card-img {
  color: #000000;
}
.cid-uWhvEfofiB .num,
.cid-uWhvEfofiB .line {
  color: #000000;
}
.cid-uWhvEgcIAj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEgcIAj .img-wrapper {
  text-align: center;
}
.cid-uWhvEgcIAj img {
  margin: auto;
  width: 100%;
  max-width: 140px;
  padding-bottom: 1.5rem;
}
.cid-uWhvEgcIAj .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-uWhvEgcIAj .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-uWhvEgcIAj .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-uWhvEgcIAj .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uWhvEgcIAj .card-title {
  color: #666666;
}
.cid-uWhvEgcIAj .text {
  color: #000000;
}
.cid-uWhvEgW5Nv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEgW5Nv .card-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-uWhvEgW5Nv .card {
  display: flex;
  justify-content: center;
  border-radius: 0px;
  padding: 2rem 0;
}
.cid-uWhvEgW5Nv .card-title a {
  font-weight: 700;
  transition: all 0.3s;
  color: #000000;
}
.cid-uWhvEgW5Nv .card-title a:hover {
  color: #4479d9 !important;
  background: none !important;
}
.cid-uWhvEgW5Nv img {
  width: 150px;
}
.cid-uWhvEgW5Nv .item-border {
  border-bottom: 2px solid #000000;
  margin-bottom: 1rem;
  justify-content: space-between;
  margin: 0;
}
.cid-uWhvEgW5Nv .item-border:hover .mbr-iconfont2 {
  color: #4479d9;
  transform: translateX(5px);
}
.cid-uWhvEgW5Nv h5 {
  margin: 0;
}
.cid-uWhvEgW5Nv .mbr-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uWhvEgW5Nv .card-wrapper,
  .cid-uWhvEgW5Nv .mbr-flex {
    flex-direction: column;
  }
  .cid-uWhvEgW5Nv .card {
    padding: 1rem 0;
  }
}
.cid-uWhvEgW5Nv .card-text {
  color: #666666;
}
.cid-uWhvEgW5Nv .card-link {
  color: #666666;
}
.cid-uWhvEgW5Nv .card-title,
.cid-uWhvEgW5Nv .item-border {
  color: #121212;
}
.cid-uWhvEgW5Nv .card-subtitle {
  color: #000000;
}
.cid-uWhvEgW5Nv .main-title {
  color: #fa4529;
}
.cid-uWhvEl5AEs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEl5AEs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhvEl5AEs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhvEl5AEs .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhvEl5AEs .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhvEl5AEs .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhvEl5AEs .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhvEl5AEs .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhvEl5AEs .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhvEl5AEs .mbr-section-title {
  color: #111111;
}
.cid-uWhvEl5AEs .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhvEl5AEs .mbr-text,
.cid-uWhvEl5AEs .text-wrapper {
  color: #000000;
}
.cid-uWhvElTlwM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhvElTlwM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhvElTlwM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhvElTlwM .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWhvElTlwM .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWhvElTlwM .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-uWhvElTlwM .panel-body,
.cid-uWhvElTlwM .card-header {
  padding: 1rem 0;
}
.cid-uWhvElTlwM .panel-title-edit {
  color: #000000;
}
.cid-uWhvEnmR7r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWhvEnmR7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhvEnmR7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhvEnmR7r .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uWhvEnmR7r .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWhvEnmR7r .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWhvEnmR7r .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uWhvEnmR7r .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uWhvEnmR7r .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uWhvEnmR7r .mbr-section-title {
  color: #111111;
}
.cid-uWhvEnmR7r .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uWhvEnmR7r .mbr-text,
.cid-uWhvEnmR7r .text-wrapper {
  color: #000000;
}
.cid-uWhOVqXmoW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uWhOVqXmoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhOVqXmoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhOVqXmoW .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWhOVqXmoW .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWhOVqXmoW .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #4479d9;
}
.cid-uWhOVqXmoW .panel-body,
.cid-uWhOVqXmoW .card-header {
  padding: 1rem 0;
}
.cid-uWhOVqXmoW .panel-title-edit {
  color: #000000;
}
.cid-uWhvEoCoic {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uWhvEoCoic .google-map {
  height: 30rem;
  position: relative;
}
.cid-uWhvEoCoic .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uWhvEoCoic .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-uWhvEoCoic .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uWhvEoCoic .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uWhvErJBrz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uWhvErJBrz .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uWhvErJBrz .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uWhvErJBrz .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uWhvErJBrz .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uWhvErJBrz a {
  background-image: none !important;
}
.cid-uWhvErJBrz .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uWhvErJBrz .container {
  padding: 5rem 1rem;
}
.cid-uWhvErJBrz p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uWhvErJBrz p {
    text-align: center !important;
  }
}
.cid-uWhvErJBrz .media-container-row .mbr-text2,
.cid-uWhvErJBrz .line {
  color: #232323;
  text-align: left;
}
.cid-uWhvEvZf8U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4479d9;
  overflow: hidden;
}
.cid-uWhvEvZf8U .media-container-row .mbr-text {
  color: #000000;
}
