body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.75rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #e43f3f !important;
}
.bg-success {
  background-color: #bed3f9 !important;
}
.bg-info {
  background-color: #e43f3f !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0c54a0 !important;
  border-color: #0c54a0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #062a4f !important;
  border-color: #062a4f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #062a4f !important;
  border-color: #062a4f !important;
}
.btn-info,
.btn-info:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bed3f9 !important;
  border-color: #bed3f9 !important;
  color: #1046a8 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #6f9df2 !important;
  border-color: #6f9df2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #1046a8 !important;
  background-color: #6f9df2 !important;
  border-color: #6f9df2 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0c54a0;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #062a4f !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: #0c54a0 !important;
  border-color: #0c54a0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bed3f9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6f9df2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #1046a8 !important;
  background-color: #bed3f9 !important;
  border-color: #bed3f9 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #0c54a0 !important;
}
.text-success {
  color: #bed3f9 !important;
}
.text-info {
  color: #e43f3f !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #052241 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6194f0 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a61717 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e43f3f;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !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: #0c54a0 !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='%23e43f3f' %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-tSutevibX6 {
  z-index: 1000;
  width: 100%;
}
.cid-tSutevibX6 nav.navbar {
  position: fixed;
}
.cid-tSutevibX6 .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-tSutevibX6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSutevibX6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSutevibX6 .dropdown-item:hover,
.cid-tSutevibX6 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tSutevibX6 .dropdown-item:hover span {
  color: white;
}
.cid-tSutevibX6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSutevibX6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSutevibX6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSutevibX6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSutevibX6 .nav-link {
  position: relative;
}
.cid-tSutevibX6 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSutevibX6 .container {
    flex-wrap: wrap;
  }
}
.cid-tSutevibX6 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSutevibX6 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSutevibX6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSutevibX6 .dropdown-menu,
.cid-tSutevibX6 .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tSutevibX6 .nav-item:focus,
.cid-tSutevibX6 .nav-link:focus {
  outline: none;
}
.cid-tSutevibX6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSutevibX6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSutevibX6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSutevibX6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSutevibX6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSutevibX6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSutevibX6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(190, 211, 249, 0.8);
}
.cid-tSutevibX6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tSutevibX6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSutevibX6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tSutevibX6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSutevibX6 .navbar.collapsed {
  justify-content: center;
}
.cid-tSutevibX6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSutevibX6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSutevibX6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-tSutevibX6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSutevibX6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSutevibX6 .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-tSutevibX6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSutevibX6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSutevibX6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSutevibX6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSutevibX6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSutevibX6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSutevibX6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSutevibX6 .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-tSutevibX6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSutevibX6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSutevibX6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSutevibX6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSutevibX6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSutevibX6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSutevibX6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSutevibX6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSutevibX6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSutevibX6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSutevibX6 .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-tSutevibX6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSutevibX6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSutevibX6 .dropdown-item.active,
.cid-tSutevibX6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tSutevibX6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSutevibX6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSutevibX6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSutevibX6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tSutevibX6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSutevibX6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSutevibX6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSutevibX6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSutevibX6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSutevibX6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSutevibX6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSutevibX6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSutevibX6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSutevibX6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSutevibX6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSutevibX6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSutevibX6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSutevibX6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSutevibX6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSutevibX6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSutevibX6 .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-tSutevibX6 .navbar {
    height: 70px;
  }
  .cid-tSutevibX6 .navbar.opened {
    height: auto;
  }
  .cid-tSutevibX6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSuCuXX54u {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/tsdk-areal-w-21-5.webp");
}
.cid-tSuCuXX54u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSuCuXX54u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSuCuXX54u .col {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .cid-tSuCuXX54u .col {
    width: 40%;
  }
}
.cid-tSuCuXX54u .card-wrapper {
  padding: 4rem;
  border-radius: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .cid-tSuCuXX54u .card-wrapper {
    padding: 1rem;
    border-radius: 1rem;
  }
}
.cid-tSuCuXX54u .card-wrapper h1,
.cid-tSuCuXX54u .card-wrapper h2,
.cid-tSuCuXX54u .card-wrapper p,
.cid-tSuCuXX54u .card-wrapper .mbr-section-btn {
  position: relative;
}
.cid-tSuCuXX54u .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0c54a0;
  opacity: 0.5;
}
.cid-tSuCuXX54u .mbr-section-title {
  color: #ffffff;
}
.cid-tSuCuXX54u .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tSuCuXX54u .mbr-text,
.cid-tSuCuXX54u .mbr-section-btn {
  color: #ffffff;
}
.cid-uFPatZEno1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-uFPatZEno1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFPatZEno1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 50px) {
  .cid-uFPatZEno1 .image-wrapper {
    margin-bottom: 0.5rem;
  }
}
.cid-uFPatZEno1 img {
  width: 40%;
}
@media (min-width: 50px) {
  .cid-uFPatZEno1 .text-wrapper {
    padding: 0.5rem;
  }
}
.cid-uFPatZEno1 .mbr-section-title DIV {
  text-align: right;
}
.cid-uFPatZEno1 .mbr-text {
  text-align: right;
}
.cid-uFPatZEno1 .mbr-section-title {
  text-align: left;
  color: #0c54a0;
}
.cid-tTdznsQjW0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0c54a0;
}
.cid-tTdznsQjW0 .stats-item {
  padding: 40px 10px;
  background-color: #0c54a0;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-tTdznsQjW0 .stats-item:first-child {
  border-radius: 0 0 0 0;
}
.cid-tTdznsQjW0 .stats-item:last-child {
  border-radius: 0 0 0 0;
}
.cid-tTdznsQjW0 .stats-item > span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tTdznsQjW0 .mbr-iconfont {
  font-size: 60px;
  align-self: center;
  margin-right: 20px;
}
.cid-tTdznsQjW0 .heading {
  color: #ffffff;
  font-weight: 400;
}
.cid-tTdznsQjW0 .heading.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.23;
}
.cid-tTdznsQjW0 .container {
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
}
.cid-tTdznsQjW0 .counter {
  text-align: left;
  color: #ffffff;
  font-weight: 900;
}
.cid-tTdznsQjW0 .counter.display-2 {
  letter-spacing: -0.5px;
  margin-bottom: 0;
  line-height: 1.15;
}
.cid-tTdznsQjW0 .mbr-card-title,
.cid-tTdznsQjW0 .mbr-iconfont {
  text-align: center;
  color: #ffffff;
  display: block;
}
@media (max-width: 768px) {
  .cid-tTdznsQjW0 .stats-item {
    -webkit-box-pack: start;
    justify-content: flex-start;
    padding: 30px 25px;
  }
  .cid-tTdznsQjW0 .stats-item:first-child {
    border-radius: 0;
  }
  .cid-tTdznsQjW0 .stats-item:last-child {
    border-radius: 0;
  }
}
.cid-tTdznsQjW0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTdznsQjW0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTdznsQjW0 .mbr-card-title,
.cid-tTdznsQjW0 .mbr-iconfont {
  text-align: left;
}
.cid-uHMJmY7joX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uHMJmY7joX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHMJmY7joX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHMJmY7joX .mbr-section-title {
  color: #ffffff;
}
.cid-uHMJmY7joX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uH7REMr3sg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-uH7REMr3sg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH7REMr3sg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uH7REMr3sg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uH7REMr3sg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uH7REMr3sg .text-wrapper {
    padding: 2rem;
  }
}
.cid-uH7REMr3sg .mbr-section-title {
  color: #0c54a0;
}
.cid-uH7REMr3sg .mbr-text {
  color: #0c54a0;
}
.cid-uSaeeFmIYu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #6592e6;
}
.cid-uSaeeFmIYu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSaeeFmIYu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSaeeFmIYu .item {
  padding-bottom: 2rem;
}
.cid-uSaeeFmIYu .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uSaeeFmIYu .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uSaeeFmIYu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uSaeeFmIYu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uSaeeFmIYu .carousel-control,
.cid-uSaeeFmIYu .close {
  background: #1b1b1b;
}
.cid-uSaeeFmIYu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uSaeeFmIYu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uSaeeFmIYu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uSaeeFmIYu .carousel-control-next span {
  margin-left: 5px;
}
.cid-uSaeeFmIYu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uSaeeFmIYu .close::before {
  content: '\e91a';
}
.cid-uSaeeFmIYu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uSaeeFmIYu .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSaeeFmIYu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSaeeFmIYu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSaeeFmIYu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSaeeFmIYu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uSaeeFmIYu .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSaeeFmIYu .carousel-indicators li.active,
.cid-uSaeeFmIYu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSaeeFmIYu .carousel-indicators li::after,
.cid-uSaeeFmIYu .carousel-indicators li::before {
  content: none;
}
.cid-uSaeeFmIYu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSaeeFmIYu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uSaeeFmIYu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uSaeeFmIYu .carousel-indicators {
    display: none;
  }
}
.cid-uSaeeFmIYu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSaeeFmIYu .carousel-inner > .active {
  display: block;
}
.cid-uSaeeFmIYu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSaeeFmIYu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSaeeFmIYu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uSaeeFmIYu .carousel-control,
  .cid-uSaeeFmIYu .carousel-indicators,
  .cid-uSaeeFmIYu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uSaeeFmIYu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uSaeeFmIYu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSaeeFmIYu .carousel-indicators .active,
