body {
  font-family: 'Space Grotesk', sans-serif;
}
.display-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Caveat', handwriting;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 90rem) / (48 - 25)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 25))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 40rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #51add0 !important;
}
.bg-success {
  background-color: #aeffb6 !important;
}
.bg-info {
  background-color: #78c5e2 !important;
}
.bg-warning {
  background-color: #ffa29d !important;
}
.bg-danger {
  background-color: #d86a64 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #51add0 !important;
  border-color: #51add0 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2b7f9f !important;
  border-color: #2b7f9f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2b7f9f !important;
  border-color: #2b7f9f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cacbcc !important;
  border-color: #cacbcc !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #9ea0a1 !important;
  border-color: #9ea0a1 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9ea0a1 !important;
  border-color: #9ea0a1 !important;
}
.btn-info,
.btn-info:active {
  background-color: #78c5e2 !important;
  border-color: #78c5e2 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #31a6d3 !important;
  border-color: #31a6d3 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #31a6d3 !important;
  border-color: #31a6d3 !important;
}
.btn-success,
.btn-success:active {
  background-color: #aeffb6 !important;
  border-color: #aeffb6 !important;
  color: #00ae11 !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #005709 !important;
  background-color: #57ff68 !important;
  border-color: #57ff68 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #00ae11 !important;
  background-color: #57ff68 !important;
  border-color: #57ff68 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa29d !important;
  border-color: #ffa29d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff5046 !important;
  border-color: #ff5046 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff5046 !important;
  border-color: #ff5046 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d86a64 !important;
  border-color: #d86a64 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b7352e !important;
  border-color: #b7352e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b7352e !important;
  border-color: #b7352e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.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: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.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: #2b7f9f;
  color: #51add0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2b7f9f !important;
  background-color: transparent!important;
  border-color: #2b7f9f !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #51add0 !important;
  border-color: #51add0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #9ea0a1;
  color: #cacbcc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9ea0a1 !important;
  background-color: transparent!important;
  border-color: #9ea0a1 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cacbcc !important;
  border-color: #cacbcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #31a6d3;
  color: #78c5e2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #31a6d3 !important;
  background-color: transparent!important;
  border-color: #31a6d3 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #78c5e2 !important;
  border-color: #78c5e2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #57ff68;
  color: #aeffb6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #57ff68 !important;
  background-color: transparent!important;
  border-color: #57ff68 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #00ae11 !important;
  background-color: #aeffb6 !important;
  border-color: #aeffb6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff5046;
  color: #ffa29d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff5046 !important;
  background-color: transparent!important;
  border-color: #ff5046 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa29d !important;
  border-color: #ffa29d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #b7352e;
  color: #d86a64;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b7352e !important;
  background-color: transparent!important;
  border-color: #b7352e !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #d86a64 !important;
  border-color: #d86a64 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  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: #000000 !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: #cfcfcf;
  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: #cfcfcf !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: #51add0 !important;
}
.text-secondary {
  color: #cacbcc !important;
}
.text-success {
  color: #aeffb6 !important;
}
.text-info {
  color: #78c5e2 !important;
}
.text-warning {
  color: #ffa29d !important;
}
.text-danger {
  color: #d86a64 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #287693 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #96989a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #48ff5a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2b9ec9 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff4137 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ab322b !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: #51add0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #78c5e2;
}
.alert-warning {
  background-color: #ffa29d;
}
.alert-danger {
  background-color: #d86a64;
}
.mbr-gallery-filter li.active .btn {
  background-color: #51add0;
  border-color: #51add0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #51add0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f2f9fb;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #51add0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #51add0;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #51add0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #51add0;
}
.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: #51add0;
  border-bottom-color: #51add0;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #51add0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #cacbcc !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='%2351add0' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-uFV4SbTYtc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFV4SbTYtc nav.navbar {
  position: fixed;
}
.cid-uFV4SbTYtc .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uFV4SbTYtc .wrapper {
    padding: 0;
  }
}
.cid-uFV4SbTYtc .btn {
  border-radius: 30px;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFV4SbTYtc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFV4SbTYtc .dropdown-item:hover,
.cid-uFV4SbTYtc .dropdown-item:focus {
  background: #51add0 !important;
  color: white !important;
}
.cid-uFV4SbTYtc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFV4SbTYtc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFV4SbTYtc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFV4SbTYtc .nav-link {
  position: relative;
}
.cid-uFV4SbTYtc .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFV4SbTYtc .dropdown-menu,
.cid-uFV4SbTYtc .navbar.opened {
  background: #3196bc !important;
}
.cid-uFV4SbTYtc .nav-item:focus,
.cid-uFV4SbTYtc .nav-link:focus {
  outline: none;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFV4SbTYtc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFV4SbTYtc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFV4SbTYtc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #3196bc;
}
.cid-uFV4SbTYtc .navbar.opened {
  transition: all 0.3s;
}
.cid-uFV4SbTYtc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFV4SbTYtc .navbar .navbar-logo img {
  width: auto;
}
.cid-uFV4SbTYtc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFV4SbTYtc .navbar.collapsed {
  justify-content: center;
}
.cid-uFV4SbTYtc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFV4SbTYtc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFV4SbTYtc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFV4SbTYtc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFV4SbTYtc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFV4SbTYtc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFV4SbTYtc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFV4SbTYtc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFV4SbTYtc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFV4SbTYtc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFV4SbTYtc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFV4SbTYtc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFV4SbTYtc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFV4SbTYtc .dropdown-item.active,
.cid-uFV4SbTYtc .dropdown-item:active {
  background-color: transparent;
}
.cid-uFV4SbTYtc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFV4SbTYtc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3196bc;
}
.cid-uFV4SbTYtc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFV4SbTYtc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFV4SbTYtc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFV4SbTYtc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFV4SbTYtc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uFV4SbTYtc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFV4SbTYtc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFV4SbTYtc .navbar {
    height: 70px;
  }
  .cid-uFV4SbTYtc .navbar.opened {
    height: auto;
  }
  .cid-uFV4SbTYtc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFV57Tlc5v {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uFV57Tlc5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV57Tlc5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFV57Tlc5v .content-wrapper {
  display: flex;
  position: relative;
  padding: 60px;
}
@media (max-width: 992px) {
  .cid-uFV57Tlc5v .content-wrapper {
    padding: 30px 20px;
  }
}
.cid-uFV57Tlc5v .content-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFV57Tlc5v .content-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFV57Tlc5v .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-image: linear-gradient(0.251turn, #fafafa 37%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.cid-uFV57Tlc5v .content-wrapper .content-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uFV57Tlc5v .content-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uFV57Tlc5v .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.cid-uFV57Tlc5v .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFV57Tlc5v .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uFV57Tlc5v .content-wrapper .content-wrap .mbr-section-btn {
  margin-top: 64px;
}
.cid-uFV57Tlc5v .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uFV57Tlc5v .mbr-section-title {
  color: #404349;
}
.cid-uFV57Tlc5v .mbr-text {
  color: #416c7a;
  text-align: left;
}
.cid-uFV57Tlc5v .mbr-desc {
  color: #b19a7c;
}
.cid-uFV57Tlc5v .mbr-section-title,
.cid-uFV57Tlc5v .mbr-section-btn {
  text-align: left;
  color: #416c7a;
}
.cid-uFV57Tlc5v .mbr-desc,
.cid-uFV57Tlc5v .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uFVa6K45v5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uFVa6K45v5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVa6K45v5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVa6K45v5 .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uFVa6K45v5 .container-fluid {
    padding: 0 25px;
  }
}
.cid-uFVa6K45v5 .container-fluid .row {
  padding: 0;
}
.cid-uFVa6K45v5 .row {
  justify-content: center;
}
.cid-uFVa6K45v5 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFVa6K45v5 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR1rGf0AWQ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uR1rGf0AWQ .card-subtitle {
  text-align: left;
  margin-left: -15px;
  color: #000000;
}
.cid-uR1rGf0AWQ .flex-column {
  transition: all 300ms ease;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #000000;
}
.cid-uR1rGf0AWQ .flex-column:hover {
  box-shadow: 5px 5px 0 0 #000000 !important;
  background-color: #c2ebf6;
}
.cid-uR1rGf0AWQ .flex-column .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-uR1rGf0AWQ .flex-column .iconfont-wrapper .mbr-iconfont {
  color: #c2e8f4;
}
.cid-uR1rGf0AWQ .card-text {
  margin-bottom: 2rem;
  text-align: left;
  color: #000000;
}
.cid-uR1rGf0AWQ .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-uR1rGf0AWQ .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-uR1rGf0AWQ img {
  border-radius: 10%;
  height: 65px;
  width: auto;
  margin: 0;
}
.cid-uR1rGf0AWQ .flex-column .mbr-iconfont::before {
  font-size: 25px;
}
.cid-uR1rGf0AWQ .card-title {
  margin-bottom: 4px;
  padding: 0;
  margin-left: -15px;
}
.cid-uR1rGf0AWQ .col-12.col-md-6.col-lg-4 {
  margin-top: 30px;
}
.cid-uR1rGf0AWQ .col-12.col-md-6.col-lg-4:nth-child(1) {
  margin-top: 0px;
}
.cid-uR1rGf0AWQ .col-12.col-md-6.col-lg-4:nth-child(2) {
  margin-top: 0px;
}
.cid-uR1rGf0AWQ .col-12.col-md-6.col-lg-4:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-uR1rGf0AWQ .col-12.col-md-6.col-lg-4:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-uR1rGf0AWQ .col-12.col-md-6.col-lg-4:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-uR1rGf0AWQ .align {
  display: flex;
  align-items: center;
}
.cid-uR1rGf0AWQ .mbr-section-title {
  margin-bottom: 56px;
  color: #416c7a;
  text-align: center;
}
.cid-uR1rGf0AWQ .btn {
  margin-top: 20px;
  padding: 1rem 2rem;
}
.cid-uR1rGf0AWQ .card-text,
.cid-uR1rGf0AWQ .iconfont-wrapper {
  color: #000000;
}
.cid-uR1rGf0AWQ .item-title {
  color: #416c7a;
  margin-bottom: 1rem;
}
.cid-uR3hSUKynm {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR3hSUKynm .card-subtitle {
  text-align: left;
  margin-left: -15px;
  color: #000000;
}
.cid-uR3hSUKynm .flex-column {
  transition: all 300ms ease;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #000000;
}
.cid-uR3hSUKynm .flex-column:hover {
  box-shadow: 5px 5px 0 0 #000000 !important;
  background-color: #c2ebf6;
}
.cid-uR3hSUKynm .flex-column .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-uR3hSUKynm .flex-column .iconfont-wrapper .mbr-iconfont {
  color: #c2e8f4;
}
.cid-uR3hSUKynm .card-text {
  margin-bottom: 2rem;
  text-align: left;
  color: #000000;
}
.cid-uR3hSUKynm .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-uR3hSUKynm .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-uR3hSUKynm img {
  border-radius: 10%;
  height: 65px;
  width: auto;
  margin: 0;
}
.cid-uR3hSUKynm .flex-column .mbr-iconfont::before {
  font-size: 25px;
}
.cid-uR3hSUKynm .card-title {
  margin-bottom: 4px;
  padding: 0;
  margin-left: -15px;
}
.cid-uR3hSUKynm .col-12.col-md-6.col-lg-4 {
  margin-top: 30px;
}
.cid-uR3hSUKynm .col-12.col-md-6.col-lg-4:nth-child(1) {
  margin-top: 0px;
}
.cid-uR3hSUKynm .col-12.col-md-6.col-lg-4:nth-child(2) {
  margin-top: 0px;
}
.cid-uR3hSUKynm .col-12.col-md-6.col-lg-4:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-uR3hSUKynm .col-12.col-md-6.col-lg-4:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-uR3hSUKynm .col-12.col-md-6.col-lg-4:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-uR3hSUKynm .align {
  display: flex;
  align-items: center;
}
.cid-uR3hSUKynm .mbr-section-title {
  margin-bottom: 56px;
  color: #416c7a;
  text-align: center;
}
.cid-uR3hSUKynm .btn {
  margin-top: 20px;
  padding: 1rem 2rem;
}
.cid-uR3hSUKynm .card-text,
.cid-uR3hSUKynm .iconfont-wrapper {
  color: #000000;
}
.cid-uR3hSUKynm .item-title {
  color: #416c7a;
  margin-bottom: 1rem;
}
.cid-uFW9OgJJWe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uFW9OgJJWe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFW9OgJJWe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFW9OgJJWe .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uFW9OgJJWe .container-fluid {
    padding: 0 25px;
  }
}
.cid-uFW9OgJJWe .container-fluid .row {
  padding: 0;
}
.cid-uFW9OgJJWe .row {
  justify-content: center;
}
.cid-uFW9OgJJWe .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFW9OgJJWe .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uFW9POYU91 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uFW9POYU91 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFW9POYU91 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFW9POYU91 .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uFW9POYU91 .container-fluid {
    padding: 0 25px;
  }
}
.cid-uFW9POYU91 .container-fluid .row {
  padding: 0;
}
.cid-uFW9POYU91 .row {
  justify-content: center;
}
.cid-uFW9POYU91 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFW9POYU91 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uFV4SbTYtc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFV4SbTYtc nav.navbar {
  position: fixed;
}
.cid-uFV4SbTYtc .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uFV4SbTYtc .wrapper {
    padding: 0;
  }
}
.cid-uFV4SbTYtc .btn {
  border-radius: 30px;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFV4SbTYtc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFV4SbTYtc .dropdown-item:hover,
.cid-uFV4SbTYtc .dropdown-item:focus {
  background: #51add0 !important;
  color: white !important;
}
.cid-uFV4SbTYtc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFV4SbTYtc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFV4SbTYtc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFV4SbTYtc .nav-link {
  position: relative;
}
.cid-uFV4SbTYtc .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFV4SbTYtc .dropdown-menu,
.cid-uFV4SbTYtc .navbar.opened {
  background: #3196bc !important;
}
.cid-uFV4SbTYtc .nav-item:focus,
.cid-uFV4SbTYtc .nav-link:focus {
  outline: none;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFV4SbTYtc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFV4SbTYtc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFV4SbTYtc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #3196bc;
}
.cid-uFV4SbTYtc .navbar.opened {
  transition: all 0.3s;
}
.cid-uFV4SbTYtc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFV4SbTYtc .navbar .navbar-logo img {
  width: auto;
}
.cid-uFV4SbTYtc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFV4SbTYtc .navbar.collapsed {
  justify-content: center;
}
.cid-uFV4SbTYtc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFV4SbTYtc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFV4SbTYtc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFV4SbTYtc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFV4SbTYtc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFV4SbTYtc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFV4SbTYtc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFV4SbTYtc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFV4SbTYtc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFV4SbTYtc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFV4SbTYtc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFV4SbTYtc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFV4SbTYtc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFV4SbTYtc .dropdown-item.active,
.cid-uFV4SbTYtc .dropdown-item:active {
  background-color: transparent;
}
.cid-uFV4SbTYtc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFV4SbTYtc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3196bc;
}
.cid-uFV4SbTYtc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFV4SbTYtc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFV4SbTYtc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFV4SbTYtc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFV4SbTYtc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uFV4SbTYtc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFV4SbTYtc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFV4SbTYtc .navbar {
    height: 70px;
  }
  .cid-uFV4SbTYtc .navbar.opened {
    height: auto;
  }
  .cid-uFV4SbTYtc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFVsT7eI1k {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVsT7eI1k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVsT7eI1k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVsT7eI1k .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uFVsT7eI1k .container-fluid {
    padding: 0 25px;
  }
}
.cid-uFVsT7eI1k .container-fluid .row {
  padding: 0;
}
.cid-uFVsT7eI1k .row {
  justify-content: center;
}
.cid-uFVsT7eI1k .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFVsT7eI1k .mbr-text {
  color: #416c7a;
  text-align: center;
}
.cid-uFVG2OxukW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uFVG2OxukW .container {
  max-width: 1132px;
}
.cid-uFVG2OxukW .col-md-7 {
  margin: auto !important;
}
@media (max-width: 992px) {
  .cid-uFVG2OxukW .b {
    margin-bottom: 20px;
  }
}
.cid-uVoz2g1pSU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uVoz2g1pSU .container {
  max-width: 1132px;
}
.cid-uVoz2g1pSU .col-md-7 {
  margin: auto !important;
}
@media (max-width: 992px) {
  .cid-uVoz2g1pSU .b {
    margin-bottom: 20px;
  }
}
.cid-uR15ap86Lt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uR15ap86Lt nav.navbar {
  position: fixed;
}
.cid-uR15ap86Lt .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uR15ap86Lt .wrapper {
    padding: 0;
  }
}
.cid-uR15ap86Lt .btn {
  border-radius: 30px;
}
.cid-uR15ap86Lt .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-uR15ap86Lt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR15ap86Lt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR15ap86Lt .dropdown-item:hover,
.cid-uR15ap86Lt .dropdown-item:focus {
  background: #51add0 !important;
  color: white !important;
}
.cid-uR15ap86Lt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR15ap86Lt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR15ap86Lt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uR15ap86Lt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR15ap86Lt .nav-link {
  position: relative;
}
.cid-uR15ap86Lt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR15ap86Lt .dropdown-menu,
.cid-uR15ap86Lt .navbar.opened {
  background: #3196bc !important;
}
.cid-uR15ap86Lt .nav-item:focus,
.cid-uR15ap86Lt .nav-link:focus {
  outline: none;
}
.cid-uR15ap86Lt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR15ap86Lt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR15ap86Lt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR15ap86Lt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR15ap86Lt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR15ap86Lt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR15ap86Lt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #3196bc;
}
.cid-uR15ap86Lt .navbar.opened {
  transition: all 0.3s;
}
.cid-uR15ap86Lt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR15ap86Lt .navbar .navbar-logo img {
  width: auto;
}
.cid-uR15ap86Lt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR15ap86Lt .navbar.collapsed {
  justify-content: center;
}
.cid-uR15ap86Lt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR15ap86Lt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uR15ap86Lt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR15ap86Lt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR15ap86Lt .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-uR15ap86Lt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR15ap86Lt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR15ap86Lt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR15ap86Lt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR15ap86Lt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR15ap86Lt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR15ap86Lt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR15ap86Lt .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-uR15ap86Lt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR15ap86Lt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR15ap86Lt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR15ap86Lt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR15ap86Lt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR15ap86Lt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR15ap86Lt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uR15ap86Lt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uR15ap86Lt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uR15ap86Lt .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-uR15ap86Lt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR15ap86Lt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR15ap86Lt .dropdown-item.active,
.cid-uR15ap86Lt .dropdown-item:active {
  background-color: transparent;
}
.cid-uR15ap86Lt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR15ap86Lt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR15ap86Lt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR15ap86Lt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3196bc;
}
.cid-uR15ap86Lt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR15ap86Lt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR15ap86Lt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR15ap86Lt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR15ap86Lt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uR15ap86Lt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uR15ap86Lt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR15ap86Lt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR15ap86Lt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR15ap86Lt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR15ap86Lt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR15ap86Lt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR15ap86Lt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR15ap86Lt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR15ap86Lt .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uR15ap86Lt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR15ap86Lt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR15ap86Lt .navbar {
    height: 70px;
  }
  .cid-uR15ap86Lt .navbar.opened {
    height: auto;
  }
  .cid-uR15ap86Lt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR1koUkz44 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uR1koUkz44 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1koUkz44 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR1koUkz44 .container {
    padding: 0 16px;
  }
}
.cid-uR1koUkz44 .row {
  justify-content: center;
}
.cid-uR1koUkz44 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uR1koUkz44 .image-wrapper {
  margin-bottom: 40px;
}
.cid-uR1koUkz44 .image-wrapper img {
  height: 360px;
  object-fit: cover;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .cid-uR1koUkz44 .image-wrapper img {
    height: 280px;
  }
}
.cid-uR1koUkz44 .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uR1koUkz44 .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uR1koUkz44 .mbr-desc {
  color: #08323C;
  text-align: center;
}
.cid-uR1koUkz44 .mbr-section-title,
.cid-uR1koUkz44 .mbr-section-btn,
.cid-uR1koUkz44 .icon-wrapper {
  color: #295664;
}
.cid-uR15aqnMWG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15aqnMWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15aqnMWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15aqnMWG .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15aqnMWG .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15aqnMWG .container-fluid .row {
  padding: 0;
}
.cid-uR15aqnMWG .row {
  justify-content: center;
}
.cid-uR15aqnMWG .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15aqnMWG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR3MztYJAB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uR3MztYJAB .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uR3MztYJAB .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uR3MztYJAB .mbr-section-title {
  color: #FFFFFF;
}
.cid-uR3MztYJAB .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uR3MztYJAB .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uR3MztYJAB .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uR3MztYJAB .item {
    width: 47%;
  }
  .cid-uR3MztYJAB .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uR3MztYJAB .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uR3MztYJAB .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uR3MztYJAB .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uR3MztYJAB .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uR3MztYJAB .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uR3MztYJAB .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uR3MztYJAB .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uR3MztYJAB .item {
    width: 27%;
  }
}
.cid-uR3MztYJAB .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uR3MztYJAB .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uR3MztYJAB .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uR3MztYJAB .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uR3MztYJAB .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uR3MztYJAB .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uR3MztYJAB .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uR3MztYJAB .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uR3MztYJAB .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uR3MztYJAB .mbr-section-btn {
  margin-top: 12px;
}
.cid-uR15as0zlg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15as0zlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15as0zlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15as0zlg .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15as0zlg .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15as0zlg .container-fluid .row {
  padding: 0;
}
.cid-uR15as0zlg .row {
  justify-content: center;
}
.cid-uR15as0zlg .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15as0zlg .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVnWCxXgMY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVnWCxXgMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVnWCxXgMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVnWCxXgMY .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVnWCxXgMY .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVnWCxXgMY .container-fluid .row {
  padding: 0;
}
.cid-uVnWCxXgMY .row {
  justify-content: center;
}
.cid-uVnWCxXgMY .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVnWCxXgMY .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVmAgQfshT {
  background-color: #3196bc;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uVmAgQfshT .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uVmAgQfshT .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uVmAgQfshT .card .card-header {
  background-color: transparent;
}
.cid-uVmAgQfshT .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #295664;
}
.cid-uVmAgQfshT .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #295664;
}
.cid-uVmAgQfshT .panel-body,
.cid-uVmAgQfshT .card-header {
  padding: 1rem 0;
}
.cid-uVmAgQfshT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVmAgQfshT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVmAgQfshT .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVmAgQfshT .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVmAgQfshT .container-fluid .row {
  padding: 0;
}
.cid-uVmAgQfshT .row {
  justify-content: center;
}
.cid-uVmAgQfshT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVmAgQfshT .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR3QtxPf4C {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uR3QtxPf4C .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uR3QtxPf4C .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uR3QtxPf4C .mbr-section-title {
  color: #FFFFFF;
}
.cid-uR3QtxPf4C .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uR3QtxPf4C .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uR3QtxPf4C .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uR3QtxPf4C .item {
    width: 47%;
  }
  .cid-uR3QtxPf4C .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uR3QtxPf4C .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uR3QtxPf4C .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uR3QtxPf4C .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uR3QtxPf4C .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uR3QtxPf4C .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uR3QtxPf4C .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uR3QtxPf4C .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uR3QtxPf4C .item {
    width: 27%;
  }
}
.cid-uR3QtxPf4C .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uR3QtxPf4C .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uR3QtxPf4C .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uR3QtxPf4C .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uR3QtxPf4C .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uR3QtxPf4C .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uR3QtxPf4C .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uR3QtxPf4C .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uR3QtxPf4C .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uR3QtxPf4C .mbr-section-btn {
  margin-top: 12px;
}
.cid-uVnYWrhLpN {
  background-color: #3196bc;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uVnYWrhLpN .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uVnYWrhLpN .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uVnYWrhLpN .card .card-header {
  background-color: transparent;
}
.cid-uVnYWrhLpN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #295664;
}
.cid-uVnYWrhLpN .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #295664;
}
.cid-uVnYWrhLpN .panel-body,
.cid-uVnYWrhLpN .card-header {
  padding: 1rem 0;
}
.cid-uVnYWrhLpN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVnYWrhLpN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVnYWrhLpN .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVnYWrhLpN .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVnYWrhLpN .container-fluid .row {
  padding: 0;
}
.cid-uVnYWrhLpN .row {
  justify-content: center;
}
.cid-uVnYWrhLpN .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVnYWrhLpN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVnQcreLTR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uVnQcreLTR .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uVnQcreLTR .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uVnQcreLTR .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVnQcreLTR .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uVnQcreLTR .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uVnQcreLTR .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uVnQcreLTR .item {
    width: 47%;
  }
  .cid-uVnQcreLTR .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uVnQcreLTR .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uVnQcreLTR .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uVnQcreLTR .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uVnQcreLTR .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uVnQcreLTR .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uVnQcreLTR .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uVnQcreLTR .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uVnQcreLTR .item {
    width: 27%;
  }
}
.cid-uVnQcreLTR .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVnQcreLTR .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVnQcreLTR .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uVnQcreLTR .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uVnQcreLTR .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uVnQcreLTR .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uVnQcreLTR .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uVnQcreLTR .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uVnQcreLTR .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uVnQcreLTR .mbr-section-btn {
  margin-top: 12px;
}
.cid-uVnUcuBSCw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVnUcuBSCw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVnUcuBSCw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVnUcuBSCw .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVnUcuBSCw .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVnUcuBSCw .container-fluid .row {
  padding: 0;
}
.cid-uVnUcuBSCw .row {
  justify-content: center;
}
.cid-uVnUcuBSCw .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVnUcuBSCw .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR15awSWYq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15awSWYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15awSWYq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15awSWYq .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15awSWYq .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15awSWYq .container-fluid .row {
  padding: 0;
}
.cid-uR15awSWYq .row {
  justify-content: center;
}
.cid-uR15awSWYq .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15awSWYq .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVnRS9Xtut {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uVnRS9Xtut .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uVnRS9Xtut .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uVnRS9Xtut .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVnRS9Xtut .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uVnRS9Xtut .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uVnRS9Xtut .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uVnRS9Xtut .item {
    width: 47%;
  }
  .cid-uVnRS9Xtut .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uVnRS9Xtut .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uVnRS9Xtut .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uVnRS9Xtut .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uVnRS9Xtut .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uVnRS9Xtut .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uVnRS9Xtut .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uVnRS9Xtut .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uVnRS9Xtut .item {
    width: 27%;
  }
}
.cid-uVnRS9Xtut .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVnRS9Xtut .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVnRS9Xtut .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uVnRS9Xtut .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uVnRS9Xtut .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uVnRS9Xtut .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uVnRS9Xtut .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uVnRS9Xtut .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uVnRS9Xtut .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uVnRS9Xtut .mbr-section-btn {
  margin-top: 12px;
}
.cid-uVnU4NzK86 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVnU4NzK86 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVnU4NzK86 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVnU4NzK86 .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVnU4NzK86 .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVnU4NzK86 .container-fluid .row {
  padding: 0;
}
.cid-uVnU4NzK86 .row {
  justify-content: center;
}
.cid-uVnU4NzK86 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVnU4NzK86 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVmyiKs8tu {
  background-color: #3196bc;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uVmyiKs8tu .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uVmyiKs8tu .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uVmyiKs8tu .card .card-header {
  background-color: transparent;
}
.cid-uVmyiKs8tu .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #295664;
}
.cid-uVmyiKs8tu .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #295664;
}
.cid-uVmyiKs8tu .panel-body,
.cid-uVmyiKs8tu .card-header {
  padding: 1rem 0;
}
.cid-uVmyiKs8tu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVmyiKs8tu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVmyiKs8tu .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVmyiKs8tu .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVmyiKs8tu .container-fluid .row {
  padding: 0;
}
.cid-uVmyiKs8tu .row {
  justify-content: center;
}
.cid-uVmyiKs8tu .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVmyiKs8tu .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR15au8toJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fcf3ec;
}
@media (max-width: 991px) {
  .cid-uR15au8toJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uR15au8toJ .row {
  flex-direction: row-reverse;
}
.cid-uR15au8toJ img {
  width: 100%;
  height: 600px;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-uR15au8toJ .image-wrapper {
  overflow: hidden;
  height: 600px;
}
.cid-uR15au8toJ .image-wrapper:hover img {
  transform: scale(1.03);
}
@media (max-width: 992px) {
  .cid-uR15au8toJ .image-wrapper {
    height: 400px;
  }
}
.cid-uVnZWbOkF6 {
  background-color: #3196bc;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-uVnZWbOkF6 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uVnZWbOkF6 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-uVnZWbOkF6 .card .card-header {
  background-color: transparent;
}
.cid-uVnZWbOkF6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #295664;
}
.cid-uVnZWbOkF6 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #295664;
}
.cid-uVnZWbOkF6 .panel-body,
.cid-uVnZWbOkF6 .card-header {
  padding: 1rem 0;
}
.cid-uVnZWbOkF6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVnZWbOkF6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVnZWbOkF6 .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVnZWbOkF6 .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVnZWbOkF6 .container-fluid .row {
  padding: 0;
}
.cid-uVnZWbOkF6 .row {
  justify-content: center;
}
.cid-uVnZWbOkF6 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVnZWbOkF6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR15bMLPMK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uR15bMLPMK nav.navbar {
  position: fixed;
}
.cid-uR15bMLPMK .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uR15bMLPMK .wrapper {
    padding: 0;
  }
}
.cid-uR15bMLPMK .btn {
  border-radius: 30px;
}
.cid-uR15bMLPMK .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-uR15bMLPMK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR15bMLPMK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR15bMLPMK .dropdown-item:hover,
.cid-uR15bMLPMK .dropdown-item:focus {
  background: #51add0 !important;
  color: white !important;
}
.cid-uR15bMLPMK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR15bMLPMK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR15bMLPMK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uR15bMLPMK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR15bMLPMK .nav-link {
  position: relative;
}
.cid-uR15bMLPMK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR15bMLPMK .dropdown-menu,
.cid-uR15bMLPMK .navbar.opened {
  background: #3196bc !important;
}
.cid-uR15bMLPMK .nav-item:focus,
.cid-uR15bMLPMK .nav-link:focus {
  outline: none;
}
.cid-uR15bMLPMK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR15bMLPMK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR15bMLPMK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR15bMLPMK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR15bMLPMK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR15bMLPMK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR15bMLPMK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #3196bc;
}
.cid-uR15bMLPMK .navbar.opened {
  transition: all 0.3s;
}
.cid-uR15bMLPMK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR15bMLPMK .navbar .navbar-logo img {
  width: auto;
}
.cid-uR15bMLPMK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR15bMLPMK .navbar.collapsed {
  justify-content: center;
}
.cid-uR15bMLPMK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR15bMLPMK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uR15bMLPMK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR15bMLPMK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR15bMLPMK .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-uR15bMLPMK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR15bMLPMK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR15bMLPMK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR15bMLPMK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR15bMLPMK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR15bMLPMK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR15bMLPMK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR15bMLPMK .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-uR15bMLPMK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR15bMLPMK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR15bMLPMK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR15bMLPMK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR15bMLPMK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR15bMLPMK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR15bMLPMK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uR15bMLPMK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uR15bMLPMK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uR15bMLPMK .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-uR15bMLPMK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR15bMLPMK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR15bMLPMK .dropdown-item.active,
.cid-uR15bMLPMK .dropdown-item:active {
  background-color: transparent;
}
.cid-uR15bMLPMK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR15bMLPMK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR15bMLPMK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR15bMLPMK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3196bc;
}
.cid-uR15bMLPMK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR15bMLPMK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR15bMLPMK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR15bMLPMK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR15bMLPMK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uR15bMLPMK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uR15bMLPMK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR15bMLPMK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR15bMLPMK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR15bMLPMK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR15bMLPMK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR15bMLPMK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR15bMLPMK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR15bMLPMK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR15bMLPMK .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uR15bMLPMK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR15bMLPMK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR15bMLPMK .navbar {
    height: 70px;
  }
  .cid-uR15bMLPMK .navbar.opened {
    height: auto;
  }
  .cid-uR15bMLPMK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR1cfvZ5Lf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
}
.cid-uR1cfvZ5Lf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1cfvZ5Lf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR1cfvZ5Lf .container {
    padding: 0 16px;
  }
}
.cid-uR1cfvZ5Lf .row {
  justify-content: center;
}
.cid-uR1cfvZ5Lf .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uR1cfvZ5Lf .image-wrapper {
  margin-bottom: 40px;
}
.cid-uR1cfvZ5Lf .image-wrapper img {
  height: 360px;
  object-fit: cover;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .cid-uR1cfvZ5Lf .image-wrapper img {
    height: 280px;
  }
}
.cid-uR1cfvZ5Lf .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uR1cfvZ5Lf .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-uR1cfvZ5Lf .mbr-desc {
  color: #08323C;
  text-align: center;
}
.cid-uR1cfvZ5Lf .mbr-section-title,
.cid-uR1cfvZ5Lf .mbr-section-btn,
.cid-uR1cfvZ5Lf .icon-wrapper {
  color: #3196bc;
}
.cid-uR15bPDk6b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15bPDk6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15bPDk6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15bPDk6b .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15bPDk6b .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15bPDk6b .container-fluid .row {
  padding: 0;
}
.cid-uR15bPDk6b .row {
  justify-content: center;
}
.cid-uR15bPDk6b .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15bPDk6b .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVobR0RUq4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uVobR0RUq4 .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uVobR0RUq4 .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uVobR0RUq4 .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVobR0RUq4 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uVobR0RUq4 .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uVobR0RUq4 .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uVobR0RUq4 .item {
    width: 47%;
  }
  .cid-uVobR0RUq4 .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uVobR0RUq4 .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uVobR0RUq4 .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uVobR0RUq4 .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uVobR0RUq4 .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uVobR0RUq4 .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uVobR0RUq4 .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uVobR0RUq4 .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uVobR0RUq4 .item {
    width: 27%;
  }
}
.cid-uVobR0RUq4 .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVobR0RUq4 .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVobR0RUq4 .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uVobR0RUq4 .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uVobR0RUq4 .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uVobR0RUq4 .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uVobR0RUq4 .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uVobR0RUq4 .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uVobR0RUq4 .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uVobR0RUq4 .mbr-section-btn {
  margin-top: 12px;
}
.cid-uVoeA6DXjF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVoeA6DXjF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVoeA6DXjF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVoeA6DXjF .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVoeA6DXjF .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVoeA6DXjF .container-fluid .row {
  padding: 0;
}
.cid-uVoeA6DXjF .row {
  justify-content: center;
}
.cid-uVoeA6DXjF .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVoeA6DXjF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVoeLnT8HL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVoeLnT8HL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVoeLnT8HL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVoeLnT8HL .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVoeLnT8HL .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVoeLnT8HL .container-fluid .row {
  padding: 0;
}
.cid-uVoeLnT8HL .row {
  justify-content: center;
}
.cid-uVoeLnT8HL .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVoeLnT8HL .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVoeqaBwvd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uVoeqaBwvd .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uVoeqaBwvd .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uVoeqaBwvd .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVoeqaBwvd .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uVoeqaBwvd .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uVoeqaBwvd .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uVoeqaBwvd .item {
    width: 47%;
  }
  .cid-uVoeqaBwvd .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uVoeqaBwvd .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uVoeqaBwvd .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uVoeqaBwvd .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uVoeqaBwvd .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uVoeqaBwvd .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uVoeqaBwvd .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uVoeqaBwvd .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uVoeqaBwvd .item {
    width: 27%;
  }
}
.cid-uVoeqaBwvd .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVoeqaBwvd .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVoeqaBwvd .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uVoeqaBwvd .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uVoeqaBwvd .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uVoeqaBwvd .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uVoeqaBwvd .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uVoeqaBwvd .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uVoeqaBwvd .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uVoeqaBwvd .mbr-section-btn {
  margin-top: 12px;
}
.cid-uR15bOLObn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15bOLObn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15bOLObn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15bOLObn .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15bOLObn .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15bOLObn .container-fluid .row {
  padding: 0;
}
.cid-uR15bOLObn .row {
  justify-content: center;
}
.cid-uR15bOLObn .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15bOLObn .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVotuVa0Pb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVotuVa0Pb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVotuVa0Pb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVotuVa0Pb .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVotuVa0Pb .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVotuVa0Pb .container-fluid .row {
  padding: 0;
}
.cid-uVotuVa0Pb .row {
  justify-content: center;
}
.cid-uVotuVa0Pb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVotuVa0Pb .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVor9FZa1S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uVor9FZa1S .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uVor9FZa1S .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uVor9FZa1S .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVor9FZa1S .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uVor9FZa1S .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uVor9FZa1S .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uVor9FZa1S .item {
    width: 47%;
  }
  .cid-uVor9FZa1S .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uVor9FZa1S .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uVor9FZa1S .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uVor9FZa1S .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uVor9FZa1S .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uVor9FZa1S .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uVor9FZa1S .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uVor9FZa1S .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uVor9FZa1S .item {
    width: 27%;
  }
}
.cid-uVor9FZa1S .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVor9FZa1S .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVor9FZa1S .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uVor9FZa1S .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uVor9FZa1S .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uVor9FZa1S .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uVor9FZa1S .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uVor9FZa1S .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uVor9FZa1S .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uVor9FZa1S .mbr-section-btn {
  margin-top: 12px;
}
.cid-uVotyHIwaj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVotyHIwaj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVotyHIwaj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVotyHIwaj .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVotyHIwaj .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVotyHIwaj .container-fluid .row {
  padding: 0;
}
.cid-uVotyHIwaj .row {
  justify-content: center;
}
.cid-uVotyHIwaj .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVotyHIwaj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR15bU3kxr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15bU3kxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15bU3kxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15bU3kxr .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15bU3kxr .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15bU3kxr .container-fluid .row {
  padding: 0;
}
.cid-uR15bU3kxr .row {
  justify-content: center;
}
.cid-uR15bU3kxr .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15bU3kxr .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVojOHynak {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uVojOHynak .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uVojOHynak .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uVojOHynak .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVojOHynak .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uVojOHynak .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uVojOHynak .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uVojOHynak .item {
    width: 47%;
  }
  .cid-uVojOHynak .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uVojOHynak .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uVojOHynak .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uVojOHynak .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uVojOHynak .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uVojOHynak .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uVojOHynak .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uVojOHynak .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uVojOHynak .item {
    width: 27%;
  }
}
.cid-uVojOHynak .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVojOHynak .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVojOHynak .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uVojOHynak .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uVojOHynak .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uVojOHynak .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uVojOHynak .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uVojOHynak .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uVojOHynak .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uVojOHynak .mbr-section-btn {
  margin-top: 12px;
}
.cid-uR15bQvsnA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15bQvsnA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15bQvsnA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15bQvsnA .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15bQvsnA .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15bQvsnA .container-fluid .row {
  padding: 0;
}
.cid-uR15bQvsnA .row {
  justify-content: center;
}
.cid-uR15bQvsnA .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15bQvsnA .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVoydrNSsG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVoydrNSsG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVoydrNSsG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVoydrNSsG .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVoydrNSsG .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVoydrNSsG .container-fluid .row {
  padding: 0;
}
.cid-uVoydrNSsG .row {
  justify-content: center;
}
.cid-uVoydrNSsG .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVoydrNSsG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVueqqxJOR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fcf3ec;
}
.cid-uVueqqxJOR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVueqqxJOR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVueqqxJOR .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uVueqqxJOR .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uVueqqxJOR .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 450px;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uVueqqxJOR .row .img-item img {
    min-height: 300px;
  }
}
.cid-uVoyAhNobO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uVoyAhNobO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVoyAhNobO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVoyAhNobO .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uVoyAhNobO .container-fluid {
    padding: 0 25px;
  }
}
.cid-uVoyAhNobO .container-fluid .row {
  padding: 0;
}
.cid-uVoyAhNobO .row {
  justify-content: center;
}
.cid-uVoyAhNobO .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVoyAhNobO .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVoyvwCbHL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf3ec;
  overflow: hidden;
}
.cid-uVoyvwCbHL .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uVoyvwCbHL .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uVoyvwCbHL .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVoyvwCbHL .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uVoyvwCbHL .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uVoyvwCbHL .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uVoyvwCbHL .item {
    width: 47%;
  }
  .cid-uVoyvwCbHL .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uVoyvwCbHL .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uVoyvwCbHL .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uVoyvwCbHL .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uVoyvwCbHL .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uVoyvwCbHL .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uVoyvwCbHL .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uVoyvwCbHL .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uVoyvwCbHL .item {
    width: 27%;
  }
}
.cid-uVoyvwCbHL .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVoyvwCbHL .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uVoyvwCbHL .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uVoyvwCbHL .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uVoyvwCbHL .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uVoyvwCbHL .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uVoyvwCbHL .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uVoyvwCbHL .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uVoyvwCbHL .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uVoyvwCbHL .mbr-section-btn {
  margin-top: 12px;
}
.cid-uR15bT8nZ9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15bT8nZ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15bT8nZ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15bT8nZ9 .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15bT8nZ9 .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15bT8nZ9 .container-fluid .row {
  padding: 0;
}
.cid-uR15bT8nZ9 .row {
  justify-content: center;
}
.cid-uR15bT8nZ9 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15bT8nZ9 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR3SdXj75r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uR3SdXj75r nav.navbar {
  position: fixed;
}
.cid-uR3SdXj75r .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uR3SdXj75r .wrapper {
    padding: 0;
  }
}
.cid-uR3SdXj75r .btn {
  border-radius: 30px;
}
.cid-uR3SdXj75r .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-uR3SdXj75r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR3SdXj75r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR3SdXj75r .dropdown-item:hover,
.cid-uR3SdXj75r .dropdown-item:focus {
  background: #51add0 !important;
  color: white !important;
}
.cid-uR3SdXj75r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR3SdXj75r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR3SdXj75r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uR3SdXj75r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR3SdXj75r .nav-link {
  position: relative;
}
.cid-uR3SdXj75r .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR3SdXj75r .dropdown-menu,
.cid-uR3SdXj75r .navbar.opened {
  background: #3196bc !important;
}
.cid-uR3SdXj75r .nav-item:focus,
.cid-uR3SdXj75r .nav-link:focus {
  outline: none;
}
.cid-uR3SdXj75r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR3SdXj75r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR3SdXj75r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR3SdXj75r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR3SdXj75r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR3SdXj75r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR3SdXj75r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #3196bc;
}
.cid-uR3SdXj75r .navbar.opened {
  transition: all 0.3s;
}
.cid-uR3SdXj75r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR3SdXj75r .navbar .navbar-logo img {
  width: auto;
}
.cid-uR3SdXj75r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR3SdXj75r .navbar.collapsed {
  justify-content: center;
}
.cid-uR3SdXj75r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR3SdXj75r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uR3SdXj75r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR3SdXj75r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR3SdXj75r .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-uR3SdXj75r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR3SdXj75r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR3SdXj75r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR3SdXj75r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR3SdXj75r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR3SdXj75r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR3SdXj75r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR3SdXj75r .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-uR3SdXj75r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR3SdXj75r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR3SdXj75r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR3SdXj75r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR3SdXj75r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR3SdXj75r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR3SdXj75r .navbar.navbar-short {
  min-height: 60px;
}
.cid-uR3SdXj75r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uR3SdXj75r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uR3SdXj75r .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-uR3SdXj75r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR3SdXj75r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR3SdXj75r .dropdown-item.active,
.cid-uR3SdXj75r .dropdown-item:active {
  background-color: transparent;
}
.cid-uR3SdXj75r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR3SdXj75r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR3SdXj75r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR3SdXj75r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3196bc;
}
.cid-uR3SdXj75r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR3SdXj75r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR3SdXj75r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR3SdXj75r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR3SdXj75r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uR3SdXj75r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uR3SdXj75r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR3SdXj75r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR3SdXj75r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR3SdXj75r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR3SdXj75r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR3SdXj75r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR3SdXj75r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR3SdXj75r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR3SdXj75r .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uR3SdXj75r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR3SdXj75r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR3SdXj75r .navbar {
    height: 70px;
  }
  .cid-uR3SdXj75r .navbar.opened {
    height: auto;
  }
  .cid-uR3SdXj75r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR3SdYUkvF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR3SdYUkvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR3SdYUkvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR3SdYUkvF .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR3SdYUkvF .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR3SdYUkvF .container-fluid .row {
  padding: 0;
}
.cid-uR3SdYUkvF .row {
  justify-content: center;
}
.cid-uR3SdYUkvF .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR3SdYUkvF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVubHN0rEk {
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uVubHN0rEk .row {
  position: relative;
}
.cid-uVubHN0rEk .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #678a95 50%, #cacbcc);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uVubHN0rEk .row .blur-circle {
    display: none;
  }
}
.cid-uVubHN0rEk .row {
  justify-content: center;
}
.cid-uVubHN0rEk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVubHN0rEk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVubHN0rEk .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uVubHN0rEk .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uVubHN0rEk .row {
    padding: 0 24px;
  }
}
.cid-uVubHN0rEk .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 128px;
}
@media (max-width: 992px) {
  .cid-uVubHN0rEk .title-wrapper {
    margin-bottom: 112px;
  }
}
@media (max-width: 768px) {
  .cid-uVubHN0rEk .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uVubHN0rEk .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVubHN0rEk .item:hover .item-wrapper .item-text span {
  height: 100%;
  opacity: 1;
  transition: all .2s ease;
}
.cid-uVubHN0rEk .item {
  margin-bottom: 48px;
  z-index: 1;
}
.cid-uVubHN0rEk .item .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 385px;
  overflow: visible;
  margin: 0 8px;
}
@media (max-width: 1200px) {
  .cid-uVubHN0rEk .item .item-wrapper {
    margin: 0;
  }
}
.cid-uVubHN0rEk .item .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.cid-uVubHN0rEk .item .item-wrapper .item-sticker {
  position: absolute;
  top: -5rem;
  right: -3rem;
  width: 105px;
  height: 105px;
  border-radius: 100%;
  background-color: #ffb639;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotate(-20deg);
  z-index: 11;
}
@media (max-width: 768px) {
  .cid-uVubHN0rEk .item .item-wrapper .item-sticker {
    display: none;
  }
}
.cid-uVubHN0rEk .item .item-wrapper .item-sticker .mbr-text {
  margin-bottom: 0;
}
.cid-uVubHN0rEk .item .item-wrapper .item-sticker:before {
  content: '';
  position: absolute;
  top: 0;
  right: 10px;
  width: 105px;
  height: 105px;
  border-radius: 100%;
  background-color: transparent;
  border: 3px solid #111111;
  pointer-events: none;
}
.cid-uVubHN0rEk .item .item-wrapper .item-text {
  background-image: linear-gradient(0deg, #111111, transparent);
  z-index: 1;
  padding: 32px;
  border-radius: 16px;
}
.cid-uVubHN0rEk .item .item-wrapper .item-text span {
  font-size: 32px;
  margin-bottom: 0;
  height: 0;
  opacity: 0;
  transition: all .2s ease;
}
.cid-uVubHN0rEk .item .item-wrapper .item-text .mbr-card-title {
  margin: 16px 0 0 0;
}
@media (max-width: 768px) {
  .cid-uVubHN0rEk .item .item-wrapper .item-text .mbr-card-title {
    margin: 12px 0 0 0;
  }
}
.cid-uVubHN0rEk .item .item-wrapper .item-text .mbr-card-text {
  margin: 12px 0 0 0;
}
@media (max-width: 768px) {
  .cid-uVubHN0rEk .item .item-wrapper .item-text .mbr-card-text {
    margin: 10px 0 0 0;
  }
}
.cid-uVubHN0rEk .mbr-section-title {
  color: #fafafa;
}
.cid-uVubHN0rEk .mbr-text {
  color: #FFFFFF;
  text-align: center;
}
.cid-uVubHN0rEk .mbr-card-title,
.cid-uVubHN0rEk .mbr-iconfont {
  color: #FFFFFF;
  text-align: left;
}
.cid-uVubHN0rEk .mbr-card-text {
  color: #FFFFFF;
}
.cid-uR3Se6JPNp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR3Se6JPNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR3Se6JPNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR3Se6JPNp .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR3Se6JPNp .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR3Se6JPNp .container-fluid .row {
  padding: 0;
}
.cid-uR3Se6JPNp .row {
  justify-content: center;
}
.cid-uR3Se6JPNp .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR3Se6JPNp .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVucvMGMu7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uVucvMGMu7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVucvMGMu7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVucvMGMu7 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uVucvMGMu7 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uVucvMGMu7 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 450px;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uVucvMGMu7 .row .img-item img {
    min-height: 300px;
  }
}
.cid-uFV4SbTYtc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFV4SbTYtc nav.navbar {
  position: fixed;
}
.cid-uFV4SbTYtc .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uFV4SbTYtc .wrapper {
    padding: 0;
  }
}
.cid-uFV4SbTYtc .btn {
  border-radius: 30px;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFV4SbTYtc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFV4SbTYtc .dropdown-item:hover,
.cid-uFV4SbTYtc .dropdown-item:focus {
  background: #51add0 !important;
  color: white !important;
}
.cid-uFV4SbTYtc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFV4SbTYtc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFV4SbTYtc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFV4SbTYtc .nav-link {
  position: relative;
}
.cid-uFV4SbTYtc .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFV4SbTYtc .dropdown-menu,
.cid-uFV4SbTYtc .navbar.opened {
  background: #3196bc !important;
}
.cid-uFV4SbTYtc .nav-item:focus,
.cid-uFV4SbTYtc .nav-link:focus {
  outline: none;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFV4SbTYtc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFV4SbTYtc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFV4SbTYtc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFV4SbTYtc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #3196bc;
}
.cid-uFV4SbTYtc .navbar.opened {
  transition: all 0.3s;
}
.cid-uFV4SbTYtc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFV4SbTYtc .navbar .navbar-logo img {
  width: auto;
}
.cid-uFV4SbTYtc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFV4SbTYtc .navbar.collapsed {
  justify-content: center;
}
.cid-uFV4SbTYtc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFV4SbTYtc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFV4SbTYtc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFV4SbTYtc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFV4SbTYtc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFV4SbTYtc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFV4SbTYtc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFV4SbTYtc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFV4SbTYtc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFV4SbTYtc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFV4SbTYtc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFV4SbTYtc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFV4SbTYtc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFV4SbTYtc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFV4SbTYtc .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-uFV4SbTYtc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFV4SbTYtc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFV4SbTYtc .dropdown-item.active,
.cid-uFV4SbTYtc .dropdown-item:active {
  background-color: transparent;
}
.cid-uFV4SbTYtc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFV4SbTYtc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFV4SbTYtc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3196bc;
}
.cid-uFV4SbTYtc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFV4SbTYtc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFV4SbTYtc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFV4SbTYtc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFV4SbTYtc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFV4SbTYtc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFV4SbTYtc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFV4SbTYtc .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uFV4SbTYtc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFV4SbTYtc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFV4SbTYtc .navbar {
    height: 70px;
  }
  .cid-uFV4SbTYtc .navbar.opened {
    height: auto;
  }
  .cid-uFV4SbTYtc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFV8wxa3O6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uFV8wxa3O6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV8wxa3O6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFV8wxa3O6 .card-wrapper {
  border: 2px solid #000000;
  padding: 3rem 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uFV8wxa3O6 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uFV8wxa3O6 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-uFV8wxa3O6 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uFV8wxa3O6 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uFV8wxa3O6 .google-map {
  height: 100%;
  position: relative;
}
.cid-uFV8wxa3O6 .google-map iframe {
  padding: 2px;
  background-color: #000000;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uFV8wxa3O6 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uFV8wxa3O6 .google-map [data-state-details] {
  color: #4b4b4b;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFV8wxa3O6 .google-map[data-state] {
  background: #ffffff;
}
.cid-uFV8wxa3O6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFV8wxa3O6 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uFV8wxa3O6 .content-head {
  max-width: 800px;
}
.cid-uFV8wxa3O6 .mbr-section-title {
  color: #000000;
}
.cid-uFV8wxa3O6 .cardTitle {
  color: #000000;
}
.cid-uFV8wxa3O6 .list,
.cid-uFV8wxa3O6 .item-wrap {
  color: #000000;
}
.cid-uFV9JqCVrB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uFV9JqCVrB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFV9JqCVrB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFV9JqCVrB .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uFV9JqCVrB .container-fluid {
    padding: 0 25px;
  }
}
.cid-uFV9JqCVrB .container-fluid .row {
  padding: 0;
}
.cid-uFV9JqCVrB .row {
  justify-content: center;
}
.cid-uFV9JqCVrB .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFV9JqCVrB .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uR15MKk4iF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uR15MKk4iF nav.navbar {
  position: fixed;
}
.cid-uR15MKk4iF .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uR15MKk4iF .wrapper {
    padding: 0;
  }
}
.cid-uR15MKk4iF .btn {
  border-radius: 30px;
}
.cid-uR15MKk4iF .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-uR15MKk4iF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR15MKk4iF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR15MKk4iF .dropdown-item:hover,
.cid-uR15MKk4iF .dropdown-item:focus {
  background: #51add0 !important;
  color: white !important;
}
.cid-uR15MKk4iF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR15MKk4iF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR15MKk4iF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uR15MKk4iF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR15MKk4iF .nav-link {
  position: relative;
}
.cid-uR15MKk4iF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR15MKk4iF .dropdown-menu,
.cid-uR15MKk4iF .navbar.opened {
  background: #3196bc !important;
}
.cid-uR15MKk4iF .nav-item:focus,
.cid-uR15MKk4iF .nav-link:focus {
  outline: none;
}
.cid-uR15MKk4iF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR15MKk4iF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR15MKk4iF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR15MKk4iF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR15MKk4iF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR15MKk4iF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR15MKk4iF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #3196bc;
}
.cid-uR15MKk4iF .navbar.opened {
  transition: all 0.3s;
}
.cid-uR15MKk4iF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR15MKk4iF .navbar .navbar-logo img {
  width: auto;
}
.cid-uR15MKk4iF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR15MKk4iF .navbar.collapsed {
  justify-content: center;
}
.cid-uR15MKk4iF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR15MKk4iF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uR15MKk4iF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR15MKk4iF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR15MKk4iF .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-uR15MKk4iF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR15MKk4iF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR15MKk4iF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR15MKk4iF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR15MKk4iF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR15MKk4iF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR15MKk4iF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR15MKk4iF .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-uR15MKk4iF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR15MKk4iF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR15MKk4iF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR15MKk4iF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR15MKk4iF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR15MKk4iF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR15MKk4iF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uR15MKk4iF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uR15MKk4iF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uR15MKk4iF .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-uR15MKk4iF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR15MKk4iF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR15MKk4iF .dropdown-item.active,
.cid-uR15MKk4iF .dropdown-item:active {
  background-color: transparent;
}
.cid-uR15MKk4iF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR15MKk4iF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR15MKk4iF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR15MKk4iF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #3196bc;
}
.cid-uR15MKk4iF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR15MKk4iF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR15MKk4iF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR15MKk4iF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR15MKk4iF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uR15MKk4iF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uR15MKk4iF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR15MKk4iF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR15MKk4iF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR15MKk4iF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR15MKk4iF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR15MKk4iF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR15MKk4iF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR15MKk4iF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR15MKk4iF .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uR15MKk4iF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR15MKk4iF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR15MKk4iF .navbar {
    height: 70px;
  }
  .cid-uR15MKk4iF .navbar.opened {
    height: auto;
  }
  .cid-uR15MKk4iF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR15MLt4aA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #3196bc;
}
.cid-uR15MLt4aA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR15MLt4aA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR15MLt4aA .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uR15MLt4aA .container-fluid {
    padding: 0 25px;
  }
}
.cid-uR15MLt4aA .container-fluid .row {
  padding: 0;
}
.cid-uR15MLt4aA .row {
  justify-content: center;
}
.cid-uR15MLt4aA .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR15MLt4aA .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uXeuIsdd6B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-uXeuIsdd6B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXeuIsdd6B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXeuIsdd6B .row {
  justify-content: space-between;
}
.cid-uXeuIsdd6B .content-wrapper .mbr-label {
  margin-bottom: 20px;
}
.cid-uXeuIsdd6B .content-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uXeuIsdd6B .text-wrapper .mbr-text {
  margin-bottom: 14px;
}
.cid-uXeuIsdd6B .mbr-label {
  color: #666666;
}
.cid-uXeuIsdd6B .mbr-section-title {
  color: #0f0f0f;
}
.cid-uXeuIsdd6B .mbr-text {
  color: #666666;
}
