body {
  font-family: Bellota Text;
}
.display-1 {
  font-family: 'Bellota Text', cursive;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Bellota Text', cursive;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Bellota Text', cursive;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Bellota Text', cursive;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Bellota Text', cursive;
  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: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: #2299aa !important;
}
.bg-success {
  background-color: #35b8fc !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #6c758f !important;
}
.bg-danger {
  background-color: #36187d !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2299aa !important;
  border-color: #2299aa !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #19737f !important;
  border-color: #19737f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #19737f !important;
  border-color: #19737f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ea2396 !important;
  border-color: #ea2396 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c7137b !important;
  border-color: #c7137b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c7137b !important;
  border-color: #c7137b !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #19a2e8 !important;
  border-color: #19a2e8 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #19a2e8 !important;
  border-color: #19a2e8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #35b8fc !important;
  border-color: #35b8fc !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #04a6fa !important;
  border-color: #04a6fa !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #04a6fa !important;
  border-color: #04a6fa !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #6c758f !important;
  border-color: #6c758f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #565d72 !important;
  border-color: #565d72 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #565d72 !important;
  border-color: #565d72 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #36187d !important;
  border-color: #36187d !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #241052 !important;
  border-color: #241052 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241052 !important;
  border-color: #241052 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2299aa;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #145862 !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: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea2396;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a61067 !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: #ea2396 !important;
  border-color: #ea2396 !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: #35b8fc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #038fd7 !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: #35b8fc !important;
  border-color: #35b8fc !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6c758f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #474d5e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #6c758f !important;
  border-color: #6c758f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #36187d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #170a34 !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: #36187d !important;
  border-color: #36187d !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: #2299aa !important;
}
.text-secondary {
  color: #ea2396 !important;
}
.text-success {
  color: #35b8fc !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #6c758f !important;
}
.text-danger {
  color: #36187d !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #114c55 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #980f5e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0385c8 !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: #404555 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #110827 !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):hover {
  text-decoration: underline;
}
.nav-tabs .nav-link.active {
  color: #2299aa;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #6c758f;
}
.alert-danger {
  background-color: #36187d;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2299aa;
  border-color: #2299aa;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #2299aa;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6ad2e1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #feffff;
}
.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: #b4b9c6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #6a3bd9;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Bellota Text', cursive;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #2299aa !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Bellota Text', cursive;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #2299aa;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2299aa;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2299aa;
}
.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: #2299aa;
  border-bottom-color: #2299aa;
}
.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: #2299aa !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: #ea2396 !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='%232299aa' %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-uSTpL1Kkb1 .navbar-dropdown {
  position: relative !important;
}
.cid-uSTpL1Kkb1 .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uSTpL1Kkb1 .container {
    padding: 0 ;
  }
}
.cid-uSTpL1Kkb1 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-uSTpL1Kkb1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSTpL1Kkb1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSTpL1Kkb1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSTpL1Kkb1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSTpL1Kkb1 .navbar.collapsed {
  justify-content: center;
}
.cid-uSTpL1Kkb1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSTpL1Kkb1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSTpL1Kkb1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSTpL1Kkb1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSTpL1Kkb1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSTpL1Kkb1 .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-uSTpL1Kkb1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSTpL1Kkb1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSTpL1Kkb1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSTpL1Kkb1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSTpL1Kkb1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSTpL1Kkb1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSTpL1Kkb1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSTpL1Kkb1 .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-uSTpL1Kkb1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSTpL1Kkb1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSTpL1Kkb1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSTpL1Kkb1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSTpL1Kkb1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSTpL1Kkb1 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-uSTpL1Kkb1 .navbar.navbar-short {
  min-height: 110px;
}
.cid-uSTpL1Kkb1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSTpL1Kkb1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSTpL1Kkb1 .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-uSTpL1Kkb1 .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-uSTpL1Kkb1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-uSTpL1Kkb1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSTpL1Kkb1 .dropdown-item:hover,
.cid-uSTpL1Kkb1 .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-uSTpL1Kkb1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSTpL1Kkb1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSTpL1Kkb1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSTpL1Kkb1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSTpL1Kkb1 .iconfont-wrapper {
  color: #0196e3 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSTpL1Kkb1 .dropdown-menu,
.cid-uSTpL1Kkb1 .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSTpL1Kkb1 .nav-item:focus,
.cid-uSTpL1Kkb1 .nav-link:focus {
  outline: none;
}
.cid-uSTpL1Kkb1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSTpL1Kkb1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSTpL1Kkb1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSTpL1Kkb1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSTpL1Kkb1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSTpL1Kkb1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSTpL1Kkb1 .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-uSTpL1Kkb1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSTpL1Kkb1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSTpL1Kkb1 .dropdown-item.active,
.cid-uSTpL1Kkb1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSTpL1Kkb1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSTpL1Kkb1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSTpL1Kkb1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSTpL1Kkb1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSTpL1Kkb1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSTpL1Kkb1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSTpL1Kkb1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSTpL1Kkb1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSTpL1Kkb1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSTpL1Kkb1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36187d;
}
.cid-uSTpL1Kkb1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSTpL1Kkb1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTpL1Kkb1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTpL1Kkb1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSTpL1Kkb1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTpL1Kkb1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSTpL1Kkb1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSTpL1Kkb1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTpL1Kkb1 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSTpL1Kkb1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSTpL1Kkb1 .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-uSTpL1Kkb1 .navbar {
    height: 70px;
  }
  .cid-uSTpL1Kkb1 .navbar.opened {
    height: auto;
  }
  .cid-uSTpL1Kkb1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSTpL1Kkb1 .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSTpL1Kkb1 .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-uSTpLfwp3E {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/screenshot-395-1074x670.png");
}
.cid-uSTpLfwp3E .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uSTpLfwp3E .mbr-text,
.cid-uSTpLfwp3E .mbr-section-btn {
  text-align: center;
  color: #f2f3f7;
}
.cid-uSTpLfwp3E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTpLfwp3E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTpMklU8N {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTpMklU8N img,
.cid-uSTpMklU8N .item-img {
  border-radius: 2rem;
  transition: all 0.3s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uSTpMklU8N .item:focus,
.cid-uSTpMklU8N span:focus {
  outline: none;
}
.cid-uSTpMklU8N .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSTpMklU8N .item-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 3rem;
  background: #f2f3f7;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.cid-uSTpMklU8N .item-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-uSTpMklU8N .item-wrapper {
    border-radius: 2rem;
  }
}
.cid-uSTpMklU8N .item-content {
  padding: 1.5rem 1rem;
}
@media (max-width: 767px) {
  .cid-uSTpMklU8N .item-content {
    padding: 1rem 0;
  }
}
.cid-uSTpMklU8N .mbr-section-title {
  color: #2299aa;
}
.cid-uSTpMklU8N .item-title {
  color: #2299aa;
}
.cid-uSTpMklU8N .item-subtitle {
  color: #bec2cf;
}
.cid-uSTpMklU8N .mbr-text,
.cid-uSTpMklU8N .mbr-section-btn {
  color: #6c758f;
}
.cid-uSTpMklU8N .mbr-link {
  color: #0196e3;
  display: block;
}
.cid-uSTpMuL6ey {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-uSTpMuL6ey .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSTpMuL6ey .row {
    flex-direction: column-reverse;
  }
  .cid-uSTpMuL6ey .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uSTpMuL6ey .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSTpMuL6ey .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uSTpMuL6ey .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-uSTpMuL6ey .card-title {
  color: #2299aa;
}
.cid-uSTpMuL6ey .mbr-text,
.cid-uSTpMuL6ey .mbr-section-btn {
  color: #6c758f;
}
.cid-uSTpMuL6ey .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTpMuL6ey .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTpO48HGY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTpO48HGY .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uSTpO48HGY .icon-box {
  background: #f2f3f7;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 1.5rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uSTpO48HGY .mbr-iconfont {
  font-size: 2rem;
  color: #2299aa;
}
@media (max-width: 991px) {
  .cid-uSTpO48HGY .card {
    margin-bottom: 2rem;
  }
  .cid-uSTpO48HGY .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSTpO48HGY .card-title,
.cid-uSTpO48HGY .card-box {
  color: #2299aa;
}
.cid-uSTpO48HGY .icon-title {
  color: #2299aa;
}
.cid-uSTpO48HGY .icon-text {
  color: #6c758f;
}
.cid-uSTpO48HGY .mbr-text,
.cid-uSTpO48HGY .mbr-section-btn {
  color: #6c758f;
}
.cid-uSTpO48HGY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTpO48HGY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTpTtitef {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-uSTpTtitef .image-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uSTpTtitef .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uSTpTtitef .col-lg-6 {
  padding: 0 2rem;
}
.cid-uSTpTtitef .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSTpTtitef .card-wrapper {
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 767px) {
  .cid-uSTpTtitef .card-wrapper {
    padding: 1rem 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uSTpTtitef .mbr-text {
  color: #6c758f;
}
.cid-uSTpTtitef .name {
  color: #2299aa;
}
.cid-uSTpTtitef .position {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-uSTpTtitef .d-flex {
    justify-content: center;
  }
}
.cid-uSTpTtitef .mbr-section-title {
  color: #2299aa;
}
.cid-uSTpTtitef .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTpTtitef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTq60ZzkJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uSTq60ZzkJ .image-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uSTq60ZzkJ .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uSTq60ZzkJ .col-lg-6 {
  padding: 0 2rem;
}
.cid-uSTq60ZzkJ .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSTq60ZzkJ .card-wrapper {
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
@media (max-width: 767px) {
  .cid-uSTq60ZzkJ .card-wrapper {
    padding: 1rem 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uSTq60ZzkJ .mbr-text {
  color: #6c758f;
}
.cid-uSTq60ZzkJ .name {
  color: #2299aa;
}
.cid-uSTq60ZzkJ .position {
  color: #6c758f;
}
@media (max-width: 767px) {
  .cid-uSTq60ZzkJ .d-flex {
    justify-content: center;
  }
}
.cid-uSTq60ZzkJ .mbr-section-title {
  color: #36187d;
}
.cid-uSTq60ZzkJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTq60ZzkJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTqaB1HFJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTqaB1HFJ .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #2299aa;
  margin-left: 1rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  padding: 1.5rem;
}
.cid-uSTqaB1HFJ .panel-group {
  border: none;
}
.cid-uSTqaB1HFJ .panel-collapse {
  padding: 0 2rem;
}
.cid-uSTqaB1HFJ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  padding: 2rem;
}
.cid-uSTqaB1HFJ .panel-body,
.cid-uSTqaB1HFJ .card-header {
  padding: 1rem 0;
}
.cid-uSTqaB1HFJ .panel-title-edit {
  color: #232323;
}
.cid-uSTqaB1HFJ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
}
.cid-uSTqaB1HFJ .card {
  overflow: visible;
}
.cid-uSTqaB1HFJ .panel-text {
  color: #6c758f;
}
.cid-uSTqaB1HFJ H3 {
  color: #2299aa;
}
.cid-uSTqaB1HFJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTqaB1HFJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTqc3xQzP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTqc3xQzP .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #2299aa;
  margin-bottom: 1.5rem;
}
.cid-uSTqc3xQzP .col-lg-4,
.cid-uSTqc3xQzP .col-12 {
  padding: 0 2rem;
}
.cid-uSTqc3xQzP .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSTqc3xQzP .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uSTqc3xQzP .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uSTqc3xQzP .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uSTqc3xQzP .card-title,
.cid-uSTqc3xQzP .iconfont-wrapper {
  color: #2299aa;
  text-align: center;
}
.cid-uSTqc3xQzP .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-uSTqc3xQzP .mbr-section-subtitle {
  color: #6c758f;
}
.cid-uSTqc3xQzP .mbr-section-title {
  color: #2299aa;
}
.cid-uSTqc3xQzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTqc3xQzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTqi36l22 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uSTqi36l22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTqi36l22 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTqi36l22 .card-wrapper {
  margin: 6px 0;
}
@media (max-width: 992px) {
  .cid-uSTqi36l22 .card-wrapper {
    margin: 3px 0;
  }
}
.cid-uSTqi36l22 .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uSTqi36l22 .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uSTqdA1j0y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uSTqdA1j0y .list {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
}
.cid-uSTqdA1j0y .list .link:not(:last-child) {
  margin-right: 20px;
}
.cid-uSTqdA1j0y .copyright {
  margin-top: 20px;
}
.cid-uSTqdA1j0y .mbr-text {
  color: #000000;
}
.cid-uSTudgSgqN .navbar-dropdown {
  position: relative !important;
}
.cid-uSTudgSgqN .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uSTudgSgqN .container {
    padding: 0 ;
  }
}
.cid-uSTudgSgqN .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-uSTudgSgqN .navbar.opened {
  transition: all 0.3s;
}
.cid-uSTudgSgqN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSTudgSgqN .navbar .navbar-logo img {
  width: auto;
}
.cid-uSTudgSgqN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSTudgSgqN .navbar.collapsed {
  justify-content: center;
}
.cid-uSTudgSgqN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSTudgSgqN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSTudgSgqN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSTudgSgqN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSTudgSgqN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSTudgSgqN .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-uSTudgSgqN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSTudgSgqN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSTudgSgqN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSTudgSgqN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSTudgSgqN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSTudgSgqN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSTudgSgqN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSTudgSgqN .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-uSTudgSgqN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSTudgSgqN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSTudgSgqN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSTudgSgqN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSTudgSgqN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSTudgSgqN .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-uSTudgSgqN .navbar.navbar-short {
  min-height: 110px;
}
.cid-uSTudgSgqN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSTudgSgqN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSTudgSgqN .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-uSTudgSgqN .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-uSTudgSgqN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-uSTudgSgqN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSTudgSgqN .dropdown-item:hover,
.cid-uSTudgSgqN .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-uSTudgSgqN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSTudgSgqN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSTudgSgqN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSTudgSgqN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSTudgSgqN .iconfont-wrapper {
  color: #0196e3 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSTudgSgqN .dropdown-menu,
.cid-uSTudgSgqN .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSTudgSgqN .nav-item:focus,
.cid-uSTudgSgqN .nav-link:focus {
  outline: none;
}
.cid-uSTudgSgqN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSTudgSgqN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSTudgSgqN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSTudgSgqN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSTudgSgqN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSTudgSgqN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSTudgSgqN .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-uSTudgSgqN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSTudgSgqN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSTudgSgqN .dropdown-item.active,
.cid-uSTudgSgqN .dropdown-item:active {
  background-color: transparent;
}
.cid-uSTudgSgqN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSTudgSgqN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSTudgSgqN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSTudgSgqN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSTudgSgqN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSTudgSgqN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSTudgSgqN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSTudgSgqN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSTudgSgqN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSTudgSgqN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36187d;
}
.cid-uSTudgSgqN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSTudgSgqN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTudgSgqN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTudgSgqN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSTudgSgqN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTudgSgqN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSTudgSgqN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSTudgSgqN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTudgSgqN .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSTudgSgqN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSTudgSgqN .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-uSTudgSgqN .navbar {
    height: 70px;
  }
  .cid-uSTudgSgqN .navbar.opened {
    height: auto;
  }
  .cid-uSTudgSgqN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSTudgSgqN .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSTudgSgqN .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-uSTudiZDoA {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-uSTudiZDoA .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSTudiZDoA .row {
    flex-direction: column-reverse;
  }
  .cid-uSTudiZDoA .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uSTudiZDoA .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSTudiZDoA .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uSTudiZDoA .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-uSTudiZDoA .card-title {
  color: #2299aa;
}
.cid-uSTudiZDoA .mbr-text,
.cid-uSTudiZDoA .mbr-section-btn {
  color: #6c758f;
}
.cid-uSTudiZDoA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTudiZDoA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTudlGWIN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTudlGWIN .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #2299aa;
  margin-bottom: 1.5rem;
}
.cid-uSTudlGWIN .col-lg-4,
.cid-uSTudlGWIN .col-12 {
  padding: 0 2rem;
}
.cid-uSTudlGWIN .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSTudlGWIN .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uSTudlGWIN .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uSTudlGWIN .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uSTudlGWIN .card-title,
.cid-uSTudlGWIN .iconfont-wrapper {
  color: #2299aa;
  text-align: center;
}
.cid-uSTudlGWIN .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-uSTudlGWIN .mbr-section-subtitle {
  color: #6c758f;
}
.cid-uSTudlGWIN .mbr-section-title {
  color: #2299aa;
}
.cid-uSTudlGWIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTudlGWIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTudmdEBs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uSTudmdEBs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTudmdEBs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTudmdEBs .card-wrapper {
  margin: 6px 0;
}
@media (max-width: 992px) {
  .cid-uSTudmdEBs .card-wrapper {
    margin: 3px 0;
  }
}
.cid-uSTudmdEBs .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uSTudmdEBs .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uSTudmIuMP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uSTudmIuMP .list {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
}
.cid-uSTudmIuMP .list .link:not(:last-child) {
  margin-right: 20px;
}
.cid-uSTudmIuMP .copyright {
  margin-top: 20px;
}
.cid-uSTudmIuMP .mbr-text {
  color: #000000;
}
.cid-uSTuu9Elw9 .navbar-dropdown {
  position: relative !important;
}
.cid-uSTuu9Elw9 .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uSTuu9Elw9 .container {
    padding: 0 ;
  }
}
.cid-uSTuu9Elw9 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-uSTuu9Elw9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSTuu9Elw9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSTuu9Elw9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSTuu9Elw9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSTuu9Elw9 .navbar.collapsed {
  justify-content: center;
}
.cid-uSTuu9Elw9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSTuu9Elw9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSTuu9Elw9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSTuu9Elw9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSTuu9Elw9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSTuu9Elw9 .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-uSTuu9Elw9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSTuu9Elw9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSTuu9Elw9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSTuu9Elw9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSTuu9Elw9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSTuu9Elw9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSTuu9Elw9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSTuu9Elw9 .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-uSTuu9Elw9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSTuu9Elw9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSTuu9Elw9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSTuu9Elw9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSTuu9Elw9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSTuu9Elw9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-uSTuu9Elw9 .navbar.navbar-short {
  min-height: 110px;
}
.cid-uSTuu9Elw9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSTuu9Elw9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSTuu9Elw9 .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-uSTuu9Elw9 .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-uSTuu9Elw9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-uSTuu9Elw9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSTuu9Elw9 .dropdown-item:hover,
.cid-uSTuu9Elw9 .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-uSTuu9Elw9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSTuu9Elw9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSTuu9Elw9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSTuu9Elw9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSTuu9Elw9 .iconfont-wrapper {
  color: #0196e3 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSTuu9Elw9 .dropdown-menu,
.cid-uSTuu9Elw9 .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSTuu9Elw9 .nav-item:focus,
.cid-uSTuu9Elw9 .nav-link:focus {
  outline: none;
}
.cid-uSTuu9Elw9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSTuu9Elw9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSTuu9Elw9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSTuu9Elw9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSTuu9Elw9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSTuu9Elw9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSTuu9Elw9 .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-uSTuu9Elw9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSTuu9Elw9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSTuu9Elw9 .dropdown-item.active,
.cid-uSTuu9Elw9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSTuu9Elw9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSTuu9Elw9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSTuu9Elw9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSTuu9Elw9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSTuu9Elw9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSTuu9Elw9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSTuu9Elw9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSTuu9Elw9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSTuu9Elw9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSTuu9Elw9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36187d;
}
.cid-uSTuu9Elw9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSTuu9Elw9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuu9Elw9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuu9Elw9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSTuu9Elw9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuu9Elw9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSTuu9Elw9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSTuu9Elw9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuu9Elw9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSTuu9Elw9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSTuu9Elw9 .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-uSTuu9Elw9 .navbar {
    height: 70px;
  }
  .cid-uSTuu9Elw9 .navbar.opened {
    height: auto;
  }
  .cid-uSTuu9Elw9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSTuu9Elw9 .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSTuu9Elw9 .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-uSTuuaxVsZ {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-uSTuuaxVsZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSTuuaxVsZ .row {
    flex-direction: column-reverse;
  }
  .cid-uSTuuaxVsZ .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uSTuuaxVsZ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSTuuaxVsZ .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uSTuuaxVsZ .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-uSTuuaxVsZ .card-title {
  color: #2299aa;
}
.cid-uSTuuaxVsZ .mbr-text,
.cid-uSTuuaxVsZ .mbr-section-btn {
  color: #6c758f;
}
.cid-uSTuuaxVsZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuuaxVsZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuub08dZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTuub08dZ .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #2299aa;
  margin-bottom: 1.5rem;
}
.cid-uSTuub08dZ .col-lg-4,
.cid-uSTuub08dZ .col-12 {
  padding: 0 2rem;
}
.cid-uSTuub08dZ .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSTuub08dZ .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uSTuub08dZ .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uSTuub08dZ .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uSTuub08dZ .card-title,
.cid-uSTuub08dZ .iconfont-wrapper {
  color: #2299aa;
  text-align: center;
}
.cid-uSTuub08dZ .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-uSTuub08dZ .mbr-section-subtitle {
  color: #6c758f;
}
.cid-uSTuub08dZ .mbr-section-title {
  color: #2299aa;
}
.cid-uSTuub08dZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuub08dZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuubzPzB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uSTuubzPzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuubzPzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuubzPzB .card-wrapper {
  margin: 6px 0;
}
@media (max-width: 992px) {
  .cid-uSTuubzPzB .card-wrapper {
    margin: 3px 0;
  }
}
.cid-uSTuubzPzB .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uSTuubzPzB .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uSTuubXzic {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uSTuubXzic .list {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
}
.cid-uSTuubXzic .list .link:not(:last-child) {
  margin-right: 20px;
}
.cid-uSTuubXzic .copyright {
  margin-top: 20px;
}
.cid-uSTuubXzic .mbr-text {
  color: #000000;
}
.cid-uSTuBYWGTn .navbar-dropdown {
  position: relative !important;
}
.cid-uSTuBYWGTn .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uSTuBYWGTn .container {
    padding: 0 ;
  }
}
.cid-uSTuBYWGTn .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-uSTuBYWGTn .navbar.opened {
  transition: all 0.3s;
}
.cid-uSTuBYWGTn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSTuBYWGTn .navbar .navbar-logo img {
  width: auto;
}
.cid-uSTuBYWGTn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSTuBYWGTn .navbar.collapsed {
  justify-content: center;
}
.cid-uSTuBYWGTn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSTuBYWGTn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSTuBYWGTn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSTuBYWGTn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSTuBYWGTn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSTuBYWGTn .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-uSTuBYWGTn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSTuBYWGTn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSTuBYWGTn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSTuBYWGTn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSTuBYWGTn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSTuBYWGTn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSTuBYWGTn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSTuBYWGTn .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-uSTuBYWGTn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSTuBYWGTn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSTuBYWGTn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSTuBYWGTn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSTuBYWGTn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSTuBYWGTn .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-uSTuBYWGTn .navbar.navbar-short {
  min-height: 110px;
}
.cid-uSTuBYWGTn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSTuBYWGTn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSTuBYWGTn .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-uSTuBYWGTn .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-uSTuBYWGTn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-uSTuBYWGTn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSTuBYWGTn .dropdown-item:hover,
.cid-uSTuBYWGTn .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-uSTuBYWGTn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSTuBYWGTn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSTuBYWGTn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSTuBYWGTn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSTuBYWGTn .iconfont-wrapper {
  color: #0196e3 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSTuBYWGTn .dropdown-menu,
.cid-uSTuBYWGTn .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSTuBYWGTn .nav-item:focus,
.cid-uSTuBYWGTn .nav-link:focus {
  outline: none;
}
.cid-uSTuBYWGTn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSTuBYWGTn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSTuBYWGTn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSTuBYWGTn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSTuBYWGTn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSTuBYWGTn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSTuBYWGTn .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-uSTuBYWGTn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSTuBYWGTn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSTuBYWGTn .dropdown-item.active,
.cid-uSTuBYWGTn .dropdown-item:active {
  background-color: transparent;
}
.cid-uSTuBYWGTn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSTuBYWGTn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSTuBYWGTn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSTuBYWGTn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSTuBYWGTn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSTuBYWGTn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSTuBYWGTn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSTuBYWGTn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSTuBYWGTn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSTuBYWGTn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36187d;
}
.cid-uSTuBYWGTn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSTuBYWGTn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuBYWGTn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuBYWGTn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSTuBYWGTn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuBYWGTn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSTuBYWGTn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSTuBYWGTn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuBYWGTn .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSTuBYWGTn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSTuBYWGTn .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-uSTuBYWGTn .navbar {
    height: 70px;
  }
  .cid-uSTuBYWGTn .navbar.opened {
    height: auto;
  }
  .cid-uSTuBYWGTn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSTuBYWGTn .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSTuBYWGTn .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-uSTuBZEtbO {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-uSTuBZEtbO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSTuBZEtbO .row {
    flex-direction: column-reverse;
  }
  .cid-uSTuBZEtbO .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uSTuBZEtbO .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSTuBZEtbO .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uSTuBZEtbO .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-uSTuBZEtbO .card-title {
  color: #2299aa;
}
.cid-uSTuBZEtbO .mbr-text,
.cid-uSTuBZEtbO .mbr-section-btn {
  color: #6c758f;
}
.cid-uSTuBZEtbO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuBZEtbO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuC0anxr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTuC0anxr .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #2299aa;
  margin-bottom: 1.5rem;
}
.cid-uSTuC0anxr .col-lg-4,
.cid-uSTuC0anxr .col-12 {
  padding: 0 2rem;
}
.cid-uSTuC0anxr .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSTuC0anxr .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uSTuC0anxr .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uSTuC0anxr .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uSTuC0anxr .card-title,
.cid-uSTuC0anxr .iconfont-wrapper {
  color: #2299aa;
  text-align: center;
}
.cid-uSTuC0anxr .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-uSTuC0anxr .mbr-section-subtitle {
  color: #6c758f;
}
.cid-uSTuC0anxr .mbr-section-title {
  color: #2299aa;
}
.cid-uSTuC0anxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuC0anxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuC0GHZw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uSTuC0GHZw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuC0GHZw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuC0GHZw .card-wrapper {
  margin: 6px 0;
}
@media (max-width: 992px) {
  .cid-uSTuC0GHZw .card-wrapper {
    margin: 3px 0;
  }
}
.cid-uSTuC0GHZw .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uSTuC0GHZw .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uSTuC16aGQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uSTuC16aGQ .list {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
}
.cid-uSTuC16aGQ .list .link:not(:last-child) {
  margin-right: 20px;
}
.cid-uSTuC16aGQ .copyright {
  margin-top: 20px;
}
.cid-uSTuC16aGQ .mbr-text {
  color: #000000;
}
.cid-uSTuM1yT7S .navbar-dropdown {
  position: relative !important;
}
.cid-uSTuM1yT7S .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uSTuM1yT7S .container {
    padding: 0 ;
  }
}
.cid-uSTuM1yT7S .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-uSTuM1yT7S .navbar.opened {
  transition: all 0.3s;
}
.cid-uSTuM1yT7S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSTuM1yT7S .navbar .navbar-logo img {
  width: auto;
}
.cid-uSTuM1yT7S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSTuM1yT7S .navbar.collapsed {
  justify-content: center;
}
.cid-uSTuM1yT7S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSTuM1yT7S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSTuM1yT7S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSTuM1yT7S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSTuM1yT7S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSTuM1yT7S .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-uSTuM1yT7S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSTuM1yT7S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSTuM1yT7S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSTuM1yT7S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSTuM1yT7S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSTuM1yT7S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSTuM1yT7S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSTuM1yT7S .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-uSTuM1yT7S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSTuM1yT7S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSTuM1yT7S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSTuM1yT7S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSTuM1yT7S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSTuM1yT7S .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-uSTuM1yT7S .navbar.navbar-short {
  min-height: 110px;
}
.cid-uSTuM1yT7S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSTuM1yT7S .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSTuM1yT7S .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-uSTuM1yT7S .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-uSTuM1yT7S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-uSTuM1yT7S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSTuM1yT7S .dropdown-item:hover,
.cid-uSTuM1yT7S .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-uSTuM1yT7S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSTuM1yT7S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSTuM1yT7S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSTuM1yT7S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSTuM1yT7S .iconfont-wrapper {
  color: #0196e3 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSTuM1yT7S .dropdown-menu,
.cid-uSTuM1yT7S .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSTuM1yT7S .nav-item:focus,
.cid-uSTuM1yT7S .nav-link:focus {
  outline: none;
}
.cid-uSTuM1yT7S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSTuM1yT7S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSTuM1yT7S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSTuM1yT7S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSTuM1yT7S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSTuM1yT7S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSTuM1yT7S .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-uSTuM1yT7S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSTuM1yT7S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSTuM1yT7S .dropdown-item.active,
.cid-uSTuM1yT7S .dropdown-item:active {
  background-color: transparent;
}
.cid-uSTuM1yT7S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSTuM1yT7S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSTuM1yT7S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSTuM1yT7S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSTuM1yT7S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSTuM1yT7S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSTuM1yT7S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSTuM1yT7S .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSTuM1yT7S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSTuM1yT7S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36187d;
}
.cid-uSTuM1yT7S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSTuM1yT7S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuM1yT7S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuM1yT7S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSTuM1yT7S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuM1yT7S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSTuM1yT7S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSTuM1yT7S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuM1yT7S .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSTuM1yT7S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSTuM1yT7S .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-uSTuM1yT7S .navbar {
    height: 70px;
  }
  .cid-uSTuM1yT7S .navbar.opened {
    height: auto;
  }
  .cid-uSTuM1yT7S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSTuM1yT7S .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSTuM1yT7S .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-uSTuM28ap6 {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #f2f3f7;
}
.cid-uSTuM28ap6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSTuM28ap6 .row {
    flex-direction: column-reverse;
  }
  .cid-uSTuM28ap6 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uSTuM28ap6 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSTuM28ap6 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uSTuM28ap6 .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-uSTuM28ap6 .card-title {
  color: #2299aa;
}
.cid-uSTuM28ap6 .mbr-text,
.cid-uSTuM28ap6 .mbr-section-btn {
  color: #6c758f;
}
.cid-uSTuM28ap6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuM28ap6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuM2vu8O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uSTuM2vu8O .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #2299aa;
  margin-bottom: 1.5rem;
}
.cid-uSTuM2vu8O .col-lg-4,
.cid-uSTuM2vu8O .col-12 {
  padding: 0 2rem;
}
.cid-uSTuM2vu8O .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uSTuM2vu8O .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uSTuM2vu8O .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uSTuM2vu8O .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uSTuM2vu8O .card-title,
.cid-uSTuM2vu8O .iconfont-wrapper {
  color: #2299aa;
  text-align: center;
}
.cid-uSTuM2vu8O .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-uSTuM2vu8O .mbr-section-subtitle {
  color: #6c758f;
}
.cid-uSTuM2vu8O .mbr-section-title {
  color: #2299aa;
}
.cid-uSTuM2vu8O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuM2vu8O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuM2ZXxJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uSTuM2ZXxJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTuM2ZXxJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTuM2ZXxJ .card-wrapper {
  margin: 6px 0;
}
@media (max-width: 992px) {
  .cid-uSTuM2ZXxJ .card-wrapper {
    margin: 3px 0;
  }
}
.cid-uSTuM2ZXxJ .card-wrapper .google-map iframe {
  height: 700px;
}
@media (max-width: 992px) {
  .cid-uSTuM2ZXxJ .card-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-uSTuM3m280 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uSTuM3m280 .list {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
}
.cid-uSTuM3m280 .list .link:not(:last-child) {
  margin-right: 20px;
}
.cid-uSTuM3m280 .copyright {
  margin-top: 20px;
}
.cid-uSTuM3m280 .mbr-text {
  color: #000000;
}
.cid-uSTv5RFjrW {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-uSTv5RFjrW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTv5RFjrW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTv5RFjrW .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uSTv5RFjrW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uSTv5RFjrW .container {
    padding: 0 24px;
  }
}
.cid-uSTv5RFjrW .row {
  justify-content: center;
}
.cid-uSTv5RFjrW .content-wrapper {
  border-radius: 40px;
  background-color: #f2f3f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uSTv5RFjrW .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uSTv5RFjrW .content-wrapper {
    padding: 32px;
  }
}
.cid-uSTv5RFjrW .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSTv5RFjrW .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uSTv5RFjrW .mbr-section-title {
  color: #2299aa;
}
.cid-uSTv5RFjrW .mbr-text {
  color: #262642;
}
.cid-uSTuZZZMN0 .navbar-dropdown {
  position: relative !important;
}
.cid-uSTuZZZMN0 .container {
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uSTuZZZMN0 .container {
    padding: 0 ;
  }
}
.cid-uSTuZZZMN0 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f2f3f7;
}
.cid-uSTuZZZMN0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSTuZZZMN0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSTuZZZMN0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSTuZZZMN0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSTuZZZMN0 .navbar.collapsed {
  justify-content: center;
}
.cid-uSTuZZZMN0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSTuZZZMN0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSTuZZZMN0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSTuZZZMN0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSTuZZZMN0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSTuZZZMN0 .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-uSTuZZZMN0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSTuZZZMN0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSTuZZZMN0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSTuZZZMN0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSTuZZZMN0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSTuZZZMN0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSTuZZZMN0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSTuZZZMN0 .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-uSTuZZZMN0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSTuZZZMN0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSTuZZZMN0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSTuZZZMN0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSTuZZZMN0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSTuZZZMN0 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.cid-uSTuZZZMN0 .navbar.navbar-short {
  min-height: 110px;
}
.cid-uSTuZZZMN0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSTuZZZMN0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSTuZZZMN0 .nav-link {
  font-weight: 700;
  position: relative;
}
.cid-uSTuZZZMN0 .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-uSTuZZZMN0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
}
.cid-uSTuZZZMN0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSTuZZZMN0 .dropdown-item:hover,
.cid-uSTuZZZMN0 .dropdown-item:focus {
  background: #2299aa !important;
  color: white !important;
}
.cid-uSTuZZZMN0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSTuZZZMN0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSTuZZZMN0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSTuZZZMN0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSTuZZZMN0 .iconfont-wrapper {
  color: #0196e3 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSTuZZZMN0 .dropdown-menu,
.cid-uSTuZZZMN0 .navbar.opened {
  background: #f2f3f7 !important;
}
.cid-uSTuZZZMN0 .nav-item:focus,
.cid-uSTuZZZMN0 .nav-link:focus {
  outline: none;
}
.cid-uSTuZZZMN0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSTuZZZMN0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSTuZZZMN0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSTuZZZMN0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSTuZZZMN0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSTuZZZMN0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSTuZZZMN0 .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-uSTuZZZMN0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSTuZZZMN0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSTuZZZMN0 .dropdown-item.active,
.cid-uSTuZZZMN0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSTuZZZMN0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSTuZZZMN0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSTuZZZMN0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSTuZZZMN0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f2f3f7;
}
.cid-uSTuZZZMN0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSTuZZZMN0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSTuZZZMN0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSTuZZZMN0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSTuZZZMN0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSTuZZZMN0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36187d;
}
.cid-uSTuZZZMN0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSTuZZZMN0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuZZZMN0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSTuZZZMN0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSTuZZZMN0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuZZZMN0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSTuZZZMN0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSTuZZZMN0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSTuZZZMN0 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uSTuZZZMN0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSTuZZZMN0 .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-uSTuZZZMN0 .navbar {
    height: 70px;
  }
  .cid-uSTuZZZMN0 .navbar.opened {
    height: auto;
  }
  .cid-uSTuZZZMN0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSTuZZZMN0 .icons-menu .mbr-iconfont {
  font-size: 1.5rem;
  padding: 1.5rem!important;
  margin: 0 0.3rem!important;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSTuZZZMN0 .icons-menu .mbr-iconfont:hover {
  background: #f8f9fb;
}
.cid-uSTv02sJ26 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f2f3f7;
}
.cid-uSTv02sJ26 .list {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
}
.cid-uSTv02sJ26 .list .link:not(:last-child) {
  margin-right: 20px;
}
.cid-uSTv02sJ26 .copyright {
  margin-top: 20px;
}
.cid-uSTv02sJ26 .mbr-text {
  color: #000000;
}