.cid-uSaeeFmIYu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uSaeeFmIYu .carousel-indicators .active {
  background: #fff;
}
.cid-uSaeeFmIYu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uSaeeFmIYu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uSaeeFmIYu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uSaeeFmIYu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uSaeeFmIYu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uSaeeFmIYu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uSaeeFmIYu .carousel {
  width: 100%;
}
.cid-uSaeeFmIYu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uSaeeFmIYu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uSaeeFmIYu .modal.fade .modal-dialog,
.cid-uSaeeFmIYu .modal.in .modal-dialog {
  transform: none;
}
.cid-uSaeeFmIYu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uSaeeFmIYu H6 {
  text-align: center;
}
.cid-uSaeeFmIYu H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uSaeeFmIYu H4 {
  text-align: center;
  color: #ffffff;
}
.cid-uVD4A4ZHrE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-uVD4A4ZHrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVD4A4ZHrE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVD4A4ZHrE .item {
  padding-bottom: 2rem;
}
.cid-uVD4A4ZHrE .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uVD4A4ZHrE .item-wrapper img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cid-uVD4A4ZHrE .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uVD4A4ZHrE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uVD4A4ZHrE .carousel-control,
.cid-uVD4A4ZHrE .close {
  background: #1b1b1b;
}
.cid-uVD4A4ZHrE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uVD4A4ZHrE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uVD4A4ZHrE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uVD4A4ZHrE .carousel-control-next span {
  margin-left: 5px;
}
.cid-uVD4A4ZHrE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uVD4A4ZHrE .close::before {
  content: '\e91a';
}
.cid-uVD4A4ZHrE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uVD4A4ZHrE .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uVD4A4ZHrE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVD4A4ZHrE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uVD4A4ZHrE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uVD4A4ZHrE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uVD4A4ZHrE .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uVD4A4ZHrE .carousel-indicators li.active,
.cid-uVD4A4ZHrE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uVD4A4ZHrE .carousel-indicators li::after,
.cid-uVD4A4ZHrE .carousel-indicators li::before {
  content: none;
}
.cid-uVD4A4ZHrE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uVD4A4ZHrE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uVD4A4ZHrE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uVD4A4ZHrE .carousel-indicators {
    display: none;
  }
}
.cid-uVD4A4ZHrE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uVD4A4ZHrE .carousel-inner > .active {
  display: block;
}
.cid-uVD4A4ZHrE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVD4A4ZHrE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uVD4A4ZHrE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uVD4A4ZHrE .carousel-control,
  .cid-uVD4A4ZHrE .carousel-indicators,
  .cid-uVD4A4ZHrE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uVD4A4ZHrE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uVD4A4ZHrE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uVD4A4ZHrE .carousel-indicators .active,
.cid-uVD4A4ZHrE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uVD4A4ZHrE .carousel-indicators .active {
  background: #fff;
}
.cid-uVD4A4ZHrE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uVD4A4ZHrE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uVD4A4ZHrE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uVD4A4ZHrE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uVD4A4ZHrE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uVD4A4ZHrE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uVD4A4ZHrE .carousel {
  width: 100%;
}
.cid-uVD4A4ZHrE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uVD4A4ZHrE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uVD4A4ZHrE .modal.fade .modal-dialog,
.cid-uVD4A4ZHrE .modal.in .modal-dialog {
  transform: none;
}
.cid-uVD4A4ZHrE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uVD4A4ZHrE H6 {
  text-align: center;
}
.cid-uVD4A4ZHrE H3 {
  color: #0c54a0;
  text-align: center;
}
.cid-uVD4A4ZHrE H4 {
  color: #0c54a0;
  text-align: center;
}
.cid-uVD4A4ZHrE .mbr-section-btn .btn {
  background-color: #0c54a0;
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
}
.cid-uVD4A4ZHrE .mbr-section-btn .btn:hover {
  background-color: #084080;
  color: #fff;
}
.cid-uVD4A4ZHrE P {
  color: #0c54a0;
  text-align: center;
}
.cid-uVD4A4ZHrE DIV {
  text-align: center;
}
.cid-uSayCFxQpj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6592e6;
}
.cid-uSayCFxQpj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSayCFxQpj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSayCFxQpj .item {
  padding-bottom: 2rem;
}
.cid-uSayCFxQpj .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uSayCFxQpj .item-wrapper img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cid-uSayCFxQpj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uSayCFxQpj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uSayCFxQpj .carousel-control,
.cid-uSayCFxQpj .close {
  background: #1b1b1b;
}
.cid-uSayCFxQpj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uSayCFxQpj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uSayCFxQpj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uSayCFxQpj .carousel-control-next span {
  margin-left: 5px;
}
.cid-uSayCFxQpj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uSayCFxQpj .close::before {
  content: '\e91a';
}
.cid-uSayCFxQpj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uSayCFxQpj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSayCFxQpj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSayCFxQpj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSayCFxQpj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSayCFxQpj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uSayCFxQpj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSayCFxQpj .carousel-indicators li.active,
.cid-uSayCFxQpj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSayCFxQpj .carousel-indicators li::after,
.cid-uSayCFxQpj .carousel-indicators li::before {
  content: none;
}
.cid-uSayCFxQpj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSayCFxQpj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uSayCFxQpj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uSayCFxQpj .carousel-indicators {
    display: none;
  }
}
.cid-uSayCFxQpj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSayCFxQpj .carousel-inner > .active {
  display: block;
}
.cid-uSayCFxQpj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSayCFxQpj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSayCFxQpj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uSayCFxQpj .carousel-control,
  .cid-uSayCFxQpj .carousel-indicators,
  .cid-uSayCFxQpj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uSayCFxQpj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uSayCFxQpj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSayCFxQpj .carousel-indicators .active,
.cid-uSayCFxQpj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uSayCFxQpj .carousel-indicators .active {
  background: #fff;
}
.cid-uSayCFxQpj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uSayCFxQpj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uSayCFxQpj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uSayCFxQpj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uSayCFxQpj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uSayCFxQpj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uSayCFxQpj .carousel {
  width: 100%;
}
.cid-uSayCFxQpj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uSayCFxQpj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uSayCFxQpj .modal.fade .modal-dialog,
.cid-uSayCFxQpj .modal.in .modal-dialog {
  transform: none;
}
.cid-uSayCFxQpj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uSayCFxQpj H6 {
  text-align: center;
}
.cid-uSayCFxQpj H3 {
  color: #ffffff;
  text-align: center;
}
.cid-uSayCFxQpj H4 {
  color: #ffffff;
  text-align: center;
}
.cid-uSCiWSPChQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-uSCiWSPChQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSCiWSPChQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSCiWSPChQ .item {
  padding-bottom: 2rem;
}
.cid-uSCiWSPChQ .item-wrapper {
  height: 400px;
  position: relative;
}
.cid-uSCiWSPChQ .item-wrapper img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cid-uSCiWSPChQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uSCiWSPChQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uSCiWSPChQ .carousel-control,
.cid-uSCiWSPChQ .close {
  background: #1b1b1b;
}
.cid-uSCiWSPChQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uSCiWSPChQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uSCiWSPChQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uSCiWSPChQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uSCiWSPChQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uSCiWSPChQ .close::before {
  content: '\e91a';
}
.cid-uSCiWSPChQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uSCiWSPChQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSCiWSPChQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSCiWSPChQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSCiWSPChQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSCiWSPChQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uSCiWSPChQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSCiWSPChQ .carousel-indicators li.active,
.cid-uSCiWSPChQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSCiWSPChQ .carousel-indicators li::after,
.cid-uSCiWSPChQ .carousel-indicators li::before {
  content: none;
}
.cid-uSCiWSPChQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSCiWSPChQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uSCiWSPChQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uSCiWSPChQ .carousel-indicators {
    display: none;
  }
}
.cid-uSCiWSPChQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSCiWSPChQ .carousel-inner > .active {
  display: block;
}
.cid-uSCiWSPChQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSCiWSPChQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSCiWSPChQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uSCiWSPChQ .carousel-control,
  .cid-uSCiWSPChQ .carousel-indicators,
  .cid-uSCiWSPChQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uSCiWSPChQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uSCiWSPChQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSCiWSPChQ .carousel-indicators .active,
.cid-uSCiWSPChQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uSCiWSPChQ .carousel-indicators .active {
  background: #fff;
}
.cid-uSCiWSPChQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uSCiWSPChQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uSCiWSPChQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uSCiWSPChQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uSCiWSPChQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uSCiWSPChQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uSCiWSPChQ .carousel {
  width: 100%;
}
.cid-uSCiWSPChQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uSCiWSPChQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uSCiWSPChQ .modal.fade .modal-dialog,
.cid-uSCiWSPChQ .modal.in .modal-dialog {
  transform: none;
}
.cid-uSCiWSPChQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uSCiWSPChQ H6 {
  text-align: center;
}
.cid-uSCiWSPChQ H3 {
  color: #0c54a0;
  text-align: center;
}
.cid-uSCiWSPChQ H4 {
  color: #0c54a0;
  text-align: center;
}
.cid-uH6zCWmZ0S {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #6592e6;
}
.cid-uH6zCWmZ0S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH6zCWmZ0S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH6zCWmZ0S .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .container-fluid {
    padding: 0 20px;
  }
}
.cid-uH6zCWmZ0S .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .container {
    padding: 0 20px;
  }
}
.cid-uH6zCWmZ0S .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uH6zCWmZ0S .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-uH6zCWmZ0S .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uH6zCWmZ0S .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-uH6zCWmZ0S .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uH6zCWmZ0S .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-uH6zCWmZ0S .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .image-wrapper {
    padding: 0;
  }
}
.cid-uH6zCWmZ0S .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uH6zCWmZ0S .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-uH6zCWmZ0S .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uH6zCWmZ0S .image-wrapper .image_2 {
    display: none;
  }
}
.cid-uH6zCWmZ0S .mbr-section-title {
  color: #ffffff;
}
.cid-uH6zCWmZ0S .mbr-text {
  color: #ffffff;
}
.cid-uH6zCWmZ0S .list {
  color: #ffffff;
}
.cid-uH6zDOeF6q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #4479d9;
}
.cid-uH6zDOeF6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH6zDOeF6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH6zDOeF6q ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uH6zDOeF6q li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uH6zDOeF6q ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #4479d9;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uH6zDOeF6q H3 {
  color: #ffffff;
}
.cid-uH6zDOeF6q .list {
  color: #ffffff;
}
.cid-uJKqTTqCp8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-uJKqTTqCp8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJKqTTqCp8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJKqTTqCp8 .item {
  padding-bottom: 2rem;
}
.cid-uJKqTTqCp8 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uJKqTTqCp8 .item-wrapper img {
  height: 100%;
  object-fit: contain;
}
.cid-uJKqTTqCp8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uJKqTTqCp8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uJKqTTqCp8 .carousel-control,
.cid-uJKqTTqCp8 .close {
  background: #1b1b1b;
}
.cid-uJKqTTqCp8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uJKqTTqCp8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uJKqTTqCp8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uJKqTTqCp8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uJKqTTqCp8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uJKqTTqCp8 .close::before {
  content: '\e91a';
}
.cid-uJKqTTqCp8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uJKqTTqCp8 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uJKqTTqCp8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJKqTTqCp8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uJKqTTqCp8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uJKqTTqCp8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uJKqTTqCp8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uJKqTTqCp8 .carousel-indicators li.active,
.cid-uJKqTTqCp8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uJKqTTqCp8 .carousel-indicators li::after,
.cid-uJKqTTqCp8 .carousel-indicators li::before {
  content: none;
}
.cid-uJKqTTqCp8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uJKqTTqCp8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uJKqTTqCp8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uJKqTTqCp8 .carousel-indicators {
    display: none;
  }
}
.cid-uJKqTTqCp8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uJKqTTqCp8 .carousel-inner > .active {
  display: block;
}
.cid-uJKqTTqCp8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uJKqTTqCp8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uJKqTTqCp8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uJKqTTqCp8 .carousel-control,
  .cid-uJKqTTqCp8 .carousel-indicators,
  .cid-uJKqTTqCp8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uJKqTTqCp8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uJKqTTqCp8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uJKqTTqCp8 .carousel-indicators .active,
.cid-uJKqTTqCp8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uJKqTTqCp8 .carousel-indicators .active {
  background: #fff;
}
.cid-uJKqTTqCp8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uJKqTTqCp8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uJKqTTqCp8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uJKqTTqCp8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uJKqTTqCp8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uJKqTTqCp8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uJKqTTqCp8 .carousel {
  width: 100%;
}
.cid-uJKqTTqCp8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uJKqTTqCp8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uJKqTTqCp8 .modal.fade .modal-dialog,
.cid-uJKqTTqCp8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uJKqTTqCp8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uJKqTTqCp8 H6 {
  text-align: center;
}
.cid-uJKqTTqCp8 H3 {
  color: #0c54a0;
}
.cid-uJKqTTqCp8 H4 {
  color: #0c54a0;
}
.cid-uHityChYGR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6592e6;
}
.cid-uHityChYGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHityChYGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHityChYGR .item {
  padding-bottom: 2rem;
}
.cid-uHityChYGR .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uHityChYGR .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uHityChYGR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uHityChYGR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uHityChYGR .carousel-control,
.cid-uHityChYGR .close {
  background: #1b1b1b;
}
.cid-uHityChYGR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uHityChYGR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uHityChYGR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uHityChYGR .carousel-control-next span {
  margin-left: 5px;
}
.cid-uHityChYGR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uHityChYGR .close::before {
  content: '\e91a';
}
.cid-uHityChYGR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uHityChYGR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uHityChYGR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHityChYGR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHityChYGR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHityChYGR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uHityChYGR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uHityChYGR .carousel-indicators li.active,
.cid-uHityChYGR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uHityChYGR .carousel-indicators li::after,
.cid-uHityChYGR .carousel-indicators li::before {
  content: none;
}
.cid-uHityChYGR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uHityChYGR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uHityChYGR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uHityChYGR .carousel-indicators {
    display: none;
  }
}
.cid-uHityChYGR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uHityChYGR .carousel-inner > .active {
  display: block;
}
.cid-uHityChYGR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHityChYGR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uHityChYGR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uHityChYGR .carousel-control,
  .cid-uHityChYGR .carousel-indicators,
  .cid-uHityChYGR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uHityChYGR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uHityChYGR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uHityChYGR .carousel-indicators .active,
.cid-uHityChYGR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uHityChYGR .carousel-indicators .active {
  background: #fff;
}
.cid-uHityChYGR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uHityChYGR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uHityChYGR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uHityChYGR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uHityChYGR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uHityChYGR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uHityChYGR .carousel {
  width: 100%;
}
.cid-uHityChYGR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uHityChYGR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uHityChYGR .modal.fade .modal-dialog,
.cid-uHityChYGR .modal.in .modal-dialog {
  transform: none;
}
.cid-uHityChYGR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uHityChYGR H6 {
  text-align: center;
}
.cid-uHityChYGR H3 {
  color: #ffffff;
}
.cid-uHityChYGR H4 {
  color: #ffffff;
}
.cid-uH8q6UeDXu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0c54a0;
}
.cid-uH8q6UeDXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8q6UeDXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8q6UeDXu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8q6UeDXu .row {
    text-align: center;
  }
  .cid-uH8q6UeDXu .row > div {
    margin: auto;
  }
  .cid-uH8q6UeDXu .social-row {
    justify-content: center;
  }
}
.cid-uH8q6UeDXu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8q6UeDXu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8q6UeDXu .mbr-text {
  color: #bed3f9;
}
.cid-uH8q6UeDXu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uH8q6UeDXu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tSKdU5lvPG {
  z-index: 1000;
  width: 100%;
}
.cid-tSKdU5lvPG nav.navbar {
  position: fixed;
}
.cid-tSKdU5lvPG .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-tSKdU5lvPG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSKdU5lvPG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSKdU5lvPG .dropdown-item:hover,
.cid-tSKdU5lvPG .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tSKdU5lvPG .dropdown-item:hover span {
  color: white;
}
.cid-tSKdU5lvPG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSKdU5lvPG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSKdU5lvPG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSKdU5lvPG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSKdU5lvPG .nav-link {
  position: relative;
}
.cid-tSKdU5lvPG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKdU5lvPG .container {
    flex-wrap: wrap;
  }
}
.cid-tSKdU5lvPG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKdU5lvPG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSKdU5lvPG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSKdU5lvPG .dropdown-menu,
.cid-tSKdU5lvPG .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tSKdU5lvPG .nav-item:focus,
.cid-tSKdU5lvPG .nav-link:focus {
  outline: none;
}
.cid-tSKdU5lvPG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSKdU5lvPG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSKdU5lvPG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSKdU5lvPG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSKdU5lvPG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSKdU5lvPG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSKdU5lvPG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(190, 211, 249, 0.8);
}
.cid-tSKdU5lvPG .navbar.opened {
  transition: all 0.3s;
}
.cid-tSKdU5lvPG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSKdU5lvPG .navbar .navbar-logo img {
  width: auto;
}
.cid-tSKdU5lvPG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSKdU5lvPG .navbar.collapsed {
  justify-content: center;
}
.cid-tSKdU5lvPG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSKdU5lvPG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSKdU5lvPG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-tSKdU5lvPG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSKdU5lvPG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSKdU5lvPG .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-tSKdU5lvPG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSKdU5lvPG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSKdU5lvPG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSKdU5lvPG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSKdU5lvPG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSKdU5lvPG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSKdU5lvPG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSKdU5lvPG .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-tSKdU5lvPG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSKdU5lvPG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSKdU5lvPG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSKdU5lvPG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSKdU5lvPG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSKdU5lvPG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSKdU5lvPG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSKdU5lvPG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSKdU5lvPG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSKdU5lvPG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSKdU5lvPG .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-tSKdU5lvPG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSKdU5lvPG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSKdU5lvPG .dropdown-item.active,
.cid-tSKdU5lvPG .dropdown-item:active {
  background-color: transparent;
}
.cid-tSKdU5lvPG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSKdU5lvPG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSKdU5lvPG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSKdU5lvPG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tSKdU5lvPG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSKdU5lvPG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSKdU5lvPG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSKdU5lvPG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSKdU5lvPG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSKdU5lvPG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSKdU5lvPG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSKdU5lvPG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKdU5lvPG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKdU5lvPG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSKdU5lvPG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKdU5lvPG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSKdU5lvPG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSKdU5lvPG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKdU5lvPG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSKdU5lvPG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSKdU5lvPG .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-tSKdU5lvPG .navbar {
    height: 70px;
  }
  .cid-tSKdU5lvPG .navbar.opened {
    height: auto;
  }
  .cid-tSKdU5lvPG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSVWXPZX1E {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-tSVWXPZX1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSVWXPZX1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSVWXPZX1E .mbr-section-title {
  color: #ffffff;
}
.cid-tSVWXPZX1E .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSWJcHilFm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #6592e6;
}
.cid-tSWJcHilFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWJcHilFm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWJcHilFm .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .container-fluid {
    padding: 0 20px;
  }
}
.cid-tSWJcHilFm .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .container {
    padding: 0 20px;
  }
}
.cid-tSWJcHilFm .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tSWJcHilFm .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tSWJcHilFm .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tSWJcHilFm .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tSWJcHilFm .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tSWJcHilFm .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tSWJcHilFm .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .image-wrapper {
    padding: 0;
  }
}
.cid-tSWJcHilFm .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tSWJcHilFm .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tSWJcHilFm .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tSWJcHilFm .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tSWJcHilFm .mbr-section-title {
  color: #ffffff;
}
.cid-tSWJcHilFm .mbr-text {
  color: #ffffff;
}
.cid-tSWJcHilFm .list {
  color: #ffffff;
}
.cid-tSWLI3N2OP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #6592e6;
}
.cid-tSWLI3N2OP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWLI3N2OP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWLI3N2OP .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .container-fluid {
    padding: 0 20px;
  }
}
.cid-tSWLI3N2OP .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .container {
    padding: 0 20px;
  }
}
.cid-tSWLI3N2OP .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tSWLI3N2OP .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tSWLI3N2OP .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tSWLI3N2OP .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tSWLI3N2OP .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tSWLI3N2OP .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tSWLI3N2OP .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .image-wrapper {
    padding: 0;
  }
}
.cid-tSWLI3N2OP .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tSWLI3N2OP .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tSWLI3N2OP .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-tSWLI3N2OP .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tSWLI3N2OP .mbr-section-title {
  color: #ffffff;
}
.cid-tSWLI3N2OP .mbr-text {
  color: #ffffff;
}
.cid-tSWLI3N2OP .list {
  color: #ffffff;
}
.cid-tSWOXswntX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-tSWOXswntX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWOXswntX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWOXswntX .mbr-section-title {
  color: #0c54a0;
}
.cid-tSWOXswntX .mbr-section-subtitle {
  color: #0c54a0;
}
.cid-tSWOSN2jXd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #bed3f9;
}
.cid-tSWOSN2jXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWOSN2jXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWOSN2jXd .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .container-fluid {
    padding: 0 20px;
  }
}
.cid-tSWOSN2jXd .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .container {
    padding: 0 20px;
  }
}
.cid-tSWOSN2jXd .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tSWOSN2jXd .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tSWOSN2jXd .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tSWOSN2jXd .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tSWOSN2jXd .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tSWOSN2jXd .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tSWOSN2jXd .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .image-wrapper {
    padding: 0;
  }
}
.cid-tSWOSN2jXd .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tSWOSN2jXd .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tSWOSN2jXd .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tSWOSN2jXd .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tSWOSN2jXd .mbr-section-title {
  color: #0c54a0;
}
.cid-tSWOSN2jXd .mbr-text {
  color: #0c54a0;
}
.cid-tSWOSN2jXd .list {
  color: #0c54a0;
}
.cid-uGDWlxANNZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
@media (min-width: 992px) {
  .cid-uGDWlxANNZ .col-lg-2 {
    width: 20%;
  }
}
.cid-uGDWlxANNZ .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGDWlxANNZ .item:hover img,
.cid-uGDWlxANNZ .item:hover .item-img {
  border-radius: 0;
}
.cid-uGDWlxANNZ img:hover {
  border-color: #e43f3f;
}
.cid-uGDWlxANNZ img,
.cid-uGDWlxANNZ .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uGDWlxANNZ h5 {
  margin: 0;
}
.cid-uGDWlxANNZ .item:focus,
.cid-uGDWlxANNZ span:focus {
  outline: none;
}
.cid-uGDWlxANNZ .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGDWlxANNZ .item-content {
  padding-top: 1rem;
}
.cid-uGDWlxANNZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGDWlxANNZ .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGDWlxANNZ .item-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uGDWlxANNZ .mbr-section-subtitle {
  color: #666666;
  text-align: center;
}
.cid-uH8q6UeDXu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-uH8q6UeDXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8q6UeDXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8q6UeDXu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8q6UeDXu .row {
    text-align: center;
  }
  .cid-uH8q6UeDXu .row > div {
    margin: auto;
  }
  .cid-uH8q6UeDXu .social-row {
    justify-content: center;
  }
}
.cid-uH8q6UeDXu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8q6UeDXu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8q6UeDXu .mbr-text {
  color: #bed3f9;
}
.cid-uH8q6UeDXu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uH8q6UeDXu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tSKeQZmaMa {
  z-index: 1000;
  width: 100%;
}
.cid-tSKeQZmaMa nav.navbar {
  position: fixed;
}
.cid-tSKeQZmaMa .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-tSKeQZmaMa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSKeQZmaMa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSKeQZmaMa .dropdown-item:hover,
.cid-tSKeQZmaMa .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tSKeQZmaMa .dropdown-item:hover span {
  color: white;
}
.cid-tSKeQZmaMa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSKeQZmaMa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSKeQZmaMa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSKeQZmaMa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSKeQZmaMa .nav-link {
  position: relative;
}
.cid-tSKeQZmaMa .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKeQZmaMa .container {
    flex-wrap: wrap;
  }
}
.cid-tSKeQZmaMa .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKeQZmaMa .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSKeQZmaMa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSKeQZmaMa .dropdown-menu,
.cid-tSKeQZmaMa .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tSKeQZmaMa .nav-item:focus,
.cid-tSKeQZmaMa .nav-link:focus {
  outline: none;
}
.cid-tSKeQZmaMa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSKeQZmaMa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSKeQZmaMa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSKeQZmaMa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSKeQZmaMa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSKeQZmaMa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSKeQZmaMa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(190, 211, 249, 0.8);
}
.cid-tSKeQZmaMa .navbar.opened {
  transition: all 0.3s;
}
.cid-tSKeQZmaMa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSKeQZmaMa .navbar .navbar-logo img {
  width: auto;
}
.cid-tSKeQZmaMa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSKeQZmaMa .navbar.collapsed {
  justify-content: center;
}
.cid-tSKeQZmaMa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSKeQZmaMa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSKeQZmaMa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-tSKeQZmaMa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSKeQZmaMa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSKeQZmaMa .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-tSKeQZmaMa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSKeQZmaMa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSKeQZmaMa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSKeQZmaMa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSKeQZmaMa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSKeQZmaMa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSKeQZmaMa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSKeQZmaMa .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-tSKeQZmaMa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSKeQZmaMa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSKeQZmaMa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSKeQZmaMa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSKeQZmaMa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSKeQZmaMa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSKeQZmaMa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSKeQZmaMa .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSKeQZmaMa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSKeQZmaMa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSKeQZmaMa .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-tSKeQZmaMa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSKeQZmaMa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSKeQZmaMa .dropdown-item.active,
.cid-tSKeQZmaMa .dropdown-item:active {
  background-color: transparent;
}
.cid-tSKeQZmaMa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSKeQZmaMa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSKeQZmaMa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSKeQZmaMa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tSKeQZmaMa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSKeQZmaMa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSKeQZmaMa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSKeQZmaMa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSKeQZmaMa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSKeQZmaMa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSKeQZmaMa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSKeQZmaMa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKeQZmaMa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKeQZmaMa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSKeQZmaMa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKeQZmaMa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSKeQZmaMa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSKeQZmaMa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKeQZmaMa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSKeQZmaMa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSKeQZmaMa .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-tSKeQZmaMa .navbar {
    height: 70px;
  }
  .cid-tSKeQZmaMa .navbar.opened {
    height: auto;
  }
  .cid-tSKeQZmaMa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGXGsayeUN {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-uGXGsayeUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGXGsayeUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGXGsayeUN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGXGsayeUN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGXGsayeUN .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tT2zYnw9YE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #6592e6;
}
.cid-tT2zYnw9YE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2zYnw9YE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2zYnw9YE .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2zYnw9YE .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .container {
    padding: 0 20px;
  }
}
.cid-tT2zYnw9YE .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2zYnw9YE .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2zYnw9YE .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2zYnw9YE .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2zYnw9YE .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2zYnw9YE .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2zYnw9YE .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .image-wrapper {
    padding: 0;
  }
}
.cid-tT2zYnw9YE .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2zYnw9YE .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2zYnw9YE .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-tT2zYnw9YE .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2zYnw9YE .mbr-section-title {
  color: #ffffff;
}
.cid-tT2zYnw9YE .mbr-text {
  color: #ffffff;
}
.cid-tT2zYnw9YE .list {
  color: #ffffff;
}
.cid-tT2AtLwaB0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #4479d9;
}
.cid-tT2AtLwaB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2AtLwaB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2AtLwaB0 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2AtLwaB0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .container {
    padding: 0 20px;
  }
}
.cid-tT2AtLwaB0 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2AtLwaB0 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2AtLwaB0 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2AtLwaB0 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2AtLwaB0 .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2AtLwaB0 .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2AtLwaB0 .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .image-wrapper {
    padding: 0;
  }
}
.cid-tT2AtLwaB0 .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2AtLwaB0 .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2AtLwaB0 .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tT2AtLwaB0 .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2AtLwaB0 .mbr-section-title {
  color: #ffffff;
}
.cid-tT2AtLwaB0 .mbr-text {
  color: #ffffff;
}
.cid-tT2AtLwaB0 .list {
  color: #ffffff;
}
.cid-tT2AZhfz94 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #6592e6;
}
.cid-tT2AZhfz94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2AZhfz94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2AZhfz94 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2AZhfz94 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .container {
    padding: 0 20px;
  }
}
.cid-tT2AZhfz94 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2AZhfz94 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2AZhfz94 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2AZhfz94 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2AZhfz94 .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2AZhfz94 .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2AZhfz94 .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .image-wrapper {
    padding: 0;
  }
}
.cid-tT2AZhfz94 .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2AZhfz94 .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2AZhfz94 .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-tT2AZhfz94 .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2AZhfz94 .mbr-section-title {
  color: #ffffff;
}
.cid-tT2AZhfz94 .mbr-text {
  color: #ffffff;
}
.cid-tT2AZhfz94 .list {
  color: #ffffff;
}
.cid-tT2DonYPuZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-tT2DonYPuZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tT2DonYPuZ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tT2DonYPuZ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tT2DonYPuZ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uH8q6UeDXu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0c54a0;
}
.cid-uH8q6UeDXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8q6UeDXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8q6UeDXu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8q6UeDXu .row {
    text-align: center;
  }
  .cid-uH8q6UeDXu .row > div {
    margin: auto;
  }
  .cid-uH8q6UeDXu .social-row {
    justify-content: center;
  }
}
.cid-uH8q6UeDXu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8q6UeDXu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8q6UeDXu .mbr-text {
  color: #bed3f9;
}
.cid-uH8q6UeDXu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uH8q6UeDXu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tSKf3bxllk {
  z-index: 1000;
  width: 100%;
}
.cid-tSKf3bxllk nav.navbar {
  position: fixed;
}
.cid-tSKf3bxllk .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-tSKf3bxllk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSKf3bxllk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSKf3bxllk .dropdown-item:hover,
.cid-tSKf3bxllk .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tSKf3bxllk .dropdown-item:hover span {
  color: white;
}
.cid-tSKf3bxllk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSKf3bxllk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSKf3bxllk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSKf3bxllk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSKf3bxllk .nav-link {
  position: relative;
}
.cid-tSKf3bxllk .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKf3bxllk .container {
    flex-wrap: wrap;
  }
}
.cid-tSKf3bxllk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKf3bxllk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSKf3bxllk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSKf3bxllk .dropdown-menu,
.cid-tSKf3bxllk .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tSKf3bxllk .nav-item:focus,
.cid-tSKf3bxllk .nav-link:focus {
  outline: none;
}
.cid-tSKf3bxllk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSKf3bxllk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSKf3bxllk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSKf3bxllk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSKf3bxllk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSKf3bxllk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSKf3bxllk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(190, 211, 249, 0.8);
}
.cid-tSKf3bxllk .navbar.opened {
  transition: all 0.3s;
}
.cid-tSKf3bxllk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSKf3bxllk .navbar .navbar-logo img {
  width: auto;
}
.cid-tSKf3bxllk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSKf3bxllk .navbar.collapsed {
  justify-content: center;
}
.cid-tSKf3bxllk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSKf3bxllk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSKf3bxllk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-tSKf3bxllk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSKf3bxllk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSKf3bxllk .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-tSKf3bxllk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSKf3bxllk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSKf3bxllk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSKf3bxllk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSKf3bxllk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSKf3bxllk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSKf3bxllk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSKf3bxllk .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-tSKf3bxllk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSKf3bxllk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSKf3bxllk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSKf3bxllk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSKf3bxllk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSKf3bxllk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSKf3bxllk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSKf3bxllk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSKf3bxllk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSKf3bxllk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSKf3bxllk .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-tSKf3bxllk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSKf3bxllk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSKf3bxllk .dropdown-item.active,
.cid-tSKf3bxllk .dropdown-item:active {
  background-color: transparent;
}
.cid-tSKf3bxllk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSKf3bxllk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSKf3bxllk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSKf3bxllk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tSKf3bxllk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSKf3bxllk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSKf3bxllk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSKf3bxllk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSKf3bxllk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSKf3bxllk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSKf3bxllk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSKf3bxllk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKf3bxllk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKf3bxllk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSKf3bxllk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKf3bxllk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSKf3bxllk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSKf3bxllk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKf3bxllk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSKf3bxllk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSKf3bxllk .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-tSKf3bxllk .navbar {
    height: 70px;
  }
  .cid-tSKf3bxllk .navbar.opened {
    height: auto;
  }
  .cid-tSKf3bxllk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGXHfInjSN {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-uGXHfInjSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGXHfInjSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGXHfInjSN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGXHfInjSN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGXHfInjSN .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tT2IiU8M28 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6592e6;
}
.cid-tT2IiU8M28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2IiU8M28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2IiU8M28 .mbr-section-title {
  color: #ffffff;
}
.cid-tT2IiU8M28 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tT7IARXa4R {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #bed3f9;
}
.cid-tT7IARXa4R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7IARXa4R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7IARXa4R .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tT7IARXa4R .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tT7IARXa4R .container {
    padding: 0 30px;
  }
}
.cid-tT7IARXa4R .row {
  justify-content: center;
}
.cid-tT7IARXa4R .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT7IARXa4R .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tT7IARXa4R .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tT7IARXa4R .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tT7IARXa4R .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tT7IARXa4R .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tT7IARXa4R .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tT7IARXa4R .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tT7IARXa4R .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tT7IARXa4R .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tT7IARXa4R .google-map {
  padding-left: 30px;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-tT7IARXa4R .google-map {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT7IARXa4R .google-map {
    padding: 0;
  }
}
.cid-tT7IARXa4R .google-map iframe {
  height: 550px;
}
@media (max-width: 992px) {
  .cid-tT7IARXa4R .google-map iframe {
    height: 300px;
  }
}
.cid-tT7IARXa4R .mbr-card-title {
  color: #212529;
}
.cid-tT7IARXa4R .mbr-text {
  color: #212529;
}
.cid-tT2HJDlrZ0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #6592e6;
}
.cid-tT2HJDlrZ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2HJDlrZ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2HJDlrZ0 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2HJDlrZ0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .container {
    padding: 0 20px;
  }
}
.cid-tT2HJDlrZ0 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2HJDlrZ0 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2HJDlrZ0 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2HJDlrZ0 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2HJDlrZ0 .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2HJDlrZ0 .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2HJDlrZ0 .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .image-wrapper {
    padding: 0;
  }
}
.cid-tT2HJDlrZ0 .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2HJDlrZ0 .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2HJDlrZ0 .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tT2HJDlrZ0 .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2HJDlrZ0 .mbr-section-title {
  color: #ffffff;
}
.cid-tT2HJDlrZ0 .mbr-text {
  color: #ffffff;
}
.cid-tT2HJDlrZ0 .list {
  color: #ffffff;
}
.cid-tT2IAv41L0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #0c54a0;
}
.cid-tT2IAv41L0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2IAv41L0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2IAv41L0 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2IAv41L0 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .container {
    padding: 0 20px;
  }
}
.cid-tT2IAv41L0 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2IAv41L0 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2IAv41L0 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2IAv41L0 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2IAv41L0 .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2IAv41L0 .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2IAv41L0 .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .image-wrapper {
    padding: 0;
  }
}
.cid-tT2IAv41L0 .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2IAv41L0 .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2IAv41L0 .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-tT2IAv41L0 .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2IAv41L0 .mbr-section-title {
  color: #ffffff;
}
.cid-tT2IAv41L0 .mbr-text {
  color: #ffffff;
}
.cid-tT2IAv41L0 .list {
  color: #ffffff;
}
.cid-tT2JnriLxO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #bed3f9;
}
.cid-tT2JnriLxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2JnriLxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2JnriLxO .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2JnriLxO .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .container {
    padding: 0 20px;
  }
}
.cid-tT2JnriLxO .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2JnriLxO .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2JnriLxO .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2JnriLxO .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2JnriLxO .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2JnriLxO .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2JnriLxO .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .image-wrapper {
    padding: 0;
  }
}
.cid-tT2JnriLxO .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2JnriLxO .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2JnriLxO .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-tT2JnriLxO .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2JnriLxO .mbr-section-title {
  color: #232323;
}
.cid-tT2JnriLxO .mbr-text {
  color: #ffffff;
}
.cid-tT2JnriLxO .list {
  color: #232323;
}
.cid-tT2KkV1oaC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ff6666;
}
.cid-tT2KkV1oaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2KkV1oaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2KkV1oaC .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2KkV1oaC .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .container {
    padding: 0 20px;
  }
}
.cid-tT2KkV1oaC .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2KkV1oaC .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2KkV1oaC .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2KkV1oaC .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2KkV1oaC .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2KkV1oaC .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2KkV1oaC .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .image-wrapper {
    padding: 0;
  }
}
.cid-tT2KkV1oaC .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2KkV1oaC .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2KkV1oaC .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tT2KkV1oaC .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2KkV1oaC .mbr-section-title {
  color: #ffffff;
}
.cid-tT2KkV1oaC .mbr-text {
  color: #ffffff;
}
.cid-tT2KkV1oaC .list {
  color: #ffffff;
}
.cid-tT2MlYqhsw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #4479d9;
}
.cid-tT2MlYqhsw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT2MlYqhsw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT2MlYqhsw .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT2MlYqhsw .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .container {
    padding: 0 20px;
  }
}
.cid-tT2MlYqhsw .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT2MlYqhsw .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2MlYqhsw .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT2MlYqhsw .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT2MlYqhsw .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT2MlYqhsw .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT2MlYqhsw .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .image-wrapper {
    padding: 0;
  }
}
.cid-tT2MlYqhsw .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT2MlYqhsw .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT2MlYqhsw .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-tT2MlYqhsw .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT2MlYqhsw .mbr-section-title {
  color: #ffffff;
}
.cid-tT2MlYqhsw .mbr-text {
  color: #ffffff;
}
.cid-tT2MlYqhsw .list {
  color: #ffffff;
}
.cid-tT7SmOEQ5U {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tT7SmOEQ5U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7SmOEQ5U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7SmOEQ5U .mbr-section-title {
  color: #ffffff;
}
.cid-tT7SmOEQ5U .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tT7SJxxjCr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #bbbbbb;
}
.cid-tT7SJxxjCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7SJxxjCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7SJxxjCr .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tT7SJxxjCr .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tT7SJxxjCr .container {
    padding: 0 30px;
  }
}
.cid-tT7SJxxjCr .row {
  justify-content: center;
}
.cid-tT7SJxxjCr .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT7SJxxjCr .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tT7SJxxjCr .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tT7SJxxjCr .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tT7SJxxjCr .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tT7SJxxjCr .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tT7SJxxjCr .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tT7SJxxjCr .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tT7SJxxjCr .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tT7SJxxjCr .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tT7SJxxjCr .google-map {
  padding-left: 30px;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-tT7SJxxjCr .google-map {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT7SJxxjCr .google-map {
    padding: 0;
  }
}
.cid-tT7SJxxjCr .google-map iframe {
  height: 550px;
}
@media (max-width: 992px) {
  .cid-tT7SJxxjCr .google-map iframe {
    height: 300px;
  }
}
.cid-tT7SJxxjCr .mbr-card-title {
  color: #212529;
}
.cid-tT7SJxxjCr .mbr-text {
  color: #000000;
}
.cid-tT7SExz7Sa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #353535;
}
.cid-tT7SExz7Sa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7SExz7Sa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7SExz7Sa .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .container-fluid {
    padding: 0 20px;
  }
}
.cid-tT7SExz7Sa .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .container {
    padding: 0 20px;
  }
}
.cid-tT7SExz7Sa .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-tT7SExz7Sa .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT7SExz7Sa .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-tT7SExz7Sa .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tT7SExz7Sa .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-tT7SExz7Sa .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-tT7SExz7Sa .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .image-wrapper {
    padding: 0;
  }
}
.cid-tT7SExz7Sa .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tT7SExz7Sa .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-tT7SExz7Sa .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-tT7SExz7Sa .image-wrapper .image_2 {
    display: none;
  }
}
.cid-tT7SExz7Sa .mbr-section-title {
  color: #ffffff;
}
.cid-tT7SExz7Sa .mbr-text {
  color: #ffffff;
}
.cid-tT7SExz7Sa .list {
  color: #ffffff;
}
.cid-tT7WF0C7To {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tT7WF0C7To .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7WF0C7To .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7WF0C7To .mbr-section-title {
  color: #ffffff;
}
.cid-tT7WF0C7To .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tT7WX9fRI6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #65c6d4;
}
.cid-tT7WX9fRI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT7WX9fRI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT7WX9fRI6 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tT7WX9fRI6 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tT7WX9fRI6 .container {
    padding: 0 30px;
  }
}
.cid-tT7WX9fRI6 .row {
  justify-content: center;
}
.cid-tT7WX9fRI6 .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT7WX9fRI6 .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tT7WX9fRI6 .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tT7WX9fRI6 .google-map {
  padding-left: 30px;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-tT7WX9fRI6 .google-map {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT7WX9fRI6 .google-map {
    padding: 0;
  }
}
.cid-tT7WX9fRI6 .google-map iframe {
  height: 550px;
}
@media (max-width: 992px) {
  .cid-tT7WX9fRI6 .google-map iframe {
    height: 300px;
  }
}
.cid-tT7WX9fRI6 .mbr-card-title {
  color: #212529;
}
.cid-tT7WX9fRI6 .mbr-text {
  color: #212529;
}
.cid-uGzWMXDsfM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-uGzWMXDsfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzWMXDsfM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGzWMXDsfM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uGzWMXDsfM .container-fluid {
    padding: 0 25px;
  }
}
.cid-uGzWMXDsfM .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uGzWMXDsfM .container {
    padding: 0 25px;
  }
}
.cid-uGzWMXDsfM .row {
  border: 1px solid #2299aa;
}
.cid-uGzWMXDsfM .card {
  padding: 0;
}
.cid-uGzWMXDsfM .card .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uGzWMXDsfM .card .image-wrapper img {
  height: 100%;
  object-fit: cover;
  max-height: 610px;
}
@media (max-width: 992px) {
  .cid-uGzWMXDsfM .card .image-wrapper img {
    max-height: 100%;
    height: 300px;
  }
}
.cid-uGzWMXDsfM .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px 60px;
  height: 100%;
  background-color: #2299aa;
}
@media (max-width: 992px) {
  .cid-uGzWMXDsfM .title-wrapper {
    padding: 60px 25px;
  }
}
.cid-uGzWMXDsfM .title-wrapper .title-wrap {
  width: 100%;
}
.cid-uGzWMXDsfM .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uGzWMXDsfM .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 20px;
}
.cid-uGzWMXDsfM .title-wrapper .title-wrap .mbr-section-btn {
  margin-top: 35px;
}
.cid-uGzWMXDsfM .title-wrapper .mbr-desc {
  width: 100%;
  margin-bottom: 0;
}
.cid-uGzWMXDsfM .mbr-section-title {
  color: #ffffff;
}
.cid-uGzWMXDsfM .mbr-text {
  color: #ffffff;
}
.cid-uGzWMXDsfM .mbr-desc {
  color: #ffffff;
}
.cid-uH8q6UeDXu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-uH8q6UeDXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8q6UeDXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8q6UeDXu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8q6UeDXu .row {
    text-align: center;
  }
  .cid-uH8q6UeDXu .row > div {
    margin: auto;
  }
  .cid-uH8q6UeDXu .social-row {
    justify-content: center;
  }
}
.cid-uH8q6UeDXu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8q6UeDXu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8q6UeDXu .mbr-text {
  color: #bed3f9;
}
.cid-uH8q6UeDXu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uH8q6UeDXu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tSKfkQkjhR {
  z-index: 1000;
  width: 100%;
}
.cid-tSKfkQkjhR nav.navbar {
  position: fixed;
}
.cid-tSKfkQkjhR .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-tSKfkQkjhR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSKfkQkjhR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSKfkQkjhR .dropdown-item:hover,
.cid-tSKfkQkjhR .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tSKfkQkjhR .dropdown-item:hover span {
  color: white;
}
.cid-tSKfkQkjhR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSKfkQkjhR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSKfkQkjhR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSKfkQkjhR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSKfkQkjhR .nav-link {
  position: relative;
}
.cid-tSKfkQkjhR .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKfkQkjhR .container {
    flex-wrap: wrap;
  }
}
.cid-tSKfkQkjhR .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSKfkQkjhR .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSKfkQkjhR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSKfkQkjhR .dropdown-menu,
.cid-tSKfkQkjhR .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tSKfkQkjhR .nav-item:focus,
.cid-tSKfkQkjhR .nav-link:focus {
  outline: none;
}
.cid-tSKfkQkjhR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSKfkQkjhR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSKfkQkjhR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSKfkQkjhR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSKfkQkjhR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSKfkQkjhR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSKfkQkjhR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(190, 211, 249, 0.8);
}
.cid-tSKfkQkjhR .navbar.opened {
  transition: all 0.3s;
}
.cid-tSKfkQkjhR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSKfkQkjhR .navbar .navbar-logo img {
  width: auto;
}
.cid-tSKfkQkjhR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSKfkQkjhR .navbar.collapsed {
  justify-content: center;
}
.cid-tSKfkQkjhR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSKfkQkjhR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSKfkQkjhR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-tSKfkQkjhR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSKfkQkjhR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSKfkQkjhR .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-tSKfkQkjhR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSKfkQkjhR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSKfkQkjhR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSKfkQkjhR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSKfkQkjhR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSKfkQkjhR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSKfkQkjhR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSKfkQkjhR .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-tSKfkQkjhR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSKfkQkjhR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSKfkQkjhR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSKfkQkjhR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSKfkQkjhR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSKfkQkjhR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSKfkQkjhR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSKfkQkjhR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSKfkQkjhR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSKfkQkjhR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSKfkQkjhR .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-tSKfkQkjhR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSKfkQkjhR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSKfkQkjhR .dropdown-item.active,
.cid-tSKfkQkjhR .dropdown-item:active {
  background-color: transparent;
}
.cid-tSKfkQkjhR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSKfkQkjhR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSKfkQkjhR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSKfkQkjhR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tSKfkQkjhR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSKfkQkjhR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSKfkQkjhR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSKfkQkjhR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSKfkQkjhR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSKfkQkjhR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSKfkQkjhR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSKfkQkjhR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKfkQkjhR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSKfkQkjhR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSKfkQkjhR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKfkQkjhR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSKfkQkjhR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSKfkQkjhR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSKfkQkjhR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSKfkQkjhR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSKfkQkjhR .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-tSKfkQkjhR .navbar {
    height: 70px;
  }
  .cid-tSKfkQkjhR .navbar.opened {
    height: auto;
  }
  .cid-tSKfkQkjhR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTdy5sbTwe {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-tTdy5sbTwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTdy5sbTwe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTdy5sbTwe .mbr-section-title {
  color: #ffffff;
}
.cid-tTdy5sbTwe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tT81GNuirZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #bed3f9;
}
.cid-tT81GNuirZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT81GNuirZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT81GNuirZ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tT81GNuirZ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tT81GNuirZ .container {
    padding: 0 30px;
  }
}
.cid-tT81GNuirZ .row {
  justify-content: center;
}
.cid-tT81GNuirZ .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tT81GNuirZ .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tT81GNuirZ .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tT81GNuirZ .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tT81GNuirZ .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tT81GNuirZ .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tT81GNuirZ .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tT81GNuirZ .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tT81GNuirZ .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tT81GNuirZ .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tT81GNuirZ .google-map {
  padding-left: 30px;
  padding-left: 0;
  padding-right: 30px;
}
@media (max-width: 992px) {
  .cid-tT81GNuirZ .google-map {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tT81GNuirZ .google-map {
    padding: 0;
  }
}
.cid-tT81GNuirZ .google-map iframe {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-tT81GNuirZ .google-map iframe {
    height: 300px;
  }
}
.cid-tT81GNuirZ .mbr-card-title {
  color: #212529;
}
.cid-tT81GNuirZ .mbr-text {
  color: #0c54a0;
}
.cid-tT81GNuirZ .mbr-card-title,
.cid-tT81GNuirZ .title-wrapper {
  color: #0c54a0;
}
.cid-tT8GChp7vh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tT8GChp7vh img,
.cid-tT8GChp7vh .item-img {
  width: 100%;
}
.cid-tT8GChp7vh .item:focus,
.cid-tT8GChp7vh span:focus {
  outline: none;
}
.cid-tT8GChp7vh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tT8GChp7vh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bed3f9;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tT8GChp7vh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tT8GChp7vh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tT8GChp7vh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tT8GChp7vh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tT8GChp7vh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tT8GChp7vh .mbr-section-title {
  color: #ffffff;
}
.cid-tT8GChp7vh .mbr-text,
.cid-tT8GChp7vh .mbr-section-btn {
  text-align: left;
  color: #e43f3f;
}
.cid-tT8GChp7vh .item-title {
  text-align: left;
  color: #0c54a0;
}
.cid-tT8GChp7vh .item-subtitle {
  text-align: left;
  color: #0c54a0;
}
.cid-uH8q6UeDXu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0c54a0;
}
.cid-uH8q6UeDXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8q6UeDXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8q6UeDXu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8q6UeDXu .row {
    text-align: center;
  }
  .cid-uH8q6UeDXu .row > div {
    margin: auto;
  }
  .cid-uH8q6UeDXu .social-row {
    justify-content: center;
  }
}
.cid-uH8q6UeDXu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8q6UeDXu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8q6UeDXu .mbr-text {
  color: #bed3f9;
}
.cid-uH8q6UeDXu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uH8q6UeDXu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uGzSdrSiMR {
  z-index: 1000;
  width: 100%;
}
.cid-uGzSdrSiMR nav.navbar {
  position: fixed;
}
.cid-uGzSdrSiMR .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-uGzSdrSiMR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGzSdrSiMR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGzSdrSiMR .dropdown-item:hover,
.cid-uGzSdrSiMR .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-uGzSdrSiMR .dropdown-item:hover span {
  color: white;
}
.cid-uGzSdrSiMR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGzSdrSiMR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGzSdrSiMR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGzSdrSiMR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGzSdrSiMR .nav-link {
  position: relative;
}
.cid-uGzSdrSiMR .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uGzSdrSiMR .container {
    flex-wrap: wrap;
  }
}
.cid-uGzSdrSiMR .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uGzSdrSiMR .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uGzSdrSiMR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGzSdrSiMR .dropdown-menu,
.cid-uGzSdrSiMR .navbar.opened {
  background: #bed3f9 !important;
}
.cid-uGzSdrSiMR .nav-item:focus,
.cid-uGzSdrSiMR .nav-link:focus {
  outline: none;
}
.cid-uGzSdrSiMR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGzSdrSiMR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzSdrSiMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGzSdrSiMR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzSdrSiMR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzSdrSiMR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzSdrSiMR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(190, 211, 249, 0.8);
}
.cid-uGzSdrSiMR .navbar.opened {
  transition: all 0.3s;
}
.cid-uGzSdrSiMR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGzSdrSiMR .navbar .navbar-logo img {
  width: auto;
}
.cid-uGzSdrSiMR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGzSdrSiMR .navbar.collapsed {
  justify-content: center;
}
.cid-uGzSdrSiMR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGzSdrSiMR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGzSdrSiMR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uGzSdrSiMR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGzSdrSiMR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGzSdrSiMR .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-uGzSdrSiMR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGzSdrSiMR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGzSdrSiMR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGzSdrSiMR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGzSdrSiMR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGzSdrSiMR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGzSdrSiMR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGzSdrSiMR .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-uGzSdrSiMR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGzSdrSiMR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGzSdrSiMR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGzSdrSiMR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGzSdrSiMR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGzSdrSiMR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGzSdrSiMR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGzSdrSiMR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGzSdrSiMR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGzSdrSiMR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGzSdrSiMR .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-uGzSdrSiMR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGzSdrSiMR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGzSdrSiMR .dropdown-item.active,
.cid-uGzSdrSiMR .dropdown-item:active {
  background-color: transparent;
}
.cid-uGzSdrSiMR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGzSdrSiMR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGzSdrSiMR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGzSdrSiMR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-uGzSdrSiMR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGzSdrSiMR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzSdrSiMR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGzSdrSiMR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGzSdrSiMR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGzSdrSiMR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGzSdrSiMR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzSdrSiMR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzSdrSiMR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzSdrSiMR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzSdrSiMR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzSdrSiMR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzSdrSiMR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzSdrSiMR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzSdrSiMR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGzSdrSiMR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzSdrSiMR .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-uGzSdrSiMR .navbar {
    height: 70px;
  }
  .cid-uGzSdrSiMR .navbar.opened {
    height: auto;
  }
  .cid-uGzSdrSiMR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGzSdtAghn {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-uGzSdtAghn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzSdtAghn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGzSdtAghn .mbr-section-title {
  color: #ffffff;
}
.cid-uGzSdtAghn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGzSdvWkMF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #8caff0;
}
.cid-uGzSdvWkMF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzSdvWkMF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGzSdvWkMF .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .container-fluid {
    padding: 0 20px;
  }
}
.cid-uGzSdvWkMF .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .container {
    padding: 0 20px;
  }
}
.cid-uGzSdvWkMF .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uGzSdvWkMF .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-uGzSdvWkMF .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-uGzSdvWkMF .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-uGzSdvWkMF .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap {
    display: block;
  }
}
.cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap .list {
  padding: 0;
  margin: 0 60px 16px 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap .list {
    margin: 0 0 8px 0;
  }
}
.cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap .list .item-wrap {
  position: relative;
  padding-left: 33px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap .list .item-wrap {
    margin-bottom: 8px;
  }
}
.cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uGzSdvWkMF .title-wrapper .title-wrap .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #ffffff;
  color: #b29fe9;
  border-radius: 50px;
}
.cid-uGzSdvWkMF .image-wrapper {
  position: relative;
  padding: 0 0 82px 150px;
  height: 100%;
  padding: 0 150px 82px 0;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .image-wrapper {
    padding: 0;
  }
}
.cid-uGzSdvWkMF .image-wrapper .image_1 {
  height: 410px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uGzSdvWkMF .image-wrapper .image_1 {
    height: 300px;
  }
}
.cid-uGzSdvWkMF .image-wrapper .image_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 270px;
  max-width: 350px;
  object-fit: cover;
  left: auto;
  right: 0;
}
@media (max-width: 992px) {
  .cid-uGzSdvWkMF .image-wrapper .image_2 {
    display: none;
  }
}
.cid-uGzSdvWkMF .mbr-section-title {
  color: #ffffff;
}
.cid-uGzSdvWkMF .mbr-text {
  color: #ffffff;
}
.cid-uGzSdvWkMF .list {
  color: #ffffff;
}
.cid-uH8q6UeDXu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0c54a0;
}
.cid-uH8q6UeDXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8q6UeDXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8q6UeDXu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8q6UeDXu .row {
    text-align: center;
  }
  .cid-uH8q6UeDXu .row > div {
    margin: auto;
  }
  .cid-uH8q6UeDXu .social-row {
    justify-content: center;
  }
}
.cid-uH8q6UeDXu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8q6UeDXu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8q6UeDXu .mbr-text {
  color: #bed3f9;
}
.cid-uH8q6UeDXu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uH8q6UeDXu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tTdOxfFsE0 {
  z-index: 1000;
  width: 100%;
}
.cid-tTdOxfFsE0 nav.navbar {
  position: fixed;
}
.cid-tTdOxfFsE0 .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-tTdOxfFsE0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTdOxfFsE0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTdOxfFsE0 .dropdown-item:hover,
.cid-tTdOxfFsE0 .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-tTdOxfFsE0 .dropdown-item:hover span {
  color: white;
}
.cid-tTdOxfFsE0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTdOxfFsE0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTdOxfFsE0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTdOxfFsE0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTdOxfFsE0 .nav-link {
  position: relative;
}
.cid-tTdOxfFsE0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTdOxfFsE0 .container {
    flex-wrap: wrap;
  }
}
.cid-tTdOxfFsE0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTdOxfFsE0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tTdOxfFsE0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTdOxfFsE0 .dropdown-menu,
.cid-tTdOxfFsE0 .navbar.opened {
  background: #bed3f9 !important;
}
.cid-tTdOxfFsE0 .nav-item:focus,
.cid-tTdOxfFsE0 .nav-link:focus {
  outline: none;
}
.cid-tTdOxfFsE0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTdOxfFsE0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTdOxfFsE0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTdOxfFsE0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTdOxfFsE0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTdOxfFsE0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTdOxfFsE0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(190, 211, 249, 0.8);
}
.cid-tTdOxfFsE0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tTdOxfFsE0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTdOxfFsE0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tTdOxfFsE0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTdOxfFsE0 .navbar.collapsed {
  justify-content: center;
}
.cid-tTdOxfFsE0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTdOxfFsE0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTdOxfFsE0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-tTdOxfFsE0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTdOxfFsE0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTdOxfFsE0 .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-tTdOxfFsE0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTdOxfFsE0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTdOxfFsE0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTdOxfFsE0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTdOxfFsE0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTdOxfFsE0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTdOxfFsE0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTdOxfFsE0 .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-tTdOxfFsE0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTdOxfFsE0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTdOxfFsE0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTdOxfFsE0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTdOxfFsE0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTdOxfFsE0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tTdOxfFsE0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tTdOxfFsE0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTdOxfFsE0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTdOxfFsE0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTdOxfFsE0 .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-tTdOxfFsE0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTdOxfFsE0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTdOxfFsE0 .dropdown-item.active,
.cid-tTdOxfFsE0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTdOxfFsE0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTdOxfFsE0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTdOxfFsE0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTdOxfFsE0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-tTdOxfFsE0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTdOxfFsE0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTdOxfFsE0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTdOxfFsE0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTdOxfFsE0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTdOxfFsE0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tTdOxfFsE0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTdOxfFsE0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTdOxfFsE0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTdOxfFsE0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTdOxfFsE0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTdOxfFsE0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTdOxfFsE0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTdOxfFsE0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTdOxfFsE0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTdOxfFsE0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTdOxfFsE0 .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-tTdOxfFsE0 .navbar {
    height: 70px;
  }
  .cid-tTdOxfFsE0 .navbar.opened {
    height: auto;
  }
  .cid-tTdOxfFsE0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH70CuWow2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #6592e6;
}
.cid-uH70CuWow2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH70CuWow2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH70CuWow2 .mbr-section-title {
  color: #ffffff;
}
.cid-uH70CuWow2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uH6UD6Yvcs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #ffffff;
  background-color: #8caff0;
}
.cid-uH6UD6Yvcs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH6UD6Yvcs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH6UD6Yvcs .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uH6UD6Yvcs .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uH6UD6Yvcs .content-wrapper {
    padding: 0;
  }
}
.cid-uH6UD6Yvcs .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uH6UD6Yvcs .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uH6UD6Yvcs .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
  padding: 0 108px;
}
@media (max-width: 1600px) {
  .cid-uH6UD6Yvcs .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1440px) {
  .cid-uH6UD6Yvcs .items-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uH6UD6Yvcs .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uH6UD6Yvcs .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper {
  padding: 64px 42px;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title1,
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title2,
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title3,
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title4 {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title1,
  .cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title2,
  .cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title3,
  .cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .item-title4 {
    margin-bottom: 32px;
  }
}
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .card-box {
  margin-bottom: 0;
}
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .card-box .item-text1,
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .card-box .item-text2,
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .card-box .item-text3,
.cid-uH6UD6Yvcs .items-wrapper .item .item-wrapper .card-box .item-text4 {
  margin-bottom: 32px;
}
.cid-uH6UD6Yvcs .items-wrapper .card_1 .item-wrapper {
  background-color: #bed3f9;
}
.cid-uH6UD6Yvcs .items-wrapper .card_2 .item-wrapper {
  background-color: #4479d9;
}
.cid-uH6UD6Yvcs .items-wrapper .card_3 .item-wrapper {
  background-color: #bed3f9;
}
.cid-uH6UD6Yvcs .items-wrapper .card_4 .item-wrapper {
  background-color: #4479d9;
}
.cid-uH6UD6Yvcs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uH6UD6Yvcs .item-title1 {
  color: #0c54a0;
}
.cid-uH6UD6Yvcs .item-title2 {
  color: #ffffff;
}
.cid-uH6UD6Yvcs .item-title3 {
  color: #0c54a0;
}
.cid-uH6UD6Yvcs .item-title4 {
  color: #ffffff;
}
.cid-uH6UD6Yvcs .item-text1 {
  color: #0c54a0;
}
.cid-uH6UD6Yvcs .item-text2 {
  color: #bed3f9;
}
.cid-uH6UD6Yvcs .item-text3 {
  color: #0c54a0;
}
.cid-uH6UD6Yvcs .item-text4 {
  color: #bed3f9;
}
.cid-uVDAD9VfaO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #ffffff;
  background-color: #0c54a0;
}
.cid-uVDAD9VfaO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVDAD9VfaO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVDAD9VfaO .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uVDAD9VfaO .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uVDAD9VfaO .content-wrapper {
    padding: 0;
  }
}
.cid-uVDAD9VfaO .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uVDAD9VfaO .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uVDAD9VfaO .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
  padding: 0 108px;
}
@media (max-width: 1600px) {
  .cid-uVDAD9VfaO .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1440px) {
  .cid-uVDAD9VfaO .items-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uVDAD9VfaO .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVDAD9VfaO .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper {
  padding: 64px 42px;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cid-uVDAD9VfaO .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uVDAD9VfaO .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title1,
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title2,
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title3,
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title4 {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title1,
  .cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title2,
  .cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title3,
  .cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .item-title4 {
    margin-bottom: 32px;
  }
}
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .card-box {
  margin-bottom: 0;
}
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .card-box .item-text1,
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .card-box .item-text2,
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .card-box .item-text3,
.cid-uVDAD9VfaO .items-wrapper .item .item-wrapper .card-box .item-text4 {
  margin-bottom: 32px;
}
.cid-uVDAD9VfaO .items-wrapper .card_1 .item-wrapper {
  background-color: #bed3f9;
}
.cid-uVDAD9VfaO .items-wrapper .card_2 .item-wrapper {
  background-color: #4479d9;
}
.cid-uVDAD9VfaO .items-wrapper .card_3 .item-wrapper {
  background-color: #bed3f9;
}
.cid-uVDAD9VfaO .items-wrapper .card_4 .item-wrapper {
  background-color: #4479d9;
}
.cid-uVDAD9VfaO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uVDAD9VfaO .item-title1 {
  color: #0c54a0;
}
.cid-uVDAD9VfaO .item-title2 {
  color: #ffffff;
}
.cid-uVDAD9VfaO .item-title3 {
  color: #0c54a0;
}
.cid-uVDAD9VfaO .item-title4 {
  color: #ffffff;
}
.cid-uVDAD9VfaO .item-text1 {
  color: #0c54a0;
}
.cid-uVDAD9VfaO .item-text2 {
  color: #bed3f9;
}
.cid-uVDAD9VfaO .item-text3 {
  color: #0c54a0;
}
.cid-uVDAD9VfaO .item-text4 {
  color: #bed3f9;
}
.cid-uH70lAxIiE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #ffffff;
  background-color: #6592e6;
}
.cid-uH70lAxIiE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH70lAxIiE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH70lAxIiE .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uH70lAxIiE .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uH70lAxIiE .content-wrapper {
    padding: 0;
  }
}
.cid-uH70lAxIiE .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uH70lAxIiE .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uH70lAxIiE .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
  padding: 0 108px;
}
@media (max-width: 1600px) {
  .cid-uH70lAxIiE .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1440px) {
  .cid-uH70lAxIiE .items-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uH70lAxIiE .items-wrapper {
    display: block;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uH70lAxIiE .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper {
  padding: 64px 42px;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .cid-uH70lAxIiE .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uH70lAxIiE .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title1,
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title2,
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title3,
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title4 {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title1,
  .cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title2,
  .cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title3,
  .cid-uH70lAxIiE .items-wrapper .item .item-wrapper .item-title4 {
    margin-bottom: 32px;
  }
}
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .card-box {
  margin-bottom: 0;
}
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .card-box .item-text1,
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .card-box .item-text2,
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .card-box .item-text3,
.cid-uH70lAxIiE .items-wrapper .item .item-wrapper .card-box .item-text4 {
  margin-bottom: 32px;
}
.cid-uH70lAxIiE .items-wrapper .card_1 .item-wrapper {
  background-color: #bed3f9;
}
.cid-uH70lAxIiE .items-wrapper .card_2 .item-wrapper {
  background-color: #4479d9;
}
.cid-uH70lAxIiE .items-wrapper .card_3 .item-wrapper {
  background-color: #bed3f9;
}
.cid-uH70lAxIiE .items-wrapper .card_4 .item-wrapper {
  background-color: #4479d9;
}
.cid-uH70lAxIiE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uH70lAxIiE .item-title1 {
  color: #0c54a0;
}
.cid-uH70lAxIiE .item-title2 {
  color: #ffffff;
}
.cid-uH70lAxIiE .item-title3 {
  color: #0c54a0;
}
.cid-uH70lAxIiE .item-title4 {
  color: #ffffff;
}
.cid-uH70lAxIiE .item-text1 {
  color: #0c54a0;
}
.cid-uH70lAxIiE .item-text2 {
  color: #bed3f9;
}
.cid-uH70lAxIiE .item-text3 {
  color: #0c54a0;
}
.cid-uH70lAxIiE .item-text4 {
  color: #bed3f9;
}
.cid-uH71DNBbq8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uH71DNBbq8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH71DNBbq8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH71DNBbq8 .mbr-section-title {
  color: #ffffff;
}
.cid-uH71DNBbq8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uH6FJbnKIu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uH6FJbnKIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH6FJbnKIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH6FJbnKIu .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uH6FJbnKIu .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-uH6FJbnKIu .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-uH6FJbnKIu .wrapper {
  padding: 30px 0;
}
.cid-uH6FJbnKIu .mbr-section-title {
  color: #fafafa;
}
.cid-uH6FJbnKIu .mbr-text,
.cid-uH6FJbnKIu .mbr-section-btn {
  color: #ffffff;
}
.cid-uH8q6UeDXu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #0c54a0;
}
.cid-uH8q6UeDXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8q6UeDXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8q6UeDXu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8q6UeDXu .row {
    text-align: center;
  }
  .cid-uH8q6UeDXu .row > div {
    margin: auto;
  }
  .cid-uH8q6UeDXu .social-row {
    justify-content: center;
  }
}
.cid-uH8q6UeDXu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8q6UeDXu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8q6UeDXu .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8q6UeDXu .mbr-text {
  color: #bed3f9;
}
.cid-uH8q6UeDXu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uH8q6UeDXu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uH8q6UeDXu div > *:last-child {
    margin-top: 0 !important;
  }
}
